@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');


/* =========================================================
   ROOT
========================================================= */

:root {
    --green: #5e7d61;
    --deep: #28483a;
    --cream: #f7f6f0;
    --soft: #eef3ed;
    --gold: #b79b65;
    --text: #34433b;
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}


/* =========================================================
   NAVBAR
========================================================= */

.kro-nav {
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 5px 25px rgba(40, 72, 58, .08);
    padding: 8px 0;
    transition: .3s;
}

.kro-logo {
    height: 58px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    transform: scale(1.4);
    transform-origin: center;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    color: var(--deep);
    font-size: 18px;
    margin-left: 10px;
}

.nav-link {
    color: var(--deep) !important;
    font-weight: 500;
    margin: 0 6px;
}

.btn-kro {
    background: var(--green);
    color: #fff;
    border: 0;
    border-radius: 30px;
    padding: 12px 25px;
    transition: .3s;
}

    .btn-kro:hover {
        background: var(--deep);
        color: #fff;
        transform: translateY(-2px);
    }


/* =========================================================
   PREMIUM HERO
========================================================= */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: #18261d;
}


/* =========================================================
   HERO SLIDER
========================================================= */

#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

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


/* =========================================================
   CINEMATIC IMAGE ZOOM
========================================================= */

.carousel-item.active .hero-slide-img {
    animation: cinematicZoom 8s ease-out forwards;
}

@keyframes cinematicZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( 90deg, rgba(20, 39, 30, .78) 0%, rgba(20, 39, 30, .58) 40%, rgba(20, 39, 30, .30) 75%, rgba(20, 39, 30, .18) 100% );
}


/* =========================================================
   HERO CONTENT WRAPPER
========================================================= */

.hero-content-wrapper {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px 40px;
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 15px 20px;
    text-align: center;
}

/* =========================================================
   HERO LABEL
========================================================= */

.hero-label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #e4c987;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
}

.hero-line {
    width: 55px;
    height: 1px;
    background: #e4c987;
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-title {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 12px;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.5px;
}




    .hero-title span {
        display: block;
        color: #e5d4a8;
        font-style: italic;
    }



/* =========================================================
   HERO TAGLINE
========================================================= */

.hero-tagline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.3;
}

    .hero-tagline em {
        color: #e4c987;
        font-family: 'Playfair Display', serif;
        font-style: italic;
    }

.tagline-line {
    width: 35px;
    height: 1px;
    background: rgba(255, 255, 255, .6);
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {
    width: 100%;
    max-width: 720px;
    margin: 0 auto 20px;
    padding: 0;
}
    .hero-description p {
        margin: 0;
        color: rgba(255,255,255,.9);
        font-size: 14px;
        line-height: 1.55;
    }


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 45px;
}

.hero-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    padding: 15px 22px;
    color: #17241b;
    background: #e4c987;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: .4s ease;
}

    .hero-primary-btn i {
        font-size: 18px;
        transition: .4s ease;
    }

    .hero-primary-btn:hover {
        color: #17241b;
        transform: translateY(-4px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, .25);
    }

        .hero-primary-btn:hover i {
            transform: translate(4px, -4px);
        }


.hero-secondary-btn {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    transition: .3s;
}

    .hero-secondary-btn:hover {
        color: #e4c987;
        border-color: #e4c987;
    }


/* =========================================================
   SLIDE COUNTER
========================================================= */

.hero-counter {
    position: absolute;
    right: 60px;
    bottom: 80px;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 2px;
}

.current-slide {
    color: #e4c987;
    font-size: 18px;
}

.counter-line {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, .6);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.hero-scroll {
    position: absolute;
    left: 50px;
    bottom: 40px;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, .75);
    font-size: 10px;
    letter-spacing: 3px;
    transform: rotate(-90deg);
    transform-origin: left center;
}

.scroll-line {
    width: 55px;
    height: 1px;
    background: #e4c987;
}


/* =========================================================
   CAROUSEL ARROWS
========================================================= */

.carousel-control-prev,
.carousel-control-next {
    z-index: 7;
    width: 6%;
    opacity: .7;
    transition: .3s;
}

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        opacity: 1;
    }


/* =========================================================
   CAROUSEL INDICATORS
========================================================= */

.carousel-indicators {
    z-index: 7;
    bottom: 30px;
}

    .carousel-indicators button {
        width: 35px;
        height: 2px;
        margin: 0 5px;
        background: #ffffff;
        border: none;
    }


/* =========================================================
   HERO ANIMATIONS
========================================================= */

