/* ==========================================================================
   Canopy Adventure Park - Camp Pages Stylesheet
   ========================================================================== */

/* ==========================================================================
   Base Styles & Design System
   ========================================================================== */

:root {
    /* Colors */
    --lightolive: #fbfcf8;
    --olive: #dce2ca;
    --green: #85be8f;
    --orange: #dd5235;
    --navy: #383845;
    --darknavy: #23232d;
    --darkestnavy: #121217;

    /* Typography */
    --font-heading: 'Poetsen One', cursive;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    color: var(--darknavy);
}

/* Typography Scale */
h1 {
    font-family: var(--font-heading);
    font-size: 40px;
    line-height: 44px;
    font-weight: 400;
}

h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 34px;
    font-weight: 400;
}

h3 {
    font-family: var(--font-body);
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
}

.body-large {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
}

.body-small {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

header {
    background-color: var(--lightolive);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: visible;
    min-height: 64px;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    position: absolute;
    left: 20px;
    top: -20px;
    z-index: 1001;
}

.logo img {
    height: 168px;
    width: 168px;
    transform: rotate(-8deg);
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.logo img:hover {
    transform: rotate(0deg);
}

/* Scrolled state for logo */
header.scrolled .logo {
    top: 0;
}

header.scrolled .logo img {
    height: 80px;
    width: 80px;
}

/* Add padding to nav menu to account for logo space */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    color: #23232D;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease;
}

.nav-item > a:hover {
    color: #DD5235;
}

.nav-item > a i {
    font-size: 0.7rem;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #23232D;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #DD5235;
}

.book-now-btn {
    background-color: var(--orange);
    color: var(--lightolive) !important;
    padding: 16px !important;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.book-now-btn:hover {
    background-color: #c44429;
    color: var(--lightolive) !important;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #23232D;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    left: 20px;
    top: 4px;
    z-index: 1002;
}

/* Mobile Enroll Button */
.mobile-enroll-btn {
    display: none;
    background-color: var(--orange);
    color: var(--lightolive);
    padding: 10px 20px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
    position: absolute;
    right: 20px;
    top: -6px;
    z-index: 1002;
    transition: background-color 0.3s ease;
}

.mobile-enroll-btn:hover {
    background-color: #c44429;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    background-color: var(--darknavy);
    color: var(--lightolive);
    padding: 56px 32px;
    text-align: left;
}

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

.hero h1 {
    font-family: var(--font-heading);
    font-size: 40px;
    line-height: 44px;
    font-weight: 400;
    color: var(--lightolive);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 24px;
}

.hero p:not(.hero-subtitle) {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    color: var(--lightolive);
    margin-bottom: 32px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 16px;
    background-color: transparent;
    color: var(--lightolive);
    border: 2px solid var(--orange);
    border-radius: 6px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: var(--orange);
    color: var(--lightolive);
    border-color: var(--orange);
}

/* Hero Image */
.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ==========================================================================
   Main Content Sections
   ========================================================================== */

/* Section wrapper pattern: full-width background with constrained content */
.section-wrapper {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 32px;
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 4rem 32px;
}

.about-section {
    background-color: var(--lightolive);
}

.about-section .container {
    padding-bottom: 24px;
}

.about-section h2 {
    font-family: 'Poetsen One', cursive;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--darknavy);
}

.about-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--darknavy);
}

/* Two Column Feature Section */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.feature-item h3 {
    font-family: var(--font-body);
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 1rem;
}

.feature-item p {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: var(--darknavy);
}

/* Separator line */
.about-separator {
    border: 0;
    border-top: 1px solid var(--olive);
    margin: 24px 0;
}

/* Olive testimonial block */
.testimonial-olive {
    background-color: var(--lightolive);
    padding: 24px 32px 56px 32px;
}

.testimonial-olive .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 56px;
    background-color: var(--olive);
    border-radius: 16px;
}

.testimonial-olive h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 34px;
    font-weight: 400;
    color: var(--darknavy);
    margin-bottom: 1rem;
}

.testimonial-olive p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--darknavy);
    margin: 0;
}

