/* About Page Styles */

.profile-hero {
    background: linear-gradient(135deg, var(--deep-green) 0%, #0a5a42 100%);
    padding: 8rem 0 4rem;
    color: var(--cream);
}

.profile-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

.profile-image-section {
    position: sticky;
    top: 100px;
}

.profile-main-image {
    width: 100%;
    border-radius: 12px;
    border: 5px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.profile-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.profile-badges .badge {
    background: var(--gold);
    color: var(--deep-green);
    padding: 0.75rem;
    border-radius: 6px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.profile-intro h1 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.title-line {
    font-size: 1.3rem;
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.location {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.bio-lead {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.contact-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Experience Timeline */
.experience-timeline {
    background: var(--cream);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--deep-green);
}

.section-title.centered {
    text-align: center;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 30px;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--cream);
    z-index: 1;
}

.timeline-item.featured .timeline-marker {
    width: 30px;
    height: 30px;
    left: -35px;
    background: var(--deep-green);
    border: 4px solid var(--gold);
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--shadow);
    border-left: 4px solid var(--gold);
}

.timeline-item.featured .timeline-content {
    border-left: 6px solid var(--deep-green);
    box-shadow: 0 6px 20px rgba(11, 61, 46, 0.15);
}

.timeline-header {
    margin-bottom: 1rem;
}

.timeline-header h3 {
    font-size: 1.5rem;
    color: var(--deep-green);
    margin-bottom: 0.5rem;
}

.timeline-header .company {
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.timeline-header .period {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.timeline-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.achievements {
    list-style: none;
    padding: 0;
    margin: 0;
}

.achievements li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.achievements li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* Education Section */
.education-section {
    background: var(--white);
}

.education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.education-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--gold);
}

.education-card h3 {
    font-size: 1.3rem;
    color: var(--deep-green);
    margin-bottom: 0.75rem;
}

.education-card .school {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.education-card .period {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.cert-card {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--gold);
}

.cert-card h4 {
    color: var(--deep-green);
    font-size: 1.1rem;
    margin: 0;
}

.skills-title {
    font-size: 1.3rem;
    color: var(--deep-green);
    margin: 2rem 0 1rem;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.skill {
    background: var(--gold);
    color: var(--deep-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.languages {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 8px;
}

.languages p {
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.languages strong {
    color: var(--deep-green);
}

/* Honors Section */
.honors-section {
    background: var(--cream);
}

.honors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.honor-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
    border-top: 4px solid var(--gold);
}

.honor-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.honor-card h3 {
    font-size: 1.3rem;
    color: var(--deep-green);
    margin-bottom: 0.5rem;
}

.honor-card p {
    color: var(--gold);
    font-weight: 600;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--deep-green) 0%, #0a5a42 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--cream);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .profile-content {
        grid-template-columns: 300px 1fr;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .profile-hero {
        padding: 6rem 0 3rem;
    }

    .profile-content {
        grid-template-columns: 1fr;
    }

    .profile-image-section {
        position: static;
    }

    .profile-intro h1 {
        font-size: 2.5rem;
    }

    .title-line {
        font-size: 1.1rem;
    }

    .bio-lead {
        font-size: 1.2rem;
    }

    .bio-text {
        font-size: 1rem;
    }

    .contact-links {
        flex-direction: column;
    }

    .contact-links .btn {
        width: 100%;
        text-align: center;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-marker {
        left: -20px;
    }

    .timeline-item.featured .timeline-marker {
        left: -25px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .profile-badges {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }
}
