
/* ═══════════════════════════════════════════════════════════
   PAGE HERO - FULL BLEED WITH BUILDING
   ═══════════════════════════════════════════════════════════ */
.page-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--navy-deep);
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('/img/brits-home/bh-4.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.33;
}
.page-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15,29,61,0.85) 0%, rgba(26,50,103,0.75) 100%);
}

.page-hero-overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('/img/britney/bkg-wh-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.33;
    z-index: 0;
}
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 160px 40px 100px;
    text-align: center;
}
.page-hero-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.page-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero-sub {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
}
.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { text-align: center; }
.hero-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.hero-stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════════════════════════
   INTRO SECTION
   ═══════════════════════════════════════════════════════════ */
.intro {
    padding: 100px 40px;
    background: white;
}
.intro-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.intro-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 24px;
}
.intro-content p {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.8;
}
.intro-content p strong { color: var(--navy); }
.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
}
.intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.intro-images img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.intro-images img:first-child {
    grid-column: span 2;
}

/* ═══════════════════════════════════════════════════════════
   KEY FACTS BANNER
   ═══════════════════════════════════════════════════════════ */
.facts-banner {
    background: var(--navy);
    padding: 60px 40px;
}
.facts-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}
.fact {
    text-align: center;
    flex: 1;
    min-width: 150px;
}
.fact-icon {
    width: 60px;
    height: 60px;
    background: rgba(244,180,26,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.fact-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}
.fact-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    line-height: 1.5;
}
.fact-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 4px;
}

/* ═══════════════════════════════════════════════════════════
   PEOPLE SECTION (KIDS + STAFF)
   ═══════════════════════════════════════════════════════════ */
.people {
    padding: 100px 40px;
    background: var(--cream);
}
.people-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.people-header {
    text-align: center;
    margin-bottom: 60px;
}
.people-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}
.people-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}
.people-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.people-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}
.people-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.people-card-image {
    height: 240px;
    background: var(--navy-light);
    position: relative;
    overflow: hidden;
}
.people-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.people-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--navy-deep);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    padding: 12px 20px;
    border-radius: 4px;
    line-height: 1;
}
.people-card-badge span {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}
.people-card-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.people-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}
.people-card p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}
.people-card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}
.people-card-link:hover {
    color: var(--gold-dark);
    gap: 12px;
}

/* ═══════════════════════════════════════════════════════════
   PROGRAMS GRID
   ═══════════════════════════════════════════════════════════ */
.programs {
    padding: 100px 40px;
    background: white;
}
.programs-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.programs-header {
    text-align: center;
    margin-bottom: 60px;
}
.programs-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}
.programs-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.program-card {
    background: var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}
.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.program-card-image {
    height: 180px;
    background: var(--navy);
    overflow: hidden;
}
.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.program-card:hover .program-card-image img {
    transform: scale(1.08);
}
.program-card-content {
    padding: 28px;
}
.program-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.program-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}
.program-card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}
.program-card-link:hover {
    color: var(--navy);
    gap: 10px;
}

/* ═══════════════════════════════════════════════════════════
   TIMELINE - REDESIGNED
   ═══════════════════════════════════════════════════════════ */
.timeline-section {
    padding: 100px 40px;
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}
.timeline-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f4b41a' fill-opacity='0.03'%3E%3Cpath d='M30 5l2.47 7.6h7.99l-6.47 4.7 2.47 7.6L30 20.2l-6.46 4.7 2.47-7.6-6.47-4.7h7.99L30 5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.timeline-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.timeline-header {
    text-align: center;
    margin-bottom: 70px;
}
.timeline-header .section-label { color: var(--gold); }
.timeline-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}
.timeline-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline Grid Layout */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.timeline-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}
.timeline-item:hover {
    background: rgba(244,180,26,0.15);
    border-color: var(--gold);
    transform: translateY(-4px);
}
.timeline-item.major {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}
.timeline-item.major:hover {
    background: rgba(244,180,26,0.15);
    border-color: var(--gold);
}
.timeline-item-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--navy);
    margin: 0 auto 16px;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.2);
    transition: border-color 0.3s;
}
.timeline-item:hover .timeline-item-image {
    border-color: var(--gold);
}
.timeline-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.timeline-item-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 8px;
}
.timeline-item-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   5 SELVES SECTION
   ═══════════════════════════════════════════════════════════ */