.testimonial-olive p:has(.testimonial-btn) {
    margin-top: 24px;
}

.testimonial-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 16px;
    background-color: var(--orange);
    color: var(--lightolive);
    border: 2px solid var(--orange);
    border-radius: 6px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background-color: #c44429;
    border-color: #c44429;
    color: var(--lightolive);
}

/* ==========================================================================
   Unique Features Section
   ========================================================================== */

.unique-section {
    background-color: var(--darknavy);
    color: var(--lightolive);
    padding: 4rem 32px;
}

.unique-section .section-wrapper {
    max-width: 980px;
    margin: 0 auto;
}

.unique-section h2 {
    font-family: 'Poetsen One', cursive;
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
}

.feature-card {
    background-color: rgba(0, 0, 0, 0.48);
    border-radius: 8px;
    padding: 24px;
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-card i {
    font-size: 1.2rem;
}

.feature-card.purple i { color: #b896ff; }
.feature-card.orange i { color: #ff9b4a; }
.feature-card.yellow i { color: #ffd84a; }
.feature-card.green i { color: #6bcf7f; }

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #d0d8e2;
}

.register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 3rem auto 0;
    background-color: transparent;
    color: var(--lightolive);
    border: 2px solid var(--orange);
    padding: 16px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
    height: 42px;
}

.register-btn:hover {
    background-color: var(--orange);
    color: var(--lightolive);
}

.btn-center {
    text-align: center;
}

/* ==========================================================================
   Outcomes Section
   ========================================================================== */

.outcomes-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.outcomes-left {
    background-color: #a8d5b3;
    color: #23232D;
    padding: 4rem 3rem;
}

.outcomes-right {
    background-color: #c8e6d0;
    padding: 4rem 3rem;
}

.outcomes-left h3,
.outcomes-right h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #23232D;
}

.outcomes-left ul,
.outcomes-right ul {
    list-style: none;
    padding: 0;
}

.outcomes-left li,
.outcomes-right li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #23232D;
}

.outcomes-left li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
    color: #23232D;
}

.outcomes-right li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #23232D;
    font-size: 1.5rem;
    line-height: 1;
}

/* ==========================================================================
   Testimonial Section
   ========================================================================== */

.testimonial-section {
    background-color: var(--darknavy);
    color: var(--lightolive);
    padding: 3rem 32px;
    text-align: left;
}

.testimonial-section .section-wrapper {
    max-width: 980px;
    margin: 0 auto;
}

.testimonial-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #DD5235;
}

.testimonial-section p {
    max-width: 880px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    font-style: normal;
}

/* ==========================================================================
   Checkfront Booking Section
   ========================================================================== */

.space--thick {
    padding: 4rem 32px;
}

.contentCF {
    background-color: #fff;
}

.contain-- {
    max-width: 980px;
    margin: 0 auto;
}

.fontDisplay {
    font-family: 'Poetsen One', cursive;
    font-size: 2rem;
    font-weight: 400;
    color: #23232D;
    text-align: center;
    margin-bottom: 2rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background-color: #23232D;
    color: #FCFDFF;
    padding: 1rem 0;
    text-align: center;
}

.container-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-footer ul {
    list-style: none;
    padding: 0 0 1rem 0;
    margin: 0 0 2rem 0;
    border-bottom: 1px solid #474760;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-footer li:last-of-type {
    margin-bottom: 0;
}

.nav-footer a {
    color: #FCFDFF;
    text-decoration: none;
    font-size: 0.875rem;
    border-bottom: 1px solid #DD5235;
    transition: border-color 0.3s ease;
}

.nav-footer a:hover,
.nav-footer a:focus {
    border-bottom: 1px solid #DD5235;
}

.about-footer {
    display: block;
}

