* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background: #111;
}

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

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    align-items: center;

    padding: 35px 6%;

    z-index: 10;
}

.navbar .logo {
    margin-right: auto;

    color: white;
    text-decoration: none;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;

    transition: opacity 0.3s ease;
}

.navbar nav a:hover {
    opacity: 0.65;
}

.contact-btn {
    margin-left: 45px;

    color: white;
    text-decoration: none;
}


.location-text {
    margin-top: -10px;
    margin-bottom: 25px;

    font-size: 11px;
    letter-spacing: 1.5px;

    opacity: 0.55;
}


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

.hero {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 600px;

    display: flex;
    align-items: center;

    padding: 120px 6% 60px;

    overflow: hidden;

    background:
        url("./images/desktop.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* HERO VIDEO */

.hero-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 0;
}


/* HERO DARK OVERLAY */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.25)
        );

    z-index: 1;
}


/* HERO CONTENT */

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 650px;
}

.eyebrow {
    font-size: 13px;
    letter-spacing: 4px;

    margin-bottom: 25px;

    opacity: 0.85;
}

h1 {
    font-size: clamp(60px, 8vw, 110px);
    line-height: 0.95;
    letter-spacing: -5px;
    margin-bottom: 30px;
    color: white;
}

.description {
    max-width: 480px;

    font-size: 18px;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.85);

    margin-bottom: 35px;
}


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

.hero-buttons {

    display: flex;

    gap: 15px;

}

