﻿

:root {
    --green-dark: #1B3A1F;
    --green-mid: #2D5A1E;
    --green-olive: #6B7A2A;
    --green-light: #8FAF3A;
    --green-pale: #EBF2DC;
    --orange: #E8730A;
    --orange-light: #F59332;
    --cream: #F6F3EC;
    --cream-dark: #EDE8DC;
    --text-dark: #1C2110;
    --text-mid: #3D4A28;
    --text-muted: #6B7355;
    --white: #ffffff;
    --teal-dark: #0D3B2E;
}






/* ── HERO ── */
.hero {
    background-image: url('../images/coolTheplanet-bnr .jpg');
    color: var(--white);
    padding: 2.5rem 2.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 15% 75%, rgba(139,175,58,0.15) 0%, transparent 55%), radial-gradient(circle at 85% 20%, rgba(107,122,42,0.18) 0%, transparent 50%);
        pointer-events: none;
    }

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 0.73rem;
    font-weight: 500;
    padding: 0.28rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
}

.hero h1 {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    max-width: 680px;
    margin: 0 auto 0.9rem;
    position: relative;
}

.hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
}

.hero-btns {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 3rem;
}

/* Stats embedded in hero */
.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(0,0,0,0.18);
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.hero-stat {
    padding: 1rem 2.8rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}

    .hero-stat:last-child {
        border-right: none;
    }

.hero-stat-num {
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--green-light);
    display: block;
    color: #fff;
}

.hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-wave {
    display: block;
    width: 100%;
    position: relative;
}

    .hero-wave svg {
        display: block;
        width: 100%;
    }

/* ── BUTTONS ── */
.btn-primary {
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.abLtrc-paddBg {
    background: rgb(250, 249, 245);
    padding: 26px 35px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgb(44 73 32);
}

.btn-outline-dark {
    background: transparent;
    color: var(--white);
    text-decoration: none;
    padding: 0.68rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1.5px solid rgba(255,255,255,0.4);
    display: inline-block;
    transition: background 0.2s;
}

    .btn-outline-dark:hover {
        background: rgba(255,255,255,0.1);
    }

.btn-teal {
    background: var(--green-dark);
    color: var(--white);
    text-decoration: none;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: opacity 0.2s;
}

    .btn-teal:hover {
        opacity: 0.82;
    }

.btn-sm {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    padding: 0.42rem 1.05rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: background 0.2s;
}

    .btn-sm:hover {
        background: var(--orange-light);
    }

/* ── SHARED ── */



.section-tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green-mid);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.26rem 0.82rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.65rem;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.45rem;
    line-height: 1.25;
}

.section-sub {
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 2.2rem;
    line-height: 1.65;
}

/* ── PROGRAMS ── */
.programs {
    background: var(--white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.prog-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.8rem 1.4rem;
    border: 1.5px solid var(--cream-dark);
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

    .prog-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--green-olive);
    }

    .prog-card:hover {
        border-color: var(--green-light);
        transform: translateY(-3px);
    }

.prog-icon {
    width: 46px;
    height: 46px;
    background: var(--green-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 0.9rem;
}

.prog-badge {
    background: var(--green-dark);
    color: var(--green-pale);
    font-size: 0.68rem;
    padding: 0.16rem 0.52rem;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.prog-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.45rem;
}

.prog-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.prog-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-mid);
    text-decoration: none;
}

    .prog-link:hover {
        color: var(--orange);
    }

/* ── GREEN CELEBRATION ── */
.gc-section {
    background: var(--cream);
}

.gc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.gc-image-box {
    border-radius: 18px;
    background: linear-gradient(135deg, var(--green-pale), var(--cream-dark));
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

blockquote {
    background: var(--white);
    border-left: 4px solid var(--green-mid);
    border-radius: 0 10px 10px 0;
    padding: 1.1rem 1.3rem;
    margin: 1.1rem 0;
    font-style: italic;
    color: var(--text-mid);
    font-size: 0.88rem;
    line-height: 1.7;
}

.steps-row {
    display: flex;
    margin-top: 1.2rem;
}

.step {
    flex: 1;
    padding: 1rem 0.6rem;
    text-align: center;
    position: relative;
}

    .step::after {
        content: '›';
        position: absolute;
        right: -3px;
        top: 34%;
        font-size: 1.3rem;
        color: var(--green-olive);
    }

    .step:last-child::after {
        display: none;
    }

.step-num {
    width: 32px;
    height: 32px;
    background: var(--green-mid);
    color: var(--white);
    border-radius: 50%;
    font-family: 'Playfair Display', serif;
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.45rem;
}

.step-ico {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.3rem;
}

.step h4 {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.3;
}

.occasions-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.occ-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    border: 1.5px solid var(--cream-dark);
    transition: border-color 0.2s, transform 0.2s;
}

    .occ-card:hover {
        border-color: var(--green-light);
        transform: translateY(-3px);
    }

.occ-emoji {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 0.6rem;
}

.occ-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.35rem;
}

.occ-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 0.9rem;
}

.media-section {
    background: #0d2b1a;
    padding: 4rem 1.5rem;
    font-family: var(--font-sans)
}

.container {
    max-width: 1100px;
    margin: 0 auto
}

.section-tag {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    color: #7dd3a8;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: .05em;
    margin-bottom: 1rem
}

.section-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: .5rem;
    text-align: left;
}