.address h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.address p {
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.address a {
    color: #FCFDFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.address a:hover {
    color: #DD5235;
}

.social {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social li:last-of-type {
    margin-right: 0;
}

.social svg {
    width: 2rem;
    height: 2rem;
    fill: #FCFDFF;
    transition: fill 0.3s ease;
}

.social a:hover svg {
    fill: #DD5235;
}

.disclaimer {
    max-width: 28rem;
    margin: 0 auto;
}

.disclaimer p {
    font-size: 0.75rem;
    line-height: 1.4;
    font-weight: 600;
    font-style: italic;
    color: #b8c5d6;
}

.copyright {
    margin-top: 3rem;
}

.copyright p {
    font-size: 0.75rem;
    color: #b8c5d6;
    margin: 0;
}

/* ==========================================================================
   Responsive Design - Tablet & Desktop
   ========================================================================== */

/* Footer Desktop Styles */
@media (min-width: 37.5em) {
    .footer {
        text-align: left;
    }
    
    .nav-footer ul {
        flex-direction: row;
        gap: 2rem;
    }
    
    .about-footer {
        display: flex;
        align-items: center;
    }
    
    .social {
        margin: 0 0 0 3rem;
        justify-content: flex-start;
    }
    
    .disclaimer {
        margin-left: auto;
    }
}

/* ==========================================================================
   Responsive Design - Mobile
   ========================================================================== */

@media (max-width: 968px) {
    /* Ensure header has relative positioning for mobile toggle */
    header {
        position: relative;
    }

    .logo {
        left: 50%;
        top: -10px;
        transform: translateX(-50%);
    }
    
    .logo img {
        height: 100px;
        width: 100px;
        transform: translateX(0) rotate(-8deg);
    }
    
    .logo img:hover {
        transform: translateX(0) rotate(0deg);
    }
    
    header.scrolled .logo {
        top: 0;
    }
    
    header.scrolled .logo img {
        height: 60px;
        width: 60px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.3);
        padding: 2rem 0;
        gap: 0;
        margin-left: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-item > a {
        padding: 1rem 2rem;
        width: 100%;
    }
    
    .book-now-btn {
        margin: 0.5rem 2rem !important;
        width: auto !important;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f5f5f5;
        margin-top: 0;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-item.dropdown-open .dropdown-menu {
        display: block;
        max-height: 500px;
    }
    
    .nav-item > a i {
        transition: transform 0.3s ease;
    }
    
    .nav-item.dropdown-open > a i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu a {
        padding: 0.75rem 3rem;
        color: #23232D;
    }
    
    .mobile-toggle {
        display: block;
    }

    .mobile-enroll-btn {
        display: block;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .outcomes-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
    }

    .section-wrapper {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 36px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 24px;
    }

    .hero-btn {
        height: 42px;
        padding: 16px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }

    .container {
        padding: 3rem 20px;
    }

    .about-section h2 {
        font-size: 1.7rem;
    }

    .hero-image {
        height: 300px;
    }

    .outcomes-left,
    .outcomes-right {
        padding: 2.5rem 2rem;
    }

    .outcomes-left li,
    .outcomes-right li {
        padding: 0.25rem 0;
        padding-left: 1.5rem;
        margin-bottom: 0.1rem;
    }

    .unique-section,
    .testimonial-section,
    .testimonial-olive,
    .stats-bar,
    .benefits-section,
    .camps-section,
    .full-day-section,
    .cta-section,
    .space--thick {
        padding-left: 20px;
        padding-right: 20px;
    }

    .testimonial-olive .container {
        padding: 24px;
    }
}

/* ==========================================================================
   Summer Camps Overview Page Styles
   ========================================================================== */

/* Hero Images Section */
.hero-images {
    background-color: #fff;
    padding: 8px;
    display: grid;
    grid-template-columns: 48% 22% 30%;
    gap: 8px;
}

.hero-image-multi {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, var(--green) 0%, #6ba87a 100%);
    padding: 3rem 32px;
    color: var(--lightolive);
}

.stats-container {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-family: 'Poetsen One', cursive;
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--navy);
    padding: 4rem 32px;
    color: var(--lightolive);
}

.benefits-section .container {
    padding: 0;
}

.benefits-section h2 {
    font-family: 'Poetsen One', cursive;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--lightolive);
}

.benefits-section p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--lightolive);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 980px;
    margin: 3rem auto 0;
}

