* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "segoe-ui", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
}



/* navigation */
.navbar {
    background-color: #fff;
    /* border-bottom: 1px solid #e0e0e0; */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #7F7FD5;
    background: -webkit-linear-gradient(to right, #91EAE4, #93b4f1, #bec4e9);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #91EAE4, #93b4f1, #bec4e9); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar li a {
    color: #0366cb;
    font-weight: 600;
}

.navbar li a:hover {
    color: #000;
    font-weight: 600;
}

/* generated by Claude AI - I don't know how to do logos */
    .logo-link {
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .logo {
        position: relative;
        display: flex;
        align-items: center;
    }

    .logo-name {
        font-family: 'Caveat', cursive, sans-serif;
        font-size: 48px;
        font-weight: 700;
        color: #0366cb;
        letter-spacing: -1px;
        line-height: 1;
        white-space: nowrap;
        transform: rotate(-2deg);
        text-shadow:
            1px 1px 0px rgba(3, 102, 203, 0.12),
            -1px 0px 0px rgba(3, 102, 203, 0.06);
    }

    .logo-star {
        position: absolute;
        line-height: 0;
    }

    .logo-star-1 {
        top: -2px;
        right: -20px;
        transform: rotate(15deg);
    }

    .logo-star-1 svg {
        width: 20px;
        height: 20px;
    }

    .logo-star-2 {
        top: 10px;
        right: -32px;
        transform: rotate(-20deg);
    }

    .logo-star-2 svg {
        width: 12px;
        height: 12px;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
    }

    .nav-links a {
        text-decoration: none;
        color: #333;
        transition: color 0.3s;
    }

    .nav-links a:hover {
        color: #1d1d1f;
    }

    .hamburger {
        display: none;
    }

    .nav-menu.active {
        display: block;
    }

/* end of Claude AI assistance */



/* global */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

p {
    color: #444;
}

/* footer - not in use yet - saving for later - matches nav bar styling */
footer {
    text-align: center;
    padding: 2rem;
    color: #999;
    font-size: 0.9rem;
    border-top: 1px solid #e0e0e0;
    margin-top: 3rem;
}




/* home page */

.home-head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.headshot {
    width: 350px;
    height: auto;
    object-fit: cover;
    border: 2px solid #0366cb;
    border-radius: 20px;
}

.home-head-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
}

.home-head a {
    color:#0366CB;
    text-decoration: none;
}

.home-head a:hover {
    color:#0366CB;
    text-decoration: underline;
}

.home-head h1 {
    text-align: left;
    padding: 1rem 0;
    font-size: 4rem;
    color: #0366CB;
}

.home-head h2 {
    text-align: left;
    color: #86868b;
    font-weight: 600;
    margin-bottom: 3rem;
    font-size: 1.25rem;
}

.home-head h3 {
    text-align: left;
    color: #86868b;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.home-head-title h4 {
    text-align: left;
    color: #000;
    font-size: 1.25rem;
    font-weight: 600;
}

.contact-box {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 3rem;
    width: 100%;
    align-items: flex-end;
}

.resume-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: auto;
    padding: 0 20px;
    background-color: #0366cb;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 30px;
}

.resume-button:hover {
    background-color: #024ea2;
}

.skills {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 3rem 0;
}

