/* ========================================
   Easter 2026 - Generations Church
   Modern, Clean, Hopeful Design
   ======================================== */

/* Screen-reader only (SEO + a11y, not visible) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* CSS Variables */
:root {
    /* Colors - Spring / Easter: cream, sage, warm gold */
    --color-bg: #FDFCFA;
    --color-bg-alt: #F5F3EF;
    --color-primary: #fba04b;
    --color-primary-dark: #e88c35;
    --color-primary-light: #fbb366;
    --color-accent: #D96B0D;
    --color-accent-light: #E8953A;
    --color-accent-warm: #E8A84B;
    
    /* Gradients */
    --gradient-hero: linear-gradient(160deg, #FDFCFA 0%, #F8F6F0 35%, #EDE9E0 70%, #E8E4D9 100%);
    --gradient-orb-1: radial-gradient(circle, rgba(251, 160, 75, 0.12) 0%, transparent 65%);
    --gradient-orb-2: radial-gradient(circle, rgba(217, 107, 13, 0.14) 0%, transparent 65%);
    --gradient-orb-3: radial-gradient(circle, rgba(64, 145, 108, 0.1) 0%, transparent 65%);
    --gradient-sunrise: linear-gradient(180deg, transparent 0%, rgba(217, 107, 13, 0.06) 100%);
    --gradient-card: linear-gradient(145deg, #FFFFFF 0%, #FDFCFA 100%);
    
    /* Text Colors */
    --color-text: #1C1917;
    --color-text-light: #57534E;
    --color-text-muted: #78716C;
    --color-white: #FFFFFF;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Shadows - warmer, softer */
    --shadow-sm: 0 1px 3px 0 rgba(28, 25, 23, 0.06);
    --shadow-md: 0 4px 12px -2px rgba(28, 25, 23, 0.08), 0 2px 6px -2px rgba(28, 25, 23, 0.04);
    --shadow-lg: 0 12px 24px -4px rgba(28, 25, 23, 0.1), 0 4px 8px -2px rgba(28, 25, 23, 0.05);
    --shadow-xl: 0 24px 40px -8px rgba(28, 25, 23, 0.12);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

/* Content sections (after hero): blue accent instead of orange */
.hero ~ section {
    --color-primary: #5a9bbc;
    --color-primary-dark: #4a8aab;
    --color-primary-light: #7ab0ce;
    --color-accent: #5a9bbc;
    --color-accent-light: #7ab0ce;
    --color-accent-warm: #5a9bbc;
}

.hero ~ section .btn-primary {
    box-shadow: 0 4px 14px rgba(90, 155, 188, 0.35);
}

.hero ~ section .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(90, 155, 188, 0.4);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 640px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 640px) {
    .nav-container {
        padding: 0 var(--space-lg);
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-text);
}

.logo-icon {
    color: var(--color-primary);
    font-size: 1.25rem;
}

.nav-logo-img {
    display: block;
    height: 43px;
    width: auto;
    max-width: 216px;
    object-fit: contain;
}

/* White logo over hero, dark logo when nav is scrolled */
.nav-logo-dark {
    display: none;
}

.nav.scrolled .nav-logo-light {
    display: none;
}

.nav.scrolled .nav-logo-dark {
    display: block;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: var(--space-md);
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-white);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-white);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.nav.scrolled .nav-link {
    color: var(--color-text-light);
}

.nav.scrolled .nav-link:hover {
    color: var(--color-text);
}

.nav.scrolled .nav-link.active {
    color: var(--color-text);
}

.nav-cta {
    display: none;
}

@media (min-width: 1024px) {
    .nav-cta {
        display: inline-flex;
    }
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-xs);
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

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

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

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

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

/* Mobile Menu */
@media (max-width: 1023px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-lg);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition-base), visibility var(--transition-base);
    }
    
    .nav-menu.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(251, 160, 75, 0.35);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(251, 160, 75, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text-muted);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-1px) scale(1.02);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-orb-1);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-orb-2);
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--gradient-orb-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 30px) scale(1.02);
    }
}

/* Floating particles over hero (subtle depth/motion) */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    animation: particleFloat 18s ease-in-out infinite;
}