.selves {
    padding: 100px 40px;
    background: var(--gray-light);
}
.selves-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.selves-header {
    text-align: center;
    margin-bottom: 60px;
}
.selves-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}
.selves-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}
.selves-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.self-card {
    background: white;
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border-top: 4px solid var(--navy);
}
.self-card:nth-child(1) { border-top-color: #3b82f6; }
.self-card:nth-child(2) { border-top-color: #ef4444; }
.self-card:nth-child(3) { border-top-color: #22c55e; }
.self-card:nth-child(4) { border-top-color: #a855f7; }
.self-card:nth-child(5) { border-top-color: var(--gold); }
.self-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.self-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.self-card ul {
    list-style: none;
    text-align: left;
}
.self-card li {
    font-size: 0.9rem;
    color: var(--gray);
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-light);
}
.self-card li:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════════════════
   THE OC SECTION
   ═══════════════════════════════════════════════════════════ */
.oc {
    padding: 100px 40px;
    background: white;
}
.oc-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.oc-image {
    position: relative;
}
.oc-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.oc-image::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    left: 20px;
    bottom: -20px;
    border: 3px solid var(--gold);
    border-radius: 8px;
    z-index: -1;
}
.oc-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
}
.oc-content p {
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.8;
}
.oc-address {
    background: var(--cream);
    padding: 24px;
    border-radius: 8px;
    margin-top: 28px;
}
.oc-address-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 8px;
}
.oc-address p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--navy);
    margin: 0;
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.cta {
    padding: 100px 40px;
    background: var(--cream);
    text-align: center;
}
.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}
.cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 20px;
}
.cta h2 span { color: var(--gold-dark); }
.cta p {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 36px;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 4px;
    transition: all 0.3s;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244,180,26,0.3);
}
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: white;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION OVERRIDES FOR THIS PAGE
   ═══════════════════════════════════════════════════════════ */
.nav {
    background: transparent;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .intro-inner, .oc-inner { 
        grid-template-columns: 1fr; 
        gap: 50px; 
    }
    .intro-images { 
        max-width: 500px; 
        margin: 0 auto; 
    }
    .programs-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .timeline-grid { 
        grid-template-columns: repeat(3, 1fr); 
    }
    .selves-grid { 
        grid-template-columns: repeat(3, 1fr); 
    }
    .people-grid { 
        grid-template-columns: 1fr; 
        max-width: 500px; 
        margin: 0 auto; 
    }
}

@media (max-width: 768px) {
    .page-hero-content { 
        padding: 120px 24px 80px; 
    }
    .hero-stats { 
        gap: 30px; 
    }
    .intro, .programs, .people, .selves, .oc, .cta { 
        padding: 70px 24px; 
    }
    .programs-grid { 
        grid-template-columns: 1fr; 
    }
    .timeline-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .selves-grid { 
        grid-template-columns: 1fr; 
        max-width: 300px; 
        margin: 0 auto; 
    }
    .facts-inner { 
        flex-direction: column; 
        gap: 30px; 
    }
}

@media (max-width: 480px) {
    .page-hero h1 { 
        font-size: 2rem; 
    }
    .hero-stats { 
        flex-direction: column; 
        gap: 24px; 
    }
    .timeline-grid { 
        grid-template-columns: 1fr; 
    }
    .cta-buttons { 
        flex-direction: column; 
    }
    .btn { 
        width: 100%; 
        text-align: center; 
    }
}