@keyframes heroReveal {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

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

@keyframes titleReveal {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

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


/* =========================================================
   GENERAL TYPOGRAPHY
========================================================= */

.eyebrow,
.section-kicker {
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
}

    .section-kicker.light {
        color: #e7d8b4;
    }

h2 {
    font-family: 'Playfair Display', serif;
    color: var(--deep);
    font-size: clamp(34px, 4vw, 52px);
    margin: 12px 0 20px;
}

h4 {
    font-family: 'Playfair Display', serif;
    color: var(--deep);
}


/* =========================================================
   SECTIONS
========================================================= */

.section-pad {
    padding: 100px 0;
}

.soft-section {
    background: var(--cream);
}

.section-head {
    max-width: 750px;
    margin: auto;
}

    .section-head p {
        line-height: 1.8;
    }


/* =========================================================
   IMAGES
========================================================= */

.image-frame {
    padding: 14px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(40, 72, 58, .12);
}

    .image-frame img,
    .rounded-image {
        width: 100%;
        height: 520px;
        object-fit: cover;
        border-radius: 2px;
    }


/* =========================================================
   QUOTE
========================================================= */

.quote-box {
    border-left: 3px solid var(--gold);
    padding: 15px 20px;
    background: var(--cream);
    font-style: italic;
    margin-top: 25px;
}


/* =========================================================
   CARDS
========================================================= */

.feature-card,
.amenity-card,
.info-card,
.large-card,
.contact-card {
    background: #fff;
    border: 1px solid rgba(94, 125, 97, .12);
    box-shadow: 0 15px 45px rgba(40, 72, 58, .07);
    height: 100%;
    transition: .4s;
}

    .feature-card:hover,
    .amenity-card:hover,
    .info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 55px rgba(40, 72, 58, .15);
    }


/* =========================================================
   FEATURE CARD
========================================================= */

.card-image {
    height: 230px;
    overflow: hidden;
}

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s;
    }

.feature-card:hover img {
    transform: scale(1.08);
}

.feature-card {
    padding-bottom: 28px;
}

    .feature-card > i,
    .amenity-card > i,
    .info-card > i {
        font-size: 32px;
        color: var(--green);
        margin: 25px 25px 8px;
    }

    .feature-card h4,
    .feature-card p,
    .amenity-card h4,
    .amenity-card p,
    .info-card h4,
    .info-card p {
        margin-left: 25px;
        margin-right: 25px;
    }


/* =========================================================
   AMENITY
========================================================= */

.amenity-card {
    padding: 25px;
}


/* =========================================================
   LOCATION ROUTE
========================================================= */

.route-list div {
    padding: 13px 0;
    border-bottom: 1px solid #e5e8e2;
}

.route-list b {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--soft);
    color: var(--green);
    margin-right: 12px;
}


/* =========================================================
   INFO CARD
========================================================= */

.info-card {
    padding: 25px;
}


/* =========================================================
   MINI GRID
========================================================= */

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

    .mini-grid span {
        padding: 16px;
        background: #fff;
        border-radius: 10px;
    }

    .mini-grid i {
        color: var(--green);
        margin-right: 8px;
    }


/* =========================================================
   CLUBHOUSE
========================================================= */

.clubhouse-section {
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.club-overlay {
    position: absolute;
    inset: 0;
    background: rgba(24, 52, 39, .76);
}

.clubhouse-section h2 {
    color: #fff;
}

.clubhouse-section p {
    line-height: 1.8;
}


/* =========================================================
   INVESTMENT
========================================================= */

.investment-points > div {
    display: flex;
    gap: 18px;
    margin: 25px 0;
}

.investment-points i {
    font-size: 30px;
    color: var(--green);
}


/* =========================================================
   LARGE CARDS
========================================================= */

.large-card {
    overflow: hidden;
}

    .large-card img {
        width: 100%;
        height: 360px;
        object-fit: cover;
        transition: .6s;
    }

    .large-card:hover img {
        transform: scale(1.04);
    }

    .large-card div {
        padding: 25px;
    }


/* =========================================================
   GALLERY
========================================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 5px;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background: var(--soft);
}

.contact-card {
    padding: 35px;
    border-radius: 10px;
}

.form-control {
    border: 1px solid #dce4dc;
    padding: 13px;
    border-radius: 8px;
}


/* =========================================================
   FOOTER
========================================================= */

.kro-footer {
    background: var(--deep);
    color: #dce7df;
}

    .kro-footer h3,
    .kro-footer h6 {
        color: #fff;
        font-family: 'Playfair Display', serif;
    }

    .kro-footer a {
        display: block;
        color: #dce7df;
        text-decoration: none;
        margin: 8px 0;
    }

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 18px;
}


/* =========================================================
   FLOATING ENQUIRY
========================================================= */

.floating-enquiry {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal-left {
    transform: translateX(-55px);
}

.reveal-right {
    transform: translateX(55px);
}

    .reveal.active,
    .reveal-left.active,
    .reveal-right.active {
        opacity: 1;
        transform: none;
    }

.delay-1 {
    transition-delay: .12s;
}

.delay-2 {
    transition-delay: .24s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .brand-name {
        display: none;
    }

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

    .hero-content {
        max-width: 900px;
    }

    .section-pad {
        padding: 75px 0;
    }

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

    .image-frame img,
    .rounded-image {
        height: 420px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .hero-section {
        min-height: 90vh;
    }

    .hero-content-wrapper {
        padding: 80px 15px 50px;
    }

    .hero-content {
        padding: 20px 10px;
    }

    .hero-label {
        font-size: 10px;
        letter-spacing: 2px;
        gap: 8px;
    }

    .hero-line {
        width: 25px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 1.12;
        letter-spacing: -.5px;
    }

        .hero-title span {
            display: block;
        }

    .hero-tagline {
        font-size: 17px;
        flex-wrap: wrap;
        line-height: 1.5;
    }

    .hero-description {
        max-width: 100%;
    }

        .hero-description p {
            font-size: 14px;
            line-height: 1.7;
        }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-counter {
        right: 25px;
        bottom: 80px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 280px;
    }

    .mini-grid {
        grid-template-columns: 1fr;
    }

    .image-frame img,
    .rounded-image {
        height: 350px;
    }
}
