* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cormorant Garamond', serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    background: #1f3d2b;
    color: white;
    padding: 12px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header {
    position: sticky;
    top: 0;
    z-index: 999;
}

header nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

/* Header logo */
header .logo {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Header navigation */
header nav a {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    header .logo {
        font-size: 24px;
    }

    header nav a {
        font-size: 16px;
        margin-left: 12px;
    }
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 28px;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
    z-index: 1000;
}

/* Reel Hero */
.reel-hero {
    min-height: 100vh;
    background-color: #000;
    position: relative;
}

.reel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: reel 15s infinite;
}

.slide1 { background-image: url("image/RH1.webp"); animation-delay: 0s; }
.slide2 { background-image: url("image/RH2.webp"); animation-delay: 5s; }
.slide3 { background-image: url("image/RH3.webp"); animation-delay: 10s; }

@keyframes reel {
    0% { opacity: 0; transform: scale(1.1); }
    10% { opacity: 1; transform: scale(1); }
    30% { opacity: 1; }
    40% { opacity: 0; }
    100% { opacity: 0; }
}

.reel-text {
    position: absolute;
    bottom: 20%;
    left: 8%;
    color: white;
}
.reel-text p {
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}
@media (max-width: 768px) {
    .reel-text p {
        font-size: 18px;
    }
}

/* Sections */
.section {
    padding: 60px 8%;
}

.section.light {
    background: #f5f5f5;
}

/* Amenities */
.amenities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 15px;
}

.amenities div {
    background: white;
    padding: 15px;
    border-radius: 6px;
}

/* Rooms */
.room-block {
    margin-bottom: 50px;
}

.room-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* Slides */
.room-slides {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.room-slides::-webkit-scrollbar {
    display: none;
}

.room-slides img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    cursor: pointer;
    flex-shrink: 0;
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    font-size: 28px;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.arrow.left {
    left: 10px;
}

.arrow.right {
    right: 10px;
}

.arrow:hover {
    background: rgba(0,0,0,0.8);
}

/* Hide arrows on small screens (swipe instead) */
@media (max-width: 768px) {
    .arrow {
        display: none;
    }
}


/* Booking */
.booking-form {
    max-width: 600px;
    margin: auto;
}

.booking-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
    text-align: left;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .date-group {
        display: inline-block;
        width: 48%;
    }

    .date-group:first-child {
        margin-right: 4%;
    }
}
.booking-form button {
    width: 100%;
    padding: 16px;
    background: #1f3d2b;
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 6px;
}
/* Fix for date inputs specifically */
.booking-form input[type="date"] {
    appearance: auto;
    -webkit-appearance: auto;
    background-color: #fff;
}


/* Map */
.map iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* Footer */
footer {
    background: #1f3d2b;
    color: white;
    text-align: center;
    padding: 15px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.lightbox span {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
/* Contact Section Social Icons */
.contact-section {
    text-align: center;
}

.get-in-touch {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: normal;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.social-icons a {
    width: 55px;
    height: 55px;
    background: #8b5e3c; /* warm brown like screenshot */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-icons a:hover {
    background: #1f3d2b;
    transform: scale(1.1);
}

/* Center headings & text for main sections */
#about,
#amenities,
#rooms,
#gallery,
#booking {
    text-align: center;
}

/* Center paragraphs with clean margins */
#about p,
#amenities p,
#rooms p,
#gallery p,
#booking p {
    max-width: 850px;
    margin: 15px auto;
}

body {
    font-weight: 18px;
    line-height: 1.8;
}

/* Royal Himalayan Headings */
h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#about h2,
#amenities h2,
#rooms h2,
#gallery h2,
#booking h2,
#contact h2 {
    text-transform: uppercase;
    font-size: 40px;
}
p {
    font-size: 18px;
    line-height: 1.8;
}
@media (max-width: 768px) {
    p {
        font-size: 16px;
    }
}

/* Gallery Filters */
.gallery-filters {
    text-align: center;
    margin: 30px 0;
}

.gallery-filters button {
    background: transparent;
    border: 1px solid #3a2a1a;
    padding: 8px 18px;
    margin: 5px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.gallery-filters button.active,
.gallery-filters button:hover {
    background: #3a2a1a;
    color: white;
}

/* Masonry Layout */
.gallery-grid.masonry {
    column-count: 4;
    column-gap: 15px;
}

.gallery-grid img,
.video-item {
    width: 100%;
    margin-bottom: 15px;
    break-inside: avoid;
}

.gallery-grid img {
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Videos */

.video-item {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    break-inside: avoid;
}

.video-item video {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

/* Hidden Items */
.gallery-grid .hidden {
    display: none;
}

/* View More */
.view-more {
    text-align: center;
    margin-top: 30px;
}

.view-more button {
    padding: 12px 30px;
    background: #1f3d2b;
    color: white;
    border: none;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-grid.masonry {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .gallery-grid.masonry {
        column-count: 2;
    }
}

/* ===============================
   MOBILE PERFECTION PATCH
   Paste at END of style.css
================================ */

/* 1️⃣ Mobile Header → Clean & Scrollable */
@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        padding: 10px 5%;
    }

    header nav {
        width: 100%;
        display: flex;
        justify-content: space-between;
        overflow-x: auto;
        padding-top: 8px;
    }

    header nav a {
        white-space: nowrap;
        font-size: 15px;
        padding: 6px 10px;
    }
}

/* 2️⃣ Hero Text Centered & Safe */
@media (max-width: 768px) {
    .reel-text {
        left: 50%;
        bottom: 18%;
        transform: translateX(-50%);
        text-align: center;
        width: 90%;
    }

    .reel-text h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .reel-text p {
        font-size: 16px;
        letter-spacing: 1px;
    }
}

/* 3️⃣ Room Images → Mobile Height Fix */
@media (max-width: 768px) {
    .room-slides img {
        height: 320px;
    }
}

/* 4️⃣ Booking Form → Bigger Touch Targets */
@media (max-width: 768px) {
    .booking-form input,
    .booking-form select,
    .booking-form textarea,
    .booking-form button {
        font-size: 16px;
        padding: 14px;
    }
}

/* 5️⃣ Gallery → Comfortable Spacing */
@media (max-width: 768px) {
    .gallery-filters button {
        padding: 10px 14px;
        font-size: 14px;
    }
}

/* 6️⃣ WhatsApp Button → Thumb Zone */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        padding: 14px;
        font-size: 26px;
    }
}

/* 7️⃣ Prevent Side Scroll */
body {
    overflow-x: hidden;
}

/* 8️⃣ Section Padding Reduction */
@media (max-width: 768px) {
    .section {
        padding: 40px 6%;
    }
}

/* 9️⃣ Footer Readability */
@media (max-width: 768px) {
    footer {
        font-size: 14px;
    }
}
