/* Reset & basic */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Hero slider section full viewport */
.hero-slider {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 100vh;
    overflow: hidden;
    margin-bottom: calc(4vh + 60px);
}

/* Container for all slides */
.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Each slide absolute on top of each other */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

/* Active slide visible */
.slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

/* ======== TEXT BOX ======== */
.text-box {
    position: absolute;
    top: 34%;
    width: 100%;
    text-align: center;
    color: white;
    padding: 0 20px;
}

/* H1 putih & tanpa shadow */
.text-box h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: none;
}

.text-box p {
    font-size: 1.5rem;
    color: white;
}

/* Reservation button */
.reservation-btn {
    position: absolute;
    top: 74%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-decoration: none;
}

.reservation-btn .btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    width: 250px;
    padding: 15px 0;
    font-size: 1.2rem;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    text-decoration: none;
    outline: none;
}

.reservation-btn .btn:focus {
    outline: none;
    box-shadow: none;
}

.reservation-btn .btn:hover {
    background-color: #a5cd48;
    color: #fff;
    border-color: #a5cd48;
}

/* ===================== */
/* Tablet */
/* ===================== */
@media (max-width: 991px) {
    .text-box h1 {
        font-size: 2.2rem;
    }

    .text-box p {
        font-size: 1.2rem;
    }

    .reservation-btn .btn {
        width: 200px;
        font-size: 1rem;
        padding: 12px 0;
    }
}

/* ===================== */
/* MOBILE (KHUSUS) */
/* ===================== */
@media (max-width: 576px) {

    /* Tinggi gambar hero di mobile */
    .hero-slider {
        height: 400px;
    }

    .text-box {
        top: 10%;
    }

    .text-box h1 {
        font-size: 1.2rem;
    }

    .text-box p {
        font-size: 0.8rem;
    }

    /* ✅ BUTTON DITURUNKAN BEBERAPA PERSEN (TETAP DI ATAS GAMBAR) */
    .reservation-btn {
        top: 70%;
        /* sebelumnya 55% → sekarang lebih turun */
    }

    .reservation-btn .btn {
        width: 160px;
        font-size: 0.85rem;
        padding: 8px 0;
    }
}