/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-primary: #1b4332;
    --green-light: #2d5016;
    --gold-accent: #d4af37;
    --gold-light: #f4e4a6;
    --cream: #faf8f3;
    --warm-white: #fefdfb;
    --charcoal: #2d3748;
    --light-gray: #f7fafc;
    --light-green-tint: #f8fcf9;
    --border-light: #e2e8f0;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--warm-white);
    font-size: 16px;
}

/* Link styling */
a {
    color: var(--green-primary);
    text-decoration: none;
}

a:hover {
    color: var(--green-light);
}

a:visited {
    color: var(--green-primary);
}

a:visited:hover {
    color: var(--green-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--green-primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Header */
.site-header {
    background: var(--warm-white);
    border-bottom: 1px solid var(--border-light);
    padding: 2rem 0;
}

.header-content {
    text-align: center;
}

.header-rsvp-wrapper {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.school-name {
    font-size: 3.5rem;
    color: var(--green-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    text-shadow: 0 2px 4px rgba(27, 67, 50, 0.1);
}

.school-name::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-accent) 20%, var(--gold-accent) 80%, transparent 100%);
}

.motto {
    font-size: 1.2rem;
    color: var(--gold-accent);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0;
}

.header-rsvp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, var(--gold-accent) 0%, #e6c04d 100%);
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
    transition: all 0.3s ease;
    border: 2px solid var(--gold-accent);
    white-space: nowrap;
}

.header-rsvp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-light) 0%, #f4e89d 100%);
    color: var(--green-primary);
}

.header-rsvp-btn:visited {
    color: var(--green-primary);
}

.header-rsvp-btn:visited:hover {
    color: var(--green-primary);
}

.header-rsvp-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.header-rsvp-btn:hover i {
    transform: translateX(3px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    color: white;
    padding: 7.8rem 0;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-green-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--green-primary);
    opacity: 0.4;
    mix-blend-mode: screen;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.hero-title {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.hero-title-line {
    display: block;
    margin-bottom: 0.2rem;
}

.animated-text-container {
    display: inline-block;
    min-width: 220px;
    text-align: center;
    position: relative;
    height: 1.2em;
    vertical-align: baseline;
}

.animated-text {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    white-space: nowrap;
}


.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-calls-to-action {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem auto;
    text-align: center;
    max-width: 800px;
}

.hero-calls-to-action .hero-subtitle {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 2rem;
    font-family: 'Libre Baskerville', serif;
    letter-spacing: 0.02em;
    color: white;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-calls-to-action .hero-subtitle {
    transform: translateY(30px);
}

.hero-calls-to-action .hero-subtitle.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-calls-to-action .hero-subtitle em {
    color: var(--gold-light);
    font-weight: 700;
    font-style: italic;
}

.hero-cta-buttons {
    margin-top: 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-cta-buttons.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .hero-cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

.btn-prefix {
    font-size: 0.75em;
    font-weight: 400;
    opacity: 0.8;
}

.animated-text {
    color: var(--gold-light);
    font-weight: 700;
    position: relative;
    display: inline-block;
    transition: opacity 0.3s ease-in-out;
}

.animated-text::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold-light);
    animation: blink 1.2s infinite;
}

@keyframes blink {
    0%, 60% { opacity: 1; }
    61%, 100% { opacity: 0; }
}

.animated-text.fade-out {
    opacity: 0;
}

.animated-text.fade-in {
    opacity: 1;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--gold-light);
    font-style: italic;
    text-align: center;
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-fade {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.scroll-animate-fade.animate-in {
    opacity: 1;
}

.scroll-animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-slide-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-slide-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Mission Statement */
.mission-statement {
    padding: 6rem 0;
    background: var(--green-primary);
}

.mission-statement .section-title {
    color: var(--warm-white);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.8rem;
    color: var(--green-primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 3px;
    background: var(--gold-accent);
}


.mission-statement-text {
    font-size: 1.4rem;
    color: var(--green-primary);
    text-align: center;
    line-height: 1.7;
    margin: 0 auto 3rem;
    max-width: 100%;
    font-weight: 600;
    font-family: 'Libre Baskerville', serif;
    /* background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(250,248,243,0.9) 100%); */
        background: white;
    padding: 2.5rem 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 6px 25px rgba(27, 67, 50, 0.08);
    position: relative;
    overflow: hidden;
}

.mission-statement-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-accent);
}


.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.pillar {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(27, 67, 50, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold-accent);
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(27, 67, 50, 0.15);
}

.pillar-icon {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.pillar:hover .pillar-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    transform: scale(1.1);
}

.pillar-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--green-primary);
    line-height: 1.4;
    flex-grow: 0;
    text-align: center;
}

.pillar-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 0;
    flex-grow: 1;
    text-align: center;
}