.skills-icons {
    width: 80%;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.skill-logos {
    height: 50px;
    width: auto;
    margin: 0.5rem 0;
}

.skills h1 {
    color: #0366CB;
    font-size: 2rem;
    color: #0366cb;
}

.looking-for {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.looking-for h1 {
    color: #0366CB;
    font-size: 2rem;
    margin: 3em 0 1rem 0;

}

.looking-for h2 {
    color: #86868b;
    font-weight: 600;
    font-size: 1.25rem;
    text-align: center;
}
/* end of home page */




/* about page */
.about-title {
    text-align: center;
    padding: 1rem 0;
}

.about-title h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.tagline {
    font-size: 1.3rem;
    color: #444;
    font-weight: 500;
}

section {
    margin: 3rem 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #0366cb;
}

.experience-section h2,
.leadership-section h2 {
    background: #0366cb;
    background: linear-gradient(to right, #0366cb 0%, #0366cb 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
header.about-title {
    margin-bottom: 4rem;
}

.about-section h2,
.values-section h2 {
    background: #0366cb;
    background: linear-gradient(to right, #0366cb 0%, #0366cb 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values-section h2 {
    text-align: center;
}

.about-section p {
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.8;
}

.about-section h2 {
    width: 100%;
}


.about-text img {
    height: 15px;
    width: auto;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

img.canva {
    height: 18px;
    width: auto;
    margin-left: 0.25rem;
    margin-right: 0.20rem;
}

img.figma {
    height: 20px;
    width: auto;
    margin-left: 0.25rem;
}

.about-text h2 {
    width: 100%;
    margin-top: 0;
    margin-bottom: 1rem;
}

.about-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.about-image {
    width: 375px;
    height: 425px;
    flex-shrink: 0;
    background-color: #e0e0e0;
    border-radius: 8px;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

/* timeline styles */
.experience-leadership-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 1rem 0;
    margin-top: 3rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 20px;
    bottom: 0;
    width: 2px;
    background-color: #d0d0d0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 2rem;
}

/* timeline marker designed by copilot  */
    .timeline-marker {
        width: 16px;
        height: 16px;
        background-color: #0366cb;
        border-radius: 50%;
        margin-top: 0.5rem;
        flex-shrink: 0;
        box-shadow: 0 0 0 4px #fafafa, 0 0 0 6px #e0e0e0;
    }

.timeline-content {
    flex: 1;
}

.timeline-content .date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1d1d1f;
}

.timeline-content h3 .timeline-link {
    color: #0366cb;
}

.timeline-content p {
    color: #444;
    line-height: 1.7;
}

.timeline-link {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}

.timeline-link:hover {
    text-decoration: underline;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: none;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #0366cb;
}

.value-card p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.emoji {
    font-size: 2rem;
    display: block;
}
/* end of about page */



/* works designs - applicable for both the UX page and the visual designs */
.work-content {
    width: 75%;
    padding: 20px;
}

h2 {
    margin-top: 0;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    height: auto;
}

.card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    width: calc(33.333% - 20px); /* copilot calculation */
    height: auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 2px solid #0366cb;
}

.card h3 {
    margin: 0 0 10px;
}

.labels {
    padding: 10px 0 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.labels span {
    background-color: #e7e7e7;
    border-radius: 8px;
    padding: 3px 10px;
    font-size: 0.9em;
}

.card p {
    padding: 10px 0;
}

/* end of works styling */


/* visual design page*/
.visual-design h1 {
    color: #0366CB;
    font-size: 2rem;
    color: #0366cb;
    margin: 1.5rem 0 1rem 0;
}

.vd-row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    height: auto;
}

.vd-column {
    flex: 25%;
    max-width: 25%;
    padding: 0 12px;
}

.vd-column-wide {
    flex: 50%;
    max-width: 50%;
    padding-right: 12px;
    height: auto;
    justify-content: space-between;
}

.vd-column img {
    margin-top: 12px;
    vertical-align: middle;
    width: 100%;
    height: auto;
}

.vd-column-wide img {
    margin-top: 12px;
    vertical-align: middle;
    width: 100%;
    height: auto;
}




/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */

/* responsive designing - used Claude AI to help style navigation */
@media (max-width: 600px) {
    .navbar {
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: flex;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links li {
        padding: 1rem 2rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .hamburger {
        width: 40px;
        height: 30px;
        border: none;
        background: transparent;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        height: 4px;
        width: 100%;
        background: black;
        border-radius: 2px;
        transition: 0.3s;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-links {
        display: flex;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-container {
        position: relative;
    }

    .home-head {
        flex-direction: column-reverse;
    }

    .home-head-title h4 {
        margin: 1rem;
    }

    .skills-icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        gap: 10px;
    }

    header.about-title {
        margin-bottom: 0rem;
    }

    .card-container {
        flex-direction: column;
    }

    .card {
        width: 100%;
    }

    section.about-section {
        margin-top: .5rem;
        margin-bottom: .5rem;
    }

    section.experience-section {
        margin-top: .5rem;
    }

    section.values-section {
        margin-top: .5rem;
    }

    .about-title h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    section h2 {
        font-size: 1.5rem;
    }

    main {
        padding: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .experience-leadership-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-image {
        width: 250px;
        height: 250px;
        margin-bottom: 1.5rem;
    }

    .about-text {
        width: 100%;
    }

    .work-content {
        width: 100%;
        padding: 20px;
    }

    .vd.row {
        flex-direction: column;
    }


}


@media (max-width: 900px) {
    .vd-row {
        flex-direction: column;
        display: flex;
    }

    .vd-row img {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .vd-column-wide {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .vd-column {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .about-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about-text h2, p {
        justify-content: center;
        text-align: center;
        margin: 1rem;
    }

    .timeline-content p {
        text-align: left;
        margin: 0;
    }

}