.benefit-card {
    background: var(--lightolive);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.benefit-icon {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.benefit-card:nth-child(1) .benefit-icon { color: #b896ff; }
.benefit-card:nth-child(2) .benefit-icon { color: #ff9b4a; }
.benefit-card:nth-child(3) .benefit-icon { color: #ffd84a; }
.benefit-card:nth-child(4) .benefit-icon { color: #6bcf7f; }
.benefit-card:nth-child(5) .benefit-icon { color: #b896ff; }
.benefit-card:nth-child(6) .benefit-icon { color: #ff9b4a; }

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #23232D;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Camp Cards Section */
.camps-section {
    padding: 5rem 32px;
    background-color: #23232D;
}

.camps-section h2 {
    font-family: 'Poetsen One', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--lightolive);
    font-weight: 400;
}

.camps-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: var(--lightolive);
    line-height: 1.8;
}

.camps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 820px;
    margin: 0 auto;
}

.camp-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.camp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.camp-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.camp-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.camp-badge {
    display: inline-block;
    background-color: var(--green);
    color: var(--lightolive);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.camp-card h3 {
    font-family: 'Poetsen One', cursive;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #23232D;
    font-weight: 400;
}

.camp-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.camp-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.camp-meta-item i {
    color: #DD5235;
}

.camp-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.camp-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.camp-highlights li {
    font-size: 0.9rem;
    padding: 0.1rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.camp-highlights li:before {
    content: "✓";
    color: #85BE8F;
    font-weight: 700;
    font-size: 1.1rem;
}

.camp-link {
    display: inline-block;
    background-color: var(--orange);
    color: var(--lightolive);
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
}

.camp-link:hover {
    background-color: #c44429;
    transform: translateX(4px);
}

/* Full Day Options Section */
.full-day-section {
    background-color: var(--navy);
    color: var(--lightolive);
    padding: 4rem 32px;
    text-align: center;
}

.full-day-content {
    max-width: 980px;
    margin: 0 auto;
}

.full-day-section h2 {
    font-family: 'Poetsen One', cursive;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--lightolive);
}

.full-day-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--lightolive);
}

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

.combo-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.combo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.combo-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #DD5235;
}

.combo-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.full-day-note {
    background-color: #ffd84a;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 3rem;
    font-size: 1.05rem;
    color: var(--darknavy) !important;
    text-align: center;
}

.full-day-note strong {
    color: var(--darknavy) !important;
}

/* CTA Section */
.cta-section {
    background-color: #fff;
    padding: 4rem 32px;
    text-align: center;
}

.cta-section .section-wrapper {
    max-width: 980px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: 'Poetsen One', cursive;
    font-size: 2.5rem;
    color: var(--lightolive);
    margin-bottom: 1rem;
    font-weight: 400;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--lightolive);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #23232D;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-family: 'Poetsen One', cursive;
    font-weight: 400;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ==========================================================================
   Summer Camps Overview - Responsive Styles
   ========================================================================== */

@media (max-width: 968px) {
    .hero-images {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .hero-image-multi:first-child {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-images {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .hero-image-multi:first-child {
        grid-column: 1 / -1;
        width: 100%;
    }

    .hero-image-multi {
        height: 320px;
    }
    
    /* Reduce section padding on mobile */
    .hero {
        padding: 2rem 20px;
    }
    
    .stats-bar {
        padding: 2rem 20px;
    }
    
    .about-section.container {
        padding: 2.5rem 20px;
    }
    
    .benefits-section {
        padding: 2.5rem 20px;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .camps-section {
        padding: 3rem 20px;
    }
    
    .full-day-section {
        padding: 2.5rem 20px;
    }
    
    .cta-section {
        padding: 2.5rem 20px;
    }
    
    /* Tighten camp card highlights on mobile */
    .camp-highlights li {
        padding: 0.25rem 0;
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .camps-section h2 {
        font-size: 2rem;
    }
    
    .camps-grid {
        grid-template-columns: 1fr;
    }
    
    .camp-card h3 {
        font-size: 1.5rem;
    }
}
