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

body { 
    font-family: 'Roboto', sans-serif; 
    line-height: 1.6; 
    color: #333; 
    background: #f9f9f9;
    padding-top: 70px; /* space for fixed navbar */
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.btn { 
    display: inline-block; 
    padding: 15px 35px; 
    background: #e67e22; 
    color: white; 
    text-decoration: none; 
    border-radius: 50px; 
    font-weight: bold; 
    transition: 0.3s; 
    font-size: 1.1rem; /* better for touch */
}

.btn:hover { 
    background: #d35400; 
    transform: translateY(-3px); 
}

.btn-primary { background: #27ae60; }
.btn-primary:hover { background: #1e8449; }


/* ======================================
   NAVIGATION
====================================== */

.navbar { 
    background: rgba(0,0,0,0.7); 
    padding: 1rem 0; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000;
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo { 
    font-size: 1.6rem; 
    font-weight: 700; 
    color: white; 
}

.logo span { color: #e67e22; }

.nav-menu { 
    list-style: none; 
    display: none; /* hidden by default on mobile */
    position: fixed; 
    top: 70px; 
    left: 0; 
    width: 100%; 
    flex-direction: column; 
    background: rgba(0,0,0,0.95); 
    text-align: center; 
    padding: 2rem 0; 
}

.nav-menu a { 
    color: white; 
    text-decoration: none; 
    font-weight: 500; 
    font-size: 1.2rem; 
    padding: 1rem 0; 
    display: block;
}

.nav-menu.active { display: flex; }

.hamburger { 
    display: block; 
    color: white; 
    font-size: 2rem; 
    cursor: pointer; 
}

/* LANGUAGE TOGGLE – ALWAYS ON TOP */
.lang-toggle {
    position: fixed !important;     /* forces fixed positioning */
    top: 12px !important;          /* a little higher than before */
    right: 12px !important;
    z-index: 99999 !important;      /* ridiculously high – beats everything */
    background: rgba(0,0,0,0.35) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 50px !important;
    padding: 8px 15px !important;
    font-weight: bold !important;
    font-size: 14px !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    user-select: none !important;
    pointer-events: auto !important;
}

.lang-toggle span {
    margin: 0 6px;
    cursor: pointer;
}

.lang-toggle .active {
    color: #e67e22;
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 480px) {
    .lang-toggle {
        top: 8px !important;
        right: 8px !important;
        padding: 6px 10px !important;
        font-size: 13px !important;
    }
}


/* ======================================
   HEADER / HERO
====================================== */
.hero { 
    height: 85vh; 
    background-size: cover; 
    background-position: center; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: white; 
    position: relative; 
}

.hero::before { 
    content: ''; 
    position: absolute; 
    top: 0; left: 0; right: 0; bottom: 0; 
    background: rgba(0,0,0,0.5); 
    z-index: 1; 
}

.hero-content { 
    position: relative; 
    z-index: 2; 
    padding: 0 20px;
}

.hero h1 { 
    font-size: 2rem; 
    margin-bottom: 1rem; 
}

.subtitle { 
    font-size: 1rem; 
    margin-bottom: 2rem; 
}


/* ======================================
   SECTIONS
====================================== */
section { padding: 60px 0; }

h2 { 
    text-align: center; 
    font-size: 2rem; 
    margin-bottom: 2.5rem; 
    color: #2c3e50; 
}


/* ======================================
   ROOMS
====================================== */
.rooms-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 1.5rem; 
}

.room-card { 
    background: white; 
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    transition: 0.3s; 
}

.room-card:hover { transform: translateY(-7px); }

.room-card img { 
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
}

.room-card h3 { 
    padding: 1rem; 
    font-size: 1.4rem; 
    color: #2c3e50; 
}

.room-card p { 
    padding: 0 1rem 1rem; 
    color: #666; 
}

.price { 
    padding: 0 1rem 1rem; 
    font-size: 1.2rem; 
    font-weight: bold; 
    color: #e67e22; 
}

.room-card .btn { 
    margin: 0 1rem 1rem; 
    display: block; 
}


/* ======================================
   GALLERY
====================================== */
.gallery-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 1rem; 
}

.gallery-item { 
    overflow: hidden; 
    border-radius: 15px; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.1); 
    transition: all 0.4s ease; 
    cursor: pointer; 
}

.gallery-item img { 
    width: 100%; 
    height: 180px; 
    object-fit: cover; 
    transition: transform 0.4s ease; 
}

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


/* ======================================
   MAP
====================================== */
.map-container { 
    margin: 1.5rem 0; 
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
}


/* ======================================
   CONTACT
====================================== */
.contact p { 
    font-size: 1.1rem; 
    margin: 0.8rem 0; 
}

.contact a { color: #27ae60; }
.contact a:hover { text-decoration: underline; }


/* ======================================
   FOOTER
====================================== */
footer { 
    background: #2c3e50; 
    color: white; 
    text-align: center; 
    padding: 2rem 0; 
    margin-top: 3rem; 
}


/* ======================================
   DESKTOP / LARGE SCREENS
====================================== */
@media (min-width: 768px) {

    .hero h1 { font-size: 3rem; }
    .subtitle { font-size: 1.3rem; }

    .nav-menu { 
        position: static; 
        display: flex; 
        flex-direction: row; 
        background: none; 
        padding: 0; 
    }

    .nav-menu a { 
        padding: 0; 
        font-size: 1rem;
    }

    .hamburger { display: none; }

    .rooms-grid { 
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    }

    .gallery-grid { 
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    }

}
/* Fix Lightbox on mobile */
.gallery-item {
    overflow: visible !important;
}

.lightboxOverlay,
.lightbox {
    z-index: 99999 !important;
}
/* Space between nav items */
.nav-menu li {
    margin: 0 12px; /* Adjust this value to increase/decrease spacing */
}
.nav-menu li:first-child { margin-left: 0; }
.nav-menu li:last-child { margin-right: 0; }

/* Optional: better hover effect */
.nav-menu a {
    transition: color 0.2s ease;
}
.nav-menu a:hover {
    color: #e67e22;
}

