/* =====================
           KIDS CAMP - HOME PAGE
        ===================== */

.kids-camp .main-heading {
    font-size: 36px;
}

.kids-camp {
    background-color: #03392B;
    background: url('../images/kids section.png') no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0;
    text-align: center;
    overflow: hidden;
}

.kids-camp .wrapper {
    padding: 50px 0 0;
    display: flex;
    align-items: center;
}

.kids-camp .content {
    padding-bottom: 50px
}

.kids-camp .inner-wrapper {
    text-align: left;
}

.kids-camp .action-button {
    background: transparent;
}

/* =====================
           SECTION 1 - HERO BANNER
        ===================== */
.lp-hero-section {
    background-color: #03392B;
    background: url('../images/Background.webp') no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 20px 100px;
    text-align: center;
    overflow: hidden;
}

.lp-hero-section .container {
    position: relative;
    z-index: 1;
    text-align: -webkit-center;
}

/* Brand logo area */
.lp-hero-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 32px;
}

.lp-hero-brand-logo {
    width: 300px;
    height: auto;
    object-fit: contain;
}

.lp-hero-brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.lp-hero-brand-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

/* Decorative kitchen tool images */
.lp-hero-decor {
    position: absolute;
    z-index: 0;
}

.lp-hero-decor-left {
    left: 0;
    top: 20px;
    width: 220px;
}

.lp-hero-decor-right {
    right: 0;
    bottom: 20px;
    width: 180px;
}

/* Hero headline */
.lp-hero-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 8px;
}

.lp-hero-title .highlight {
    color: #FDB932;
}

.lp-hero-subtitle {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    /* font-size: 1.6rem; */
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 32px 0;
}

.btn-hero {
    display: inline-block;
    padding: 12px 36px;
    border: 2px solid var(--white);
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    transition: background 0.25s, color 0.25s;
    border-radius: 2px;
    cursor: pointer;
}

.btn-hero:hover {
    background: var(--white);
    color: var(--green-dark);
}

/* =====================
           SECTION 2 - INTRO TEXT
        ===================== */
.intro-section {
    background-color: var(--white);
    padding: 70px 20px;
}

.intro-section p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-mid);
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.intro-section p strong {
    color: var(--green-dark);
}

/* =====================
           SECTION 3 - LITTLE EXPLORERS (LIGHT)
        ===================== */
.camp-section-light {
    background-color: #FFF7F1;
    padding: 80px 20px 0;
    background: url('../images/Section little BG.webp') no-repeat;
    background-size: cover;
    background-position: center;
}

.camp-section-dark {
    background-color: var(--primary-color);
    padding: 80px 20px 0;
    background: url('../images/Section junior BG.webp') no-repeat;
    /* background: url(../../../../uploads/2026/02/Section-3-BG.webp) no-repeat; */
    background-size: cover;
    background-position: center;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    font-weight: 900;
    color: var(--green-dark);
    text-align: center;
    margin-bottom: 0;
}

.section-title .ages {
    font-weight: 400;
}

.section-title-dark {
    color: var(--white);
}

/* Stats bar */

.stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding: 50px 0;
}

.stats-bar-dark {
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-item {
    flex: 1;
    text-align: center;
    position: relative;
}

/* Vertical Divider */
.stat-item:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 24px;
    height: 96px;
    width: 3px;
    background: var(--primary-color); /* Divider Color */
}

.stat-item-dark:not(:first-child)::before {
    background: #fff; /* Divider Color */
}

.stat-item:last-child {
    border-right: none;
}

.stat-item-dark {

}

.stat-icon {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 6px;
    display: block;
}

.stat-icon-dark {
    color: #fff;
}

.stat-label {
    font-family: var(--frank-font);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.stat-label-dark {
    color: #fff;
}

.stat-value {
    font-family: var(--frank-font);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
}

.stat-value-dark {
    color: var(--white);
}

.stat-value-dark.dates {
    line-height: 1.8em;
}

/* Day tabs */
.day-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 36px;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}

.day-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    margin-bottom: 36px;
}

.day-tab {
    font-family: var(--frank-font);
    padding: 10px 36px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #023F30;
    cursor: pointer;
    background: transparent;
    color: var(--text-mid);
    transition: background 0.2s, color 0.2s;
}