.hero-particle:nth-child(1)  { left: 8%;  top: 18%; width: 4px; height: 4px; animation-delay: 0s;   animation-duration: 20s; }
.hero-particle:nth-child(2)  { left: 22%; top: 72%; width: 3px; height: 3px; animation-delay: -2s;  animation-duration: 22s; }
.hero-particle:nth-child(3)  { left: 45%; top: 12%; width: 5px; height: 5px; animation-delay: -4s;  animation-duration: 16s; }
.hero-particle:nth-child(4)  { left: 68%; top: 55%; width: 3px; height: 3px; animation-delay: -6s;  animation-duration: 24s; }
.hero-particle:nth-child(5)  { left: 85%; top: 28%; width: 4px; height: 4px; animation-delay: -1s;  animation-duration: 19s; }
.hero-particle:nth-child(6)  { left: 12%; top: 48%; width: 6px; height: 6px; animation-delay: -8s;  animation-duration: 21s; }
.hero-particle:nth-child(7)  { left: 55%; top: 78%; width: 3px; height: 3px; animation-delay: -3s;  animation-duration: 17s; }
.hero-particle:nth-child(8)  { left: 35%; top: 35%; width: 4px; height: 4px; animation-delay: -5s;  animation-duration: 23s; }
.hero-particle:nth-child(9)  { left: 78%; top: 8%;  width: 5px; height: 5px; animation-delay: -7s;  animation-duration: 18s; }
.hero-particle:nth-child(10) { left: 5%;  top: 82%; width: 3px; height: 3px; animation-delay: -9s;  animation-duration: 25s; }
.hero-particle:nth-child(11) { left: 92%; top: 62%; width: 4px; height: 4px; animation-delay: -10s; animation-duration: 20s; }
.hero-particle:nth-child(12) { left: 28%; top: 5%;  width: 4px; height: 4px; animation-delay: -11s; animation-duration: 22s; }
.hero-particle:nth-child(13) { left: 62%; top: 42%; width: 3px; height: 3px; animation-delay: -12s; animation-duration: 19s; }
.hero-particle:nth-child(14) { left: 15%; top: 32%; width: 5px; height: 5px; animation-delay: -13s; animation-duration: 21s; }
.hero-particle:nth-child(15) { left: 88%; top: 75%; width: 3px; height: 3px; animation-delay: -14s; animation-duration: 17s; }
.hero-particle:nth-child(16) { left: 42%; top: 58%; width: 4px; height: 4px; animation-delay: -15s; animation-duration: 24s; }
.hero-particle:nth-child(17) { left: 72%; top: 22%; width: 3px; height: 3px; animation-delay: -16s; animation-duration: 18s; }
.hero-particle:nth-child(18) { left: 50%; top: 88%; width: 5px; height: 5px; animation-delay: -17s; animation-duration: 23s; }

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.35; }
    25%      { transform: translate(15px, -20px); opacity: 0.55; }
    50%      { transform: translate(-10px, 10px); opacity: 0.3; }
    75%      { transform: translate(8px, 15px); opacity: 0.5; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-particle { animation: none; }
}

/* Soft glow that drifts from lower-right toward center */
.hero-glow-sweep {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 90%;
    height: 70%;
    z-index: 4;
    pointer-events: none;
    background: radial-gradient(
        ellipse 80% 60% at 80% 100%,
        rgba(251, 160, 75, 0.18) 0%,
        rgba(217, 107, 13, 0.08) 45%,
        transparent 70%
    );
    animation: glowSweep 20s ease-in-out infinite;
}

@keyframes glowSweep {
    0%, 100% { opacity: 0.85; transform: translate(0, 0) scale(1); }
    50%      { opacity: 1;    transform: translate(-12%, -8%) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-glow-sweep { animation: none; }
}

.sunrise {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: var(--gradient-sunrise);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1100px;
    padding: var(--space-xl) var(--space-md);
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    display: block;
    margin: -2rem auto 0;
    max-width: 840px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.2));
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-warm);
    margin-bottom: var(--space-sm);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.75rem, 9vw, 5.5rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-title .title-accent {
    color: var(--color-accent-warm);
    font-style: italic;
}

.hero-description {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 3.125rem);
    font-weight: 400;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.95);
    max-width: 100%;
    margin: -0.5rem auto 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-description .hero-tagline-accent {
    color: var(--color-accent-warm);
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 560px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 420px;
    }
}

/* Hero mobile logo: hidden on desktop */
.hero-mobile-logo {
    display: none;
}

/* Hero mobile CTAs: hidden on desktop, shown on phones */
.hero-mobile-ctas {
    display: none;
}

