/* =========================================================
   Excursion PAGE
========================================================= */

.ka-hero {
    min-height: 78vh;
    position: relative;
    display: flex;
    align-items: center;
    background:
        url("../images/img6.webp")
        center center / cover no-repeat;
    overflow: hidden;
}

.ka-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(8, 45, 46, .92) 0%,
            rgba(8, 45, 46, .70) 42%,
            rgba(8, 45, 46, .25) 75%,
            rgba(8, 45, 46, .10) 100%
        );
}

.ka-hero-content {
    position: relative;
    z-index: 2;
    width: min(1250px, 90%);
    margin: auto;
    color: #fff;
    padding: 100px 0;
}

.ka-eyebrow {
    display: inline-block;
    color: #C9A24D;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.ka-eyebrow.dark {
    color: #0F3D3E;
}

.ka-hero-content h1 {
    max-width: 760px;
    font-size: clamp(44px, 6vw, 82px);
    line-height: 1.03;
    margin: 0 0 25px;
    font-weight: 600;
}

.ka-hero-content p {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,.88);
    margin-bottom: 32px;
}

.ka-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ka-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: .3s ease;
}

.ka-btn-gold {
    background: #C9A24D;
    color: #0C2F30;
}

.ka-btn-gold:hover {
    background: #B08C3A;
    transform: translateY(-2px);
}

.ka-btn-outline {
    border: 1px solid rgba(255,255,255,.8);
    color: #fff;
}

.ka-btn-outline:hover {
    background: #fff;
    color: #0C2F30;
}


/* =========================================================
   INTRO
========================================================= */

.ka-intro {
    padding: 100px 20px;
    background: #F5F1E8;
    text-align: center;
}

.ka-intro-inner {
    max-width: 850px;
    margin: auto;
}

.ka-intro h2 {
    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.15;
    color: #0F3D3E;
    margin: 0 0 22px;
}

.ka-intro p {
    max-width: 700px;
    margin: auto;
    color: #5F6F73;
    line-height: 1.8;
    font-size: 16px;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.ka-section {
    padding: 110px 5%;
}

.ka-section-heading {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.ka-section-heading h2 {
    color: #0F3D3E;
    font-size: clamp(35px, 4vw, 58px);
    line-height: 1.12;
    margin: 0 0 20px;
}

.ka-section-heading p {
    color: #647477;
    line-height: 1.8;
    max-width: 680px;
    margin: auto;
}


/* =========================================================
   KIDS SECTION
========================================================= */

.ka-kids-section {
    background: #fff;
}

.ka-feature-grid {
    max-width: 1400px;
    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}

.ka-feature-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    background: #0F3D3E;
    color: #fff;
}

.ka-feature-card.ka-large-card {
    grid-column: span 2;
}

.ka-feature-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease;
}

.ka-feature-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.88),
            rgba(0,0,0,.25) 60%,
            rgba(0,0,0,.05)
        );
}

.ka-feature-card:hover img {
    transform: scale(1.08);
}

.ka-card-content {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 25px;

    z-index: 2;
}

.ka-card-content > span {
    color: #C9A24D;
    font-size: 12px;
    font-weight: 700;
}

.ka-card-content h3 {
    margin: 8px 0 8px;

    font-size: 27px;
}

.ka-card-content p {
    max-width: 520px;

    color: rgba(255,255,255,.8);

    font-size: 14px;
    line-height: 1.6;

    margin-bottom: 15px;
}

.ka-card-content a {
    color: #C9A24D;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.ka-card-content a i {
    margin-left: 6px;
    transition: .3s;
}

.ka-card-content a:hover i {
    transform: translateX(5px);
}


/* =========================================================
   ACTIVITIES
========================================================= */

.ka-activities-section {
    background: #0C2F30;
}

.ka-activities-section
.ka-section-heading h2 {
    color: #fff;
}

.ka-activities-section
.ka-section-heading p {
    color: rgba(255,255,255,.68);
}

.ka-activity-grid {
    max-width: 1400px;
    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.ka-activity-card {
    background: #fff;
    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.ka-activity-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.25);
}

.ka-activity-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.ka-activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform .6s ease;
}

.ka-activity-card:hover
.ka-activity-image img {
    transform: scale(1.08);
}

.ka-activity-image span {
    position: absolute;
    top: 15px;
    left: 15px;

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #C9A24D;
    color: #0C2F30;

    font-size: 11px;
    font-weight: 700;
}

.ka-activity-content {
    padding: 25px;
}

.ka-activity-content h3 {
    color: #0F3D3E;
    margin: 0 0 10px;

    font-size: 21px;
}

.ka-activity-content p {
    color: #687477;

    font-size: 14px;
    line-height: 1.7;

    margin: 0 0 14px;
}

.ka-activity-content a {
    color: #B08C3A;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}


/* =========================================================
   CTA
========================================================= */

.ka-cta-section {
    min-height: 520px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        url("../images/img7.webp")
        center / cover no-repeat;
}

.ka-cta-overlay {
    position: absolute;
    inset: 0;

    background:
    rgb(138 150 151 / 72%);
}

.ka-cta-content {
    position: relative;
    z-index: 2;

    max-width: 750px;

    padding: 80px 20px;

    color: #fff;
}

.ka-cta-content h2 {
    font-size: clamp(38px, 5vw, 65px);

    line-height: 1.1;

    margin: 0 0 20px;
}

.ka-cta-content p {
    font-size: 16px;
    line-height: 1.8;

    color: rgba(255,255,255,.82);

    margin-bottom: 30px;
}

.ka-cta-content > div {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .ka-feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .ka-feature-card.ka-large-card {
        grid-column: span 2;
    }

    .ka-activity-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


@media (max-width: 900px) {

    .ka-hero {
        min-height: 650px;
    }

    .ka-feature-grid {
        grid-template-columns: 1fr;
    }

    .ka-feature-card.ka-large-card {
        grid-column: auto;
    }

    .ka-activity-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .ka-hero {
        min-height: 650px;

        background-position:
            60% center;
    }

    .ka-hero-content {
        width: 90%;
        padding: 70px 0;
    }

    .ka-hero-content h1 {
        font-size: 43px;
    }

    .ka-hero-content p {
        font-size: 15px;
    }

    .ka-section {
        padding: 75px 20px;
    }

    .ka-intro {
        padding: 75px 20px;
    }

    .ka-feature-card {
        min-height: 360px;
    }

    .ka-activity-grid {
        grid-template-columns: 1fr;
    }

    .ka-activity-image {
        height: 240px;
    }

    .ka-cta-section {
        min-height: 580px;
    }

}