.day-tab.active,
.day-tab:hover {
    background: var(--primary-color);
    color: var(--white);
}

.day-tab-dark {
    color: #fff;
    border: 2px solid #fff;
}

.day-tab-dark.active,
.day-tab-dark:hover {
    background: var(--white);
    color: var(--green-dark);
}

/* Destination card */
.destination-card {
    padding: 20px;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
}

.destination-card-dark {

}

.destination-title {
    font-family: var(--frank-font);
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    /* font-size: 2.4rem; */
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.destination-title-dark {
    color: var(--white);
}

.destination-menu {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--primary-color);
    text-align: center;
}

.destination-menu-dark {
    color: rgba(255, 255, 255, 0.8);
}

.destination-menu strong {
    color: var(--text-dark);
}

.destination-menu-dark strong {
    color: var(--white);
}

/* Section bottom spacing */
.section-bottom-pad {
    padding-bottom: 70px;
}

/* =====================
           SECTION 5 - PREPARING & RULES
        ===================== */
.info-section {
    background-color: #fff;
}

.info-section .col-lg-6 {
    padding: 0;
    margin: 0;
}

.info-card.bg {
    background: url('../images/Side Pattern BG.webp') no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 160px;
    height: 100%;
    text-align: left;
}

.info-card {
    background: #fff;
    padding: 60px 160px 60px 60px;
    height: 100%;
    text-align: left;
}

.info-card-title {
    font-family: var(--frank-font);
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 28px;
}

.info-card-title strong {
    font-weight: 900;
    color: var(--green-dark);
}

.camp-text {
    font-size: 1.2rem;
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 1.2rem;
    color: var(--text-mid);
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist-box {
    width: 28px;
    height: 22px;
    border: 2px solid #333;
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Studio Rules */
.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rules-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 1.2rem;
    color: var(--text-mid);
    line-height: 1.4;
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list li strong {
    color: var(--text-dark);
}

.rules-images {
    position: absolute;
    max-width:120px; 
    margin:0;
}

.rules-images.apple {
    left: 0;
}

.rules-images.thumb {
    right: 0;
}

/* =====================
           SECTION 6 - DECOR IMAGE ROW
        ===================== */
.decor-row {
    background-color: var(--cream-dark);
    padding: 24px 0;
    text-align: center;
}

.decor-row img {
    max-height: 80px;
    object-fit: contain;
    margin: 0 16px;
    opacity: 0.7;
}

/* =====================
           WP IMAGE HELPERS
        ===================== */

.wp-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp-img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =====================
           RESPONSIVE
        ===================== */

@media (min-width: 768px) {
    .camp-section-light .container {
        max-width: 880px;
    }
}

@media (min-width: 600px) {

    .lp-hero-decor-left,
    .lp-hero-decor-right {
        display: none;
    }
}

@media (max-width: 1140px) {
    .info-card.bg {
    padding: 60px;
}

    .info-card {
    padding: 60px;
}
}

@media (max-width: 768px) {
    .lp-hero-brand-logo {
        width: 220px;
        height: auto;
        object-fit: contain;
    }

    .lp-hero-decor-left {
        width: 70px;
    }

    .lp-hero-decor-right {
        width: 80px;
    }

    .stats-bar {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        align-items: center;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }

     .stat-item::before {
        display: none;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-item-dark {
        border-color: rgba(255, 255, 255, 0.2);
    }

    .destination-card {
        flex-direction: column;
    }

    .info-card.bg {
    padding: 60px;
}

    .info-card {
    padding: 60px;
}

    .day-tabs {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .info-section {
    margin-top: 40px;
}

    .info-card.bg {
    padding: 60px 30px;
}

    .info-card {
    padding: 60px 30px;
}

.info-card-title {
    font-size: 2.2rem;
}

.camp-text {
    font-size: 1.1rem;
}

.kids-camp .main-heading {
    font-size: 30px;
    }

.rules-list li {
    font-size: 1.1rem;
}

.rules-images {
    max-width: 80px;
}

.day-tab {
    font-size: 1.2rem;
}

.section-bottom-pad {
    padding-bottom: 20px;
}
}