/* Phones only: no nav, hero content bumped up, mobile CTAs, top logo */
@media (max-width: 768px) {
    .nav {
        display: none !important;
    }

    .hero-mobile-logo {
        display: block;
        position: fixed;
        top: var(--space-md);
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        opacity: 1;
        visibility: visible;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .hero-mobile-logo.is-hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .hero-mobile-logo img {
        display: block;
        height: 42px;
        width: auto;
        max-width: 210px;
        object-fit: contain;
    }

    .hero {
        align-items: flex-start;
        justify-content: center;
        padding-top: 12vh;
    }

    .hero-content {
        padding-top: 0;
        margin-top: 0;
    }

    .hero-logo {
        margin: 0 auto;
    }

    .hero-description {
        margin-top: var(--space-sm);
    }

    .hero-mobile-ctas {
        display: flex;
        flex-direction: column;
        gap: var(--space-sm);
        margin-top: var(--space-lg);
        width: 100%;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-mobile-ctas .btn {
        width: 100%;
        justify-content: center;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        background: rgba(255, 255, 255, 0.95);
        color: var(--color-text);
        border: 2px solid rgba(255, 255, 255, 0.9);
    }

    .hero-mobile-ctas .btn:hover {
        background: var(--color-white);
        color: var(--color-primary);
        border-color: var(--color-white);
    }

    /* Tighter spacing between sections on phones */
    .section {
        padding: var(--space-lg) 0;
    }

    .section-header {
        margin-bottom: var(--space-sm);
    }
}

.scroll-hint {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   Section Styles
   ======================================== */
.section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========================================
   What to Expect Section (split layout)
   ======================================== */
.section-expect {
    background: var(--color-bg);
}

.section-expect .section-header {
    max-width: 900px;
}

.section-expect .container {
    padding-bottom: 0;
}

.expect-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
    width: 100%;
}

@media (min-width: 900px) {
    .expect-split {
        grid-template-columns: 3fr 2fr;
        gap: var(--space-md);
    }
}

.expect-video {
    position: relative;
    width: 100%;
    min-height: 280px;
    min-width: 0;
    background: var(--color-bg-alt);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

@media (min-width: 900px) {
    .expect-video {
        min-height: 0;
    }
}

.expect-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: none;
    transform: translate(-50%, -50%) scale(1.15);
}

/* Gallery slider when used in The Experience (left column) */
.expect-video .gallery-slider {
    max-width: none;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
}

.expect-video .gallery-track {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    background: var(--color-bg-alt);
}

.expect-list {
    padding: var(--space-xl) var(--space-md);
    display: flex;
    align-items: center;
}

@media (min-width: 640px) {
    .expect-list {
        padding: var(--space-2xl) var(--space-xl);
    }
}

@media (min-width: 900px) {
    .expect-list {
        padding: var(--space-2xl) var(--space-2xl);
    }
}

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

.expect-bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: var(--space-md);
    font-size: 1.0625rem;
    line-height: 1.5;
    color: var(--color-text-light);
}

.expect-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

.expect-bullets li strong {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 500;
}

.expect-bullets li:last-child {
    margin-bottom: 0;
}

/* ========================================
   Campus Times Section
   ======================================== */
.section-times {
    background: var(--color-bg-alt);
}

.section-times .section-header {
    max-width: 800px;
}

.campus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .campus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .campus-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

.campus-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.campus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.campus-featured {
    border: 2px solid var(--color-primary-light);
}

.campus-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(59, 130, 246, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.campus-name {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}

.campus-address {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.campus-directions {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
    transition: color var(--transition-fast);
}

.campus-directions:hover {
    color: var(--color-primary-dark);
}

.campus-directions::after {
    content: '→';
}

.campus-times {
    margin-bottom: var(--space-md);
}

.time-block {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-sm) 0;
}

.time-block:not(:last-child) {
    border-bottom: 1px solid var(--color-bg-alt);
}

.time-day {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.time-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
}

.time-values {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.time-values .time-value {
    background: var(--color-bg-alt);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.campus-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.feature-tag {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    background: var(--color-bg);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
}

.campus-online .campus-name {
    color: var(--color-accent);
}

.time-note {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
}

.campus-online-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

/* ========================================
   For Families Section
   ======================================== */
.section-families {
    background: var(--color-bg);
    overflow: hidden;
}

.families-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .families-layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

.families-content .section-header {
    text-align: left;
    margin-left: 0;
    margin-bottom: var(--space-lg);
}

.families-content .section-description {
    margin-bottom: var(--space-lg);
}

.family-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.family-feature {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    transition: transform var(--transition-fast);
}

.family-feature:hover {
    transform: translateX(4px);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    transition: transform var(--transition-fast);
}

.family-feature:hover .feature-icon {
    transform: scale(1.08);
}

.feature-text h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.feature-text p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Families Visual */
.families-photo-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.families-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    animation: familiesFloat 5s ease-in-out infinite;
}

.families-photo:nth-child(1) { animation-delay: 0s; }
.families-photo:nth-child(2) { animation-delay: -1.25s; }
.families-photo:nth-child(3) { animation-delay: -2.5s; }
.families-photo:nth-child(4) { animation-delay: -3.75s; }

.families-photo::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.families-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.families-photo:hover img {
    transform: scale(1.06);
}

.families-photo:hover {
    box-shadow: var(--shadow-xl);
}

@keyframes familiesFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ========================================
   Online Campus Section
   ======================================== */
.section-online {
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.online-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .online-layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
    
    .online-layout .online-visual {
        order: -1;
    }
}

.online-visual {
    display: flex;
    justify-content: center;
}

.device-mockup {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 16 / 10;
    background: var(--color-text);
    border-radius: var(--radius-xl);
    padding: 3%;
    box-shadow: var(--shadow-xl);
}

.device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.device-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-orb-1);
    opacity: 0.5;
}

.screen-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-fast);
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

