/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1F467E;
    --navy-dark: #172F5A;
    --blue: #1F467E;
    --blue-light: #3A6BAF;
    --green: #75B74C;
    --green-dark: #5E9A3C;
    --green-light: #8FCC6A;
    --orange: #F5A623;
    --orange-light: #FFBE55;
    --yellow: #FFD54F;
    --teal: #26A69A;
    --white: #FFFFFF;
    --off-white: #F7F9FC;
    --light-gray: #EEF2F7;
    --gray: #6B7B8D;
    --text-dark: #1a2a3a;
    --text-body: #3a4a5a;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}



body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-body);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    
}
html{
        overflow-x: hidden;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Quicksand', sans-serif;
}

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

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

/* ===== TOP HEADER ===== */
.top-header {
    background: var(--white);
    border-bottom: 1px solid #e8edf2;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 50px;
    width: auto;
}
.contact-item span, .footer-contact-item span{
    font-weight: 700;
    font-size:13px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-body);
}
.activities-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
}

.contact-item i {
    color: var(--blue);
    font-size: 14px;
}

.contact-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-body);
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--green);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: var(--white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 40px 60px;
}

.hero-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.05;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-year {
    color: var(--green);
    font-size: 72px;
    display: block;
}

.hero-tagline {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 15px;
    color: var(--text-body);
    max-width: 380px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.hero-features {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.hero-feature-icon {
    width: 65px;
    height: 55px;
}


.hero-feature-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
}

.btn-register {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: var(--white);
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(117, 183, 76, 0.35);
    margin-top:15px;
}

.btn-register:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(117, 183, 76, 0.45);
}

.btn-register i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.btn-register:hover i {
    transform: translateX(4px);
}

/* ===== ABOUT / GROWTH & FUN ===== */
.about-section {
    padding: 60px 20px;
    background: var(--off-white);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.section-title-green {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 18px;
    line-height: 1.3;
    position: relative;
}

.section-title-green::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--green);
    margin-top: 10px;
    border-radius: 2px;
}

.about-left p {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 12px;
    color: var(--text-body);
}

.about-right {
    position: relative;
}

.about-card {
    background: var(--white);
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid #eaeff4;
    position: relative;
    overflow: visible;
}

/* Card headers */
.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--green);
}

.card-header-blue {
    border-bottom-color: var(--blue);
}

.card-header-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.green-icon {
    border: 2px solid var(--green);
    color: var(--green);
}

.blue-icon {
    border: 2px solid var(--blue);
    color: var(--blue);
}

.card-header span {
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.5px;
}

/* Requirements list */
.requirements-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.requirements-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.4;
}

.requirements-list li i {
    color: var(--green);
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

.requirements-list li span {
    font-weight: 500;
}

/* Plant decoration */
.plant-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.7;
}

/* Hours card */
.hours-content {
    text-align: center;
    padding: 6px 0;
}

.hours-time {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.hours-or {
    font-size: 15px;
    color: var(--gray);
    margin: 8px 0;
    font-weight: 700;
}

/* Calendar + clock illustration */
.calendar-illustration {
    position: absolute;
    bottom: 0;
    right: 0;
}

/* ===== SECTION TITLES ===== */
.section-title-navy {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 36px;
    letter-spacing: 1px;
    position: relative;
}

.section-title-navy::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--green);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ===== CAMP ACTIVITIES ===== */
.activities-section {
    padding: 60px 20px;
    background: var(--white);
}

.activities-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.sh-wrapper {
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
}

.activity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 11px;
    border-radius: 16px;
}

.activity-icon {
    width: 95px;
    height: 80px;
}
.activity-icon:hover {
    transform: scale(1.1);
}

/*.icon-blue {*/
/*    background: var(--blue);*/
/*}*/

/*.icon-green {*/
/*    background: var(--green);*/
/*}*/

/*.icon-orange {*/
/*    background: var(--orange);*/
/*}*/

