/* Hero Section */
.bio-hero {
    background-color: var(--primary-bg);
    padding: 6rem 2rem;
    text-align: center;
}

/* Biography Sections */
.bio-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

/* Family Grid */
.family-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.family-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

/* Milestones */
.milestone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Page Header */
.page-header {
    height: auto;
    min-height: 100vh;
    padding: calc(60px + 4rem) 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.header-content h1 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.header-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin: 1rem 0;
    line-height: 1.3;
}

.header-quote {
    margin: 2rem auto;
    max-width: 800px;
}

.header-quote p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.header-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #d4af37;
}

@media (max-width: 768px) {
    .page-header {
        padding: calc(50px + 3rem) 1.5rem 3rem;
    }

    .header-quote {
        margin: 1.5rem auto;
    }
}

@media (max-width: 480px) and (orientation: portrait) {
    .page-header {
        min-height: auto;
        padding: calc(40px + 1.5rem) 1rem 1.5rem;
    }

    .header-content {
        padding: 0;
    }

    .header-quote {
        margin: 1rem auto;
    }

    .header-quote p {
        line-height: 1.4;
    }

    .header-quote cite {
        margin-top: 0.5rem;
    }
}