.live-badge {
    background: #EF4444;
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-sm);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.online-content .section-header {
    text-align: left;
    margin-left: 0;
    margin-bottom: var(--space-lg);
}

.online-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.online-detail {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.detail-icon {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.detail-icon svg {
    width: 100%;
    height: 100%;
}

.detail-text h4 {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.detail-text p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

/* ========================================
   Digital Invites Section
   ======================================== */
.section-invites {
    background: var(--color-bg);
}

.section-invites .section-header {
    max-width: 800px;
}

.invites-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .invites-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.invite-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.invite-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.invite-preview {
    aspect-ratio: 1;
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-bg-alt);
}

.invite-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.invite-graphic {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-md);
}

.graphic-1 {
    background: linear-gradient(135deg, #E8EDE6 0%, #E8E4D9 50%, #E8D5A3 100%);
}

.graphic-2 {
    background: linear-gradient(135deg, #F5F3EF 0%, #E8D5A3 100%);
}

.graphic-3 {
    background: linear-gradient(135deg, #F5E6D9 0%, #fbb366 30%, #fba04b 100%);
}

.graphic-3 .graphic-text,
.graphic-3 .graphic-date {
    color: var(--color-white);
}

.graphic-3 .graphic-date {
    opacity: 0.9;
}

.graphic-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text);
    text-align: center;
}

.graphic-date {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.invite-card h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.share-text {
    text-align: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-bg-alt);
}

.share-text p {
    color: var(--color-text-light);
}

.share-text code {
    display: inline-block;
    background: var(--color-bg-alt);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-family: monospace;
    font-size: 0.9375rem;
    color: var(--color-primary);
    margin-top: var(--space-xs);
}

.share-text .copy-link {
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.share-text .copy-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.share-text .copy-feedback {
    display: inline-block;
    margin-left: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    pointer-events: none;
}

.share-text .copy-feedback.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   FAQ Section
   ======================================== */
.section-faq {
    background: var(--color-bg-alt);
}

.section-faq .section-header {
    max-width: 800px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-cta {
    text-align: center;
    margin-top: var(--space-xl);
    margin-bottom: 0;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    margin-left: var(--space-sm);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: transform var(--transition-fast);
}

.faq-icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-icon::after,
.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.is-open .faq-answer,
.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========================================
   Gallery Section (rotating slider)
   ======================================== */
.section-gallery {
    background: var(--color-bg);
}

.section-gallery .section-header {
    max-width: 600px;
}

/* Video when used in A Glimpse of Easter section */
.gallery-video-wrap {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: var(--color-text);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gallery-video-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: none;
    transform: translate(-50%, -50%) scale(1.15);
}

.gallery-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gallery-track {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--color-bg-alt);
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.gallery-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast), color var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.gallery-prev {
    left: var(--space-md);
}

.gallery-next {
    right: var(--space-md);
}

.gallery-dots {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: var(--space-xs);
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.gallery-dot.active {
    background: var(--color-white);
    transform: scale(1.2);
}

/* ========================================
   CTA Section
   ======================================== */
.section-cta {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.cta-bg .gradient-orb {
    filter: blur(80px);
}

.cta-bg .orb-1 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.cta-bg .orb-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.cta-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
}

@media (min-width: 480px) {
    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    --color-primary-dark: #4a8aab;
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: var(--space-lg) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1.5fr 2fr;
    }
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
    color: var(--color-white);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-column a {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-white);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.footer-social a:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.2);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   Scroll Reveal Animation
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section headers: label → title → description stagger when they reveal */
.section-header.reveal .section-label,
.section-header.reveal .section-title,
.section-header.reveal .section-description {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.section-header.reveal.active .section-label {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.08s;
}

.section-header.reveal.active .section-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.18s;
}

.section-header.reveal.active .section-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.28s;
}

/* Stagger children */
.reveal-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-children.active > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-children.active > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-children.active > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-children.active > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal-children.active > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.reveal-children.active > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* ========================================
   Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .gradient-orb {
        animation: none;
    }
    
    .families-photo {
        animation: none;
    }
    
    .scroll-hint {
        animation: none;
    }
}}