/*.icon-teal {*/
/*    background: var(--teal);*/
/*}*/

/*.icon-navy {*/
/*    background: var(--navy);*/
/*}*/

/*.icon-yellow {*/
/*    background: #E8B828;*/
/*}*/

.activity-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
}

/* ===== SUMMER CAMP DATES ===== */
.dates-section {
    padding: 60px 20px;
    background: var(--off-white);
}

.dates-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: start;
}

.dates-title {
    text-align: left !important;
    margin-bottom: 24px !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dates-title::after {
    display: none !important;
}

.dates-title i {
    color: var(--navy);
    font-size: 24px;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.date-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e8edf2;
    transition: transform 0.3s ease;
}

.date-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.date-icon {
    margin-bottom: 6px;
}

.date-icon i {
    color: var(--green);
    font-size: 20px;
}

.date-month {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
}

.date-range {
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
}

/* Pricing Card */
.pricing-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 40px 24px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 30px rgba(31, 70, 126, 0.25);
    overflow: visible;
}

.pricing-star-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(117, 183, 76, 0.4);
    z-index: 2;
}

.pricing-inner {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px 28px;
    position: relative;
}

.pricing-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--navy);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 14px;
}

.price-amount {
    font-family: 'Quicksand', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: var(--green);
}

.price-per {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
}

.price-desc {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-body);
}

/* Decorative stars */
.pricing-decorative-stars {
    position: absolute;
    bottom: 12px;
    left: 16px;
}

.pricing-decorative-stars i {
    color: #F5A623;
    position: absolute;
}

.pricing-decorative-stars .star-1 {
    font-size: 14px;
    bottom: 0;
    left: 0;
    opacity: 0.9;
}

.pricing-decorative-stars .star-2 {
    font-size: 8px;
    bottom: 14px;
    left: 10px;
    opacity: 0.7;
}

.pricing-decorative-stars .star-3 {
    font-size: 6px;
    bottom: 6px;
    left: 18px;
    opacity: 0.5;
}

/* ===== WHY FAMILIES CHOOSE ===== */
.why-section {
    padding: 60px 20px;
    background: var(--white);
}

.why-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.why-icon {
   width: 60px;
    height: 60px;
    border: 2px solid #75B74C;
    border-radius: 50%;
}

.why-icon:hover {
    transform: scale(1.1);
}


.why-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
}

/* ===== CTA BANNER ===== */
.cta-section {
    padding: 40px 20px;
    background: var(--off-white);
}

.cta-banner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 280px;
    background: url("images/footer-banner.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: transparent;
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 50px 50px;
    max-width: 420px;
}

.cta-content h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.cta-highlight {
    color: var(--green-light);
}

.cta-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 22px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: var(--white);
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

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

.btn-cta i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(4px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    padding: 24px 20px;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
    color: var(--green-light);
    font-size: 14px;
}

.footer-contact-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hours-content {
        text-align: left;
    }

    .header-contact {
        display: none;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-year {
        font-size: 52px;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dates-container {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-container {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .cta-banner {
        background-position: right center;
    }

    .cta-content {
        max-width: 100%;
        background: linear-gradient(to right, rgba(31, 70, 126, 0.95) 45%, rgba(31, 70, 126, 0.65) 75%, transparent 100%);
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 400px;
    }

    .hero-bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 60%, rgba(255, 255, 255, 0.5) 100%);
        z-index: 1;
    }

    .hero-content {
        padding: 30px 20px 80px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-year {
        font-size: 48px;
    }

    .hero-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 10px;
    }

    .about-right {
        grid-template-columns: 1fr;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content {
        padding: 30px 20px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .btn-cta {
        padding: 12px 20px;
        font-size: 13px;
        white-space: normal;
        text-align: center;
    }

    .section-title-navy,
    .section-title-green {
        font-size: 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 12px;
    }
}