/* Flip Text Animation - Only used for header motto */
.flip-letter {
    display: inline-block;
    position: relative;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* Philosophy, Funding, and School Details Sections */
.philosophy, .funding-model, .school-details {
    padding: 6rem 0;
}

.philosophy {
    background: white;
}

.funding-model {
    background: var(--light-green-tint);
}

.school-details {
    background: white;
}

.school-details-cta,
.funding-model-cta {
    margin-top: 2rem;
    text-align: center;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.featured-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--green-light);
    border-left: 4px solid var(--gold-accent);
    padding-left: 2rem;
    margin: 3rem 0;
    text-align: left;
    line-height: 1.6;
}

.philosophy-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--charcoal);
}

.starting-info {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    text-align: left;
}

.starting-info h4 {
    color: var(--green-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.starting-info p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--charcoal);
}


/* Call to Action */
.call-to-action {
    background: var(--green-primary);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
}

.cta-verse {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 2rem;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.95;
}

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

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
}

button.btn-primary, button.btn-secondary {
    font-family: 'Open Sans', sans-serif;
}

button.btn-secondary {
    background: transparent !important;
    color: white !important;
    border-color: white !important;
}

button.btn-secondary:hover {
    background: white;
    color: var(--green-primary);
    transform: translateY(-2px);
}

button.btn-secondary-on-white {
    background: transparent;
    color: var(--green-primary);
    border-color: var(--green-primary);
}

button.btn-secondary-on-white:hover {
    background: var(--green-primary);
    color: white;
}

/* Override visited link styles for buttons */
button.btn-primary:visited,
button.btn-secondary:visited,
button.btn-secondary-on-white:visited {
    color: inherit;
}

button.btn-primary:visited:hover,
button.btn-secondary:visited:hover,
button.btn-secondary-on-white:visited:hover {
    color: inherit;
}

/* Override anchor link styles for button classes */
a.btn-secondary-on-white:visited {
    color: var(--green-primary) !important;
}

a.btn-secondary-on-white:hover {
    background: var(--green-primary) !important;
    color: white !important;
}

a.btn-secondary-on-white:visited:hover {
    background: var(--green-primary) !important;
    color: white !important;
}

.btn-primary {
    background: var(--gold-accent);
    color: var(--green-primary);
    border-color: var(--gold-accent);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white !important;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--green-primary) !important;
    transform: translateY(-2px);
}

.btn-secondary-on-white {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
    background: transparent;
    color: var(--green-primary);
    border-color: var(--green-primary);
}

.btn-secondary-on-white:hover {
    background: var(--green-primary);
    color: white;
}