.section-sub {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    margin-bottom: 2.5rem
}

.media-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.5rem;
    align-items: start
}

.iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    background: #000
}

    .iframe-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        display: none
    }

        .iframe-wrapper iframe.active-frame {
            display: block
        }

.video-meta {
    margin-top: 1rem
}

img.gallery-img {
    height: 160px;
    border-radius: 6px;
}



.video-meta h4 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: .35rem
}

.video-meta p {
    color: rgba(255,255,255,0.5);
    font-size: .875rem;
    line-height: 1.5
}

.media-sidebar {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    height: 421px;
    overflow-y: auto;
}

.media-thumb {
    display: flex;
    align-items: center;
    gap: .75rem;
    cursor: pointer;
    padding: .6rem .75rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: background .2s
}

    .media-thumb:hover, .media-thumb.active {
        background: rgba(255,255,255,0.07);
        border-color: rgba(125,211,168,0.3)
    }

.thumb-img {
    width: 72px;
    height: 48px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    position: relative;
    flex-shrink: 0
}

.v1 {
    background: #1a3d2b
}

.v2 {
    background: #2b1a1a
}

.v3 {
    background: #1a2b2b
}

.v4 {
    background: #1a1a3d
}

.thumb-play {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    bottom: 4px;
    right: 4px
}

.thumb-info h5 {
    color: #fff;
    font-size: .8rem;
    font-weight: 500;
    margin-bottom: 2px
}

.thumb-info span {
    color: rgba(255,255,255,0.4);
    font-size: .72rem;
    display: block;
}

.gallery-strip {
    margin-top: 2rem
}

    .gallery-strip h4 {
        color: #fff;
        font-size: .95rem;
        font-weight: 500;
        margin-bottom: 1rem
    }

.gallery-grid {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap
}

.gallery-item {
    width: 160px;
    height: 160px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    cursor: pointer
}

.g1 {
    background: #1a3d2b
}

.g2 {
    background: #1a2b1a
}

.g3 {
    background: #2b1a1a
}

.g4 {
    background: #1a2b2b
}

.g5 {
    background: #2b2b1a
}

.gallery-more {
    width: 160px;
    height: 160px;
    border-radius: 9px;
    background: rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.08)
}

    .gallery-more span:last-child {
        font-size: .72rem;
        color: rgba(255,255,255,0.45)
    }

/* ── TESTIMONIALS + CTA ── */
.bottom-section {
    background: var(--white);
    padding: 4rem 2.5rem;
}

.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
}

.testi-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1.5px solid var(--cream-dark);
}

.testi-quote {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.testi-name {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--green-dark);
}

.testi-tag {
    font-size: 0.7rem;
    color: var(--green-olive);
}

/* CTA strip */
.cta-strip {
    background: linear-gradient(120deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-olive) 100%);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-strip-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.cta-strip-text p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.68);
    max-width: 420px;
}

.cta-strip-btns {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--green-dark);
    text-decoration: none;
    padding: 0.7rem 1.7rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-block;
    transition: opacity 0.2s;
}

    .btn-white:hover {
        opacity: 0.9;
    }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    text-decoration: none;
    padding: 0.68rem 1.7rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.88rem;
    border: 1.5px solid rgba(255,255,255,0.4);
    display: inline-block;
    transition: background 0.2s;
}

    .btn-outline-white:hover {
        background: rgba(255,255,255,0.1);
    }



.social-btn {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    transition: border-color 0.2s, color 0.2s;
}

    .social-btn:hover {
        border-color: var(--green-light);
        color: var(--green-light);
    }


/* Gallery image cursor */
.gallery-img {
    cursor: pointer;
    transition: transform 0.2s ease;
}

    .gallery-img:hover {
        transform: scale(1.05);
    }

/* Lightbox Overlay */
#lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

    #lightbox-overlay.active {
        display: flex;
    }

/* Lightbox Box */
#lightbox-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 90vh;
}

/* Main Image */
#lightbox-img {
    max-width: 85vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    object-fit: contain;
}

/* Close Button */
#lightbox-close {
    position: fixed;
    top: 18px;
    right: 24px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    transition: background 0.2s;
}

    #lightbox-close:hover {
        background: rgba(255,255,255,0.3);
    }

/* Prev / Next Buttons */
#lightbox-prev,
#lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 48px;
    line-height: 1;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    transition: background 0.2s;
}

#lightbox-prev {
    left: 16px;
}

#lightbox-next {
    right: 16px;
}

    #lightbox-prev:hover,
    #lightbox-next:hover {
        background: rgba(255,255,255,0.3);
    }





    .custom-scroll::-webkit-scrollbar {
        width: 3px;
    }

    .custom-scroll::-webkit-scrollbar-track {
        background: #fff;
    }

    .custom-scroll::-webkit-scrollbar-thumb {
        background: #f97a20;
        border-radius: 10px;
    }

        .custom-scroll::-webkit-scrollbar-thumb:hover {
            background: #555;
        }


@media (max-width: 768px) {
    .programs-grid, .gc-row, .media-layout, .bottom-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

    .occasions-row {
        grid-template-columns: 1fr 1fr;
    }

    .steps-row {
        flex-wrap: wrap;
    }

    .step::after {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-strip {
        flex-direction: column;
        text-align: center;
    }

    .cta-strip-btns {
        justify-content: center;
    }

    .hero-stat {
        padding: 0.9rem 1.5rem;
    }
}