.primary-btn,
.secondary-btn {

    display: inline-block;

    padding: 14px 25px;

    border-radius: 30px;

    text-decoration: none;

    font-size: 14px;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.primary-btn {

    background: white;

    color: #111;
}

.primary-btn:hover {

    background: #ffffff;
}

.secondary-btn {

    color: #24231f;

    background:  #ffffff;

    border: 1px solid #f1eadc;
}

.secondary-btn:hover {

    background: #e5ddcf;
}

/* =========================
   DISCOVER JAWAI
   ========================= */

.discover {
    min-height: 100vh;

    background: #f3efe7;
    color: #222;

    display: flex;
    align-items: center;

    padding: 100px 6%;
}

.discover-content {
    width: 100%;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 8%;

    align-items: center;
}

.discover-text {
    max-width: 500px;
}

.section-label {
    font-size: 12px;
    letter-spacing: 4px;

    margin-bottom: 25px;

    opacity: 0.6;
}

.discover h2 {
    font-size: clamp(48px, 6vw, 82px);

    line-height: 0.95;
    letter-spacing: -4px;

    font-weight: 500;

    margin-bottom: 30px;
}

.discover-text > p:not(.section-label) {
    font-size: 17px;
    line-height: 1.7;

    color: #555;

    margin-bottom: 30px;
}

.text-link {
    color: #222;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    border-bottom: 1px solid #222;

    padding-bottom: 5px;
}

.discover-image {
    width: 100%;
    height: 65vh;

    overflow: hidden;
}

.discover-image picture,
.discover-image img {
    width: 100%;
    height: 100%;

    display: block;
}

.discover-image img {
    object-fit: cover;
    object-position: center;
}


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

@media (max-width: 768px) {

    .discover {
        min-height: auto;

        padding: 80px 5%;
    }

    .discover-content {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .discover h2 {
        font-size: clamp(48px, 14vw, 72px);
        letter-spacing: -3px;
    }

    .discover-text > p:not(.section-label) {
        font-size: 16px;
        line-height: 1.6;
    }

    .discover-image {
        height: 45vh;
    }

    .discover-image img {
        object-fit: cover;
        object-position: center;
    }
}
/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {

    .navbar {
        padding: 22px 5%;
    }

    nav {
        display: none;
    }

    .logo {
        font-size: 25px;
    }

    .contact-btn {
        padding: 9px 16px;
    }


    /* MOBILE HERO */

    .hero {
        height: 100vh;
        min-height: 600px;

        padding: 110px 5% 40px;

        background:
            linear-gradient(
                rgba(0, 0, 0, 0.45),
                rgba(0, 0, 0, 0.45)
            ),
            url("./images/mobile.png");

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    

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

    .eyebrow {
        font-size: 11px;
        letter-spacing: 3px;

        margin-bottom: 20px;
    }

    h1 {
        font-size: clamp(52px, 15vw, 80px);

        letter-spacing: -3px;

        margin-bottom: 25px;
    }

    .description {
        font-size: 16px;
        line-height: 1.5;

        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .primary-btn,
    .secondary-btn {
        padding: 13px 22px;
    }


    /* MOBILE DISCOVER */

    .discover {
        padding: 80px 5%;
    }

    .discover-content {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .discover h2 {
        letter-spacing: -3px;
    }

    .discover-text > p:not(.section-label) {
        font-size: 16px;
    }

    .discover-image {
        height: 55vh;
    }
}
/* =========================
   WILDLIFE SECTION
   ========================= */
/* =========================
   LIFE IN JAWAI
   ========================= */

.wildlife {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 100px 6%;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.25)
        ),
        url("./images/discover.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wildlife-content {
    max-width: 600px;
    color: white;
}

.wildlife .section-label {
    color: white;
    opacity: 0.8;
}

.wildlife h2 {
    font-size: clamp(55px, 8vw, 110px);

    line-height: 0.9;
    letter-spacing: -5px;

    margin-bottom: 35px;
}

.wildlife p:last-child {
    max-width: 450px;

    font-size: 18px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.85);
}


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

@media (max-width: 768px) {

    .wildlife {
        min-height: 85vh;

        padding: 80px 5%;

        background-image:
            linear-gradient(
                rgba(0, 0, 0, 0.45),
                rgba(0, 0, 0, 0.45)
            ),
            url("./images/discover_mobile.png");

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .wildlife h2 {
        font-size: clamp(52px, 14vw, 80px);
        letter-spacing: -3px;
    }

    .wildlife p:last-child {
        font-size: 16px;
    }
}

/* MOBILE */

@media (max-width: 768px) {

    .wildlife {
        min-height: 85vh;
        padding: 80px 5%;

        background-position: center;
    }

    .wildlife h2 {
        font-size: clamp(52px, 14vw, 80px);
        letter-spacing: -3px;
    }

    .wildlife p:last-child {
        font-size: 16px;
    }
}

/* =========================
   WHATSAPP BUTTON
   ========================= */

.whatsapp-btn {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 100;

    padding: 13px 20px;

    border: none;
    border-radius: 30px;

    background: #25D366;
    color: white;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


/* =========================
   WHATSAPP MODAL
   ========================= */

.whatsapp-modal {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.55);
}

.whatsapp-modal.active {
    display: flex;
}

.whatsapp-box {
    position: relative;

    width: min(90%, 400px);

    padding: 45px 35px;

    background: #f4f0e7;

    text-align: center;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.whatsapp-label {
    font-size: 10px;

    letter-spacing: 3px;

    opacity: 0.55;

    margin-bottom: 15px;
}

.whatsapp-box h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 38px;

    font-weight: 400;

    margin-bottom: 30px;
}

.whatsapp-option {
    display: block;

    padding: 15px 20px;

    margin-top: 12px;

    background: #20201d;
    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    letter-spacing: 1px;

    transition: 0.3s ease;
}

.whatsapp-option:hover {
    transform: translateY(-2px);
}

.whatsapp-close {
    position: absolute;

    top: 12px;
    right: 15px;

    border: none;

    background: none;

    font-size: 28px;

    cursor: pointer;

    color: #20201d;
}


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

@media (max-width: 768px) {

    .whatsapp-btn {
        right: 18px;
        bottom: 18px;

        padding: 12px 17px;

        font-size: 13px;
    }

    .whatsapp-box {
        width: 90%;

        padding: 40px 25px;
    }

    .whatsapp-box h2 {
        font-size: 32px;
    }
}


.khamma-ghani-logo {
    width: 130px;
    height: auto;
    display: block;
    margin-bottom: 18px;
}

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

@media (max-width: 768px) {

    .navbar {
        padding: 22px 25px;

        flex-wrap: wrap;
        row-gap: 18px;
    }

    .navbar .logo {
        margin-right: 0;

        font-size: 24px;
        white-space: nowrap;
    }

    .navbar nav {
        width: 100%;

        display: flex;
        justify-content: space-between;

        gap: 10px;
    }

    .navbar nav a {
        font-size: 13px;
        white-space: nowrap;
    }

    .contact-btn {
        display: none;
    }

}