/* =====================
   RESET
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* =====================
   BODY
===================== */
body {
    background: #ffffff;
    color: #333;
}

/* =====================
   NAVIGATION
===================== */
nav {
    background: #000;
    color: #fff;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    font-size: 26px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* HAMBURGER BUTTON (HIDDEN ON DESKTOP) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

/* =====================
   HERO
===================== */
.hero {
    background: linear-gradient(to right, #26e0b7, #d867c9);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 36px;
}

.hero p {
    margin-top: 10px;
    font-size: 18px;
}

/* =====================
   SECTIONS
===================== */
section {
    padding: 60px 40px;
    text-align: center;
}

.light {
    background: #f8f3fa;
}

/* =====================
   CARDS (FACILITIES)
===================== */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-size: 18px;
}

/* =====================
   CONTACT
===================== */
.contact-box {
    margin-bottom: 30px;
    font-size: 16px;
}

form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

button {
    background: #145b56;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 20px;
    cursor: pointer;
}

/* =====================
   FOOTER
===================== */
footer {
    background: #e5aceb;
    color: #fff;
    text-align: center;
    padding: 15px;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* =====================
   GALLERY
===================== */
.gallery-section {
    padding: 80px 40px;
    text-align: center;
    background: #faf7fc;
}

.gallery {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 22px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery img:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

/* =====================
   ROOMS LIST (NO DOTS)
===================== */
#rooms-desc {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* =====================
   LIGHTBOX
===================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox.show {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =====================
   MOBILE RESPONSIVE
===================== */
@media (max-width: 768px) {

    /* NAV */
    nav {
        flex-direction: column;
        padding: 15px 20px;
        gap: 10px;
    }

    nav h1 {
        font-size: 32px;
        text-align: center;
        width: 100%;
    }

    /* HIDE MENU LINKS */
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #000;
        border-radius: 12px;
        padding: 10px 0;
        text-align: center;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        padding: 10px 0;
    }

    /* SHOW HAMBURGER */
    .menu-toggle {
        display: block;
    }

    /* HERO */
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero h2 {
        font-size: 26px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.6;
    }

    /* SECTIONS */
    section {
        padding: 40px 20px;
    }

    /* CARDS */
    .cards {
        grid-template-columns: 1fr;
    }

    .card {
        font-size: 16px;
        padding: 20px;
    }

    /* ROOMS */
    #rooms-desc li {
        font-size: 16px;
        margin-bottom: 12px;
        text-align: left;
    }

    /* FORM */
    form {
        width: 100%;
        padding: 0 10px;
    }

    button {
        width: 100%;
        font-size: 16px;
    }

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

    .gallery img {
        height: 220px;
    }
}

