/* css/bio.css */

/* Active nav link styling */
.nav-links a.active {
    color: #5a4a3a;
    font-weight: 600;
}

/* Bio Hero Section */
.bio-hero {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 120px 2rem 80px;
}

.bio-hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.bio-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.bio-tagline {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.5;
    font-weight: 500;
}

.bio-hero-image {
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
}

.bio-hero-image .capitol-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Biography Content */
.bio-content {
    padding: 80px 2rem;
    background: #ffffff;
}

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

.bio-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #5a4a3a, #8a7a6a);
}

.timeline-section {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    margin-right: 3rem;
    margin-left: -30px;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5a4a3a, #4a3a2a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(90, 74, 58, 0.3);
}

.timeline-content {
    flex: 1;
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.timeline-content h3 {
    color: #5a4a3a;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

/* Achievement Highlights */
.achievement-highlights {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #5a4a3a;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: #555;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item i {
    color: #5a4a3a;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Impact Stats */
.impact-stats {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-top: 4px solid #5a4a3a;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5a4a3a;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Bio CTA Section */
.bio-cta {
    background: linear-gradient(135deg, #5a4a3a, #4a3a2a);
    padding: 60px 2rem;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.bio-cta .cta-button {
    background: white;
    color: #5a4a3a;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.bio-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .bio-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .bio-text h1 {
        font-size: 2.5rem;
    }

    .bio-tagline {
        font-size: 1.1rem;
    }

    .bio-timeline::before {
        left: 15px;
    }

    .timeline-section {
        flex-direction: column;
    }

    .timeline-marker {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: flex-start;
        margin-left: -15px;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .timeline-content {
        margin-left: 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bio-hero {
        padding: 100px 1rem 60px;
    }

    .bio-text h1 {
        font-size: 2rem;
    }

    .bio-content {
        padding: 60px 1rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .achievement-highlights {
        padding: 1rem;
    }

    .bio-cta {
        padding: 50px 1rem;
    }
}