/* Footer */
.site-footer {
    background: var(--green-primary);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-main h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-motto {
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.footer-main p:last-child {
    margin-bottom: 0;
    opacity: 0.8;
}

.footer-legal {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-operator {
    margin-bottom: 2rem;
}

.footer-operator p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.footer-nondiscrimination h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-nondiscrimination p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 0;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-info p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 1.5rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pillar {
        min-height: auto;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .school-name {
        font-size: 2.5rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        text-align: center;
        font-size: 2.2rem;
    }

    .animated-text-container {
        min-width: 180px;
    }

    .hero-calls-to-action {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        max-width: 100%;
    }

    .hero-calls-to-action .hero-subtitle {
        font-size: 1.5rem;
    }


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

    .pillar {
        padding: 2rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .school-name {
        font-size: 2rem;
    }

    .hero {
        padding: 5.2rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-title-line {
        margin-bottom: 0.1rem;
    }

    .animated-text-container {
        min-width: 140px;
        height: 1.1em;
    }

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

    .mission-statement, .philosophy, .funding-model, .school-details {
        padding: 4rem 0;
    }
}

/* FAQ Page Styles */
.faq-hero {
    background: var(--warm-white);
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.faq-title {
    font-size: 3rem;
    color: var(--green-primary);
    margin-bottom: 1rem;
    font-family: 'Libre Baskerville', serif;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.faq-content {
    padding: 5rem 0;
    background: var(--warm-white);
}

.faq-sections {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 5rem;
}

.category-title {
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 2.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.faq-category-items {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.faq-item {
    margin-bottom: 0;
    border: none;
    border-radius: 0;
    overflow: hidden;
    background: white;
    box-shadow: none;
}

.faq-item:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    padding: 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: rgba(27, 67, 50, 0.02);
}

.faq-question.active {
    background: var(--light-green-tint);
    color: var(--green-primary);
}

.faq-chevron {
    color: var(--green-primary);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer p {
    padding: 0 2rem 0.75rem 4rem;
    margin: 0;
    color: var(--charcoal);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-answer p:first-child {
    padding-top: 1.5rem;
}

.faq-answer p:not(:last-child) {
    margin-bottom: 0.5rem;
}

.faq-answer em {
    color: var(--green-primary);
    opacity: 0.7;
}

.faq-answer ol {
    padding: 0 2rem 0 6rem;
    margin: 1rem 0;
}

.faq-answer li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

/* FAQ CTA Section */
.faq-cta-section {
    background: var(--warm-white);
    padding: 2rem 2rem 5rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 4rem;
}

.faq-cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-cta-content h2 {
    color: var(--charcoal);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.faq-cta-content p {
    color: var(--charcoal);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-hero {
        padding: 3rem 0 2rem;
    }

    .faq-title {
        font-size: 2.2rem;
    }

    .faq-question {
        padding: 1.2rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.2rem 1.2rem 2.8rem;
    }

    .category-title {
        font-size: 1.5rem;
    }
}

/* Enrollment Page Styles */
.enrollment-hero {
    background: var(--warm-white);
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.enrollment-title {
    font-size: 3rem;
    color: var(--green-primary);
    margin-bottom: 1rem;
    font-family: 'Libre Baskerville', serif;
}

.enrollment-subtitle {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.enrollment-content {
    padding: 4rem 0;
    background: var(--warm-white);
}

.enrollment-sections {
    max-width: 900px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 4rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
}

.info-section {
    margin-top: 3rem;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    color: var(--green-primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.info-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card .btn-secondary {
    margin-top: 1rem;
}

/* Responsive Enrollment */
@media (max-width: 768px) {
    .enrollment-hero {
        padding: 3rem 0 2rem;
    }

    .enrollment-title {
        font-size: 2.2rem;
    }

    .form-section {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }
}

/* Extra Small Screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-title-line {
        margin-bottom: 0.1rem;
    }

    .animated-text-container {
        min-width: 120px;
        height: 1.3em;
    }
}

/* Concentric Support Page Styles */
.concentric-hero {
    background: var(--green-primary);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.concentric-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.concentric-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
}

.concentric-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    font-weight: 300;
    margin-bottom: 0;
}

.concentric-explanation {
    padding: 4rem 0;
    background: var(--warm-white);
}

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

.explanation-text h2 {
    color: var(--green-primary);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.explanation-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.concentric-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-placeholder {
    text-align: center;
    padding: 3rem;
    border: 2px dashed var(--green-light);
    border-radius: 12px;
    background: rgba(27, 67, 50, 0.05);
}

.visual-placeholder i {
    font-size: 3rem;
    color: var(--green-light);
    margin-bottom: 1rem;
}

.visual-placeholder p {
    color: var(--green-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.visual-placeholder small {
    color: var(--charcoal);
    opacity: 0.7;
}

.support-levels {
    padding: 4rem 0;
    background: var(--light-gray);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.support-level {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-level:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.support-icon {
    margin-bottom: 2rem;
}

.icon-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-placeholder i {
    font-size: 2rem;
    color: white;
}

.inner-circle .icon-placeholder {
    background: var(--green-primary);
}

.middle-circle .icon-placeholder {
    background: var(--green-light);
}

.outer-circle .icon-placeholder {
    background: var(--gold-accent);
}

.support-level h3 {
    color: var(--green-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.support-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.support-details {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.5;
}

.biblical-foundation {
    padding: 4rem 0;
    background: var(--green-primary);
    color: white;
    text-align: center;
}

.foundation-content {
    max-width: 900px;
    margin: 0 auto;
}

.biblical-foundation .featured-quote {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    border: none;
    padding: 0;
}

.biblical-foundation .featured-quote cite {
    color: var(--gold-light);
    font-style: italic;
    display: block;
    margin-top: 1rem;
}

.foundation-text {
    text-align: left;
}

.foundation-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.support-examples {
    padding: 4rem 0;
    background: var(--warm-white);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.example-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.example-card:hover {
    transform: translateY(-3px);
}

.example-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--green-primary);
    margin-bottom: 1rem;
    font-family: 'Libre Baskerville', serif;
}

.example-card h4 {
    color: var(--green-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.example-card p {
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 0;
}

.join-support {
    padding: 4rem 0;
    background: var(--light-green-tint);
    text-align: center;
}

.join-content {
    max-width: 800px;
    margin: 0 auto;
}

.join-content h2 {
    color: var(--green-primary);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.join-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: var(--charcoal);
}

.join-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Concentric Support */
@media (max-width: 768px) {
    .concentric-title {
        font-size: 2.5rem;
    }

    .concentric-subtitle {
        font-size: 1.2rem;
    }

    .explanation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .support-level {
        padding: 2rem 1.5rem;
    }

    .examples-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .join-buttons {
        flex-direction: column;
        align-items: center;
    }

    .join-buttons .btn-primary,
    .join-buttons .btn-secondary,
    .join-buttons .btn-outline {
        width: 100%;
        max-width: 300px;
    }
}