/* ===============================
   GLOBAL RESET
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    color: #333;
    line-height: 1.7;
    background: #fff;
}

/* ===============================
   NAVBAR
================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 100;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.navbar ul {
    display: flex;
    gap: 28px;
    list-style: none;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.navbar a:hover {
    color: #d1ae63;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}

/* ===============================
   HERO SLIDER
================================ */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Dark overlay for text readability */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero img.active {
    opacity: 1;
}

/* Hero text */
.hero-overlay {
    position: absolute;
    bottom: 35%;
    left: 8%;
    max-width: 520px;
    color: #ffffff;
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.85);
}

.hero-overlay p {
    font-size: 18px;
    margin-top: 12px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.85);
    margin-bottom: 12px;
}

/* Hero button slightly below text */
.hero-btn {
    margin-top: 40px;
    /* reduced to be just below text */
    padding: 14px 32px;
    border-radius: 50px;
    background: #d1ae63;
    border: none;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-btn:hover {
    background: #c19b4a;
}

/* ===============================
   ABOUT SECTION
================================ */
.about {
    padding: 110px 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.about h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

/* ===============================
   ROOMS
================================ */
.rooms {
    padding: 90px 20px;
}

.rooms h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 32px;
}

.room-row {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 70px;
}

.room-row.reverse {
    flex-direction: row-reverse;
}

.room-row img {
    width: 50%;
    height: 360px;
    object-fit: cover;
    border-radius: 6px;
}

.room-text {
    width: 50%;
}

.room-text h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

/* ===============================
   AMENITIES
================================ */
.amenities {
    background: #f6f6f6;
    padding: 90px 20px;
    text-align: center;
}

.amenities h2 {
    font-size: 32px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.amenities-grid div {
    padding: 22px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    font-weight: 500;
}

/* ===============================
   EXPLORE SECTION
================================ */
.explore {
    padding: 90px 20px;
    text-align: center;
}

.explore img {
    margin-top: 35px;
    width: 90%;
    max-width: 900px;
    border-radius: 6px;
}

/* ===============================
   CONTACT
================================ */
.contact {
    background: #111;
    color: #ffffff;
    text-align: center;
    padding: 70px 20px;
}

.contact p {
    margin-top: 10px;
}

/* ===============================
   FOOTER
================================ */
.footer {
    background: #000;
    color: #ffffff;
    text-align: center;
    padding: 16px;
    font-size: 14px;
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width:768px) {

    .navbar {
        padding: 15px 25px;
    }

    .navbar ul {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        padding: 25px;
    }

    .navbar ul.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-overlay {
        left: 5%;
        right: 5%;
        bottom: 25%;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .room-row,
    .room-row.reverse {
        flex-direction: column;
    }

    .room-row img,
    .room-text {
        width: 100%;
    }

    .room-row img {
        height: 260px;
    }
}

/* ===============================
   BOOKING FORM
================================ */
.booking {
    padding: 90px 20px;
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.booking h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.booking p {
    margin-bottom: 40px;
    color: #555;
}

#bookingForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.form-row {
    display: flex;
    flex-direction: column;
}

.form-row label {
    margin-bottom: 6px;
    font-weight: 500;
}

.form-row input,
.form-row select {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.form-row input:focus,
.form-row select:focus {
    border-color: #d1ae63;
    box-shadow: 0 0 6px rgba(209, 174, 99, 0.4);
}

.booking .hero-btn {
    width: 100%;
    padding: 14px;
    background: #d1ae63;
    color: #000;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.booking .hero-btn:hover {
    background: #c19b4a;
}

/* Responsive */
@media(max-width:768px) {
    .booking {
        padding: 60px 15px;
    }
}

/* ===============================
   TOAST NOTIFICATION
================================ */
.toast {
    visibility: hidden;
    min-width: 300px;
    max-width: 90%;
    margin-left: -150px;
    background-color: #d1ae63;
    color: #000;
    text-align: center;
    border-radius: 6px;
    padding: 16px;
    position: fixed;
    z-index: 999;
    left: 50%;
    bottom: 40px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
}

.toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 80px;
}