/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a2e; background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --dark: #0d0d1a;
  --dark2: #1a1a2e;
  --text: #555;
  --light-bg: #f8f6f0;
  --white: #fff;
  --radius: 14px;
  --shadow: 0 8px 32px rgba(0,0,0,0.10);
  --transition: all 0.3s ease;
}

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 22px 0; transition: var(--transition); background: transparent; }
.navbar.scrolled { background: rgba(13,13,26,0.97); padding: 13px 0; box-shadow: 0 4px 24px rgba(0,0,0,0.3); backdrop-filter: blur(12px); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); }
.logo-img { width: 44px; height: 44px; object-fit: contain; border-radius: 6px; flex-shrink: 0; }
.nav-links { display: flex; gap: 34px; margin-right: 32px; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.4px; transition: var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.btn-book { background: var(--gold); color: var(--dark); padding: 10px 26px; border-radius: 50px; font-weight: 600; font-size: 0.85rem; transition: var(--transition); }
.btn-book:hover { background: var(--gold-light); transform: translateY(-2px); }
.hamburger { display: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* HERO */
.hero { height: 100vh; position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; display: flex; align-items: center; justify-content: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,13,26,0.78) 0%, rgba(13,13,26,0.38) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; color: white; max-width: 820px; padding: 0 24px; animation: fadeUp 1s ease; }
.hero-tag { font-size: 0.82rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 500; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem, 6vw, 5.2rem); line-height: 1.12; margin-bottom: 22px; }
.hero-content h1 span { color: var(--gold); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 42px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); color: var(--gold); font-size: 1.2rem; z-index: 2; animation: bounce 2s infinite; }

/* BUTTONS */
.btn-primary { background: var(--gold); color: var(--dark); padding: 14px 34px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: var(--transition); display: inline-block; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); padding: 12px 34px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: var(--transition); display: inline-block; }
.btn-outline:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); }
.btn-outline-dark { border: 2px solid var(--dark2); color: var(--dark2); padding: 12px 34px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: var(--transition); display: inline-block; }
.btn-outline-dark:hover { background: var(--dark2); color: white; transform: translateY(-3px); }
.btn-sm { background: var(--gold); color: var(--dark); padding: 8px 22px; border-radius: 50px; font-weight: 600; font-size: 0.8rem; transition: var(--transition); display: inline-block; }
.btn-sm:hover { background: var(--gold-light); transform: translateY(-2px); }
.full-width { width: 100%; text-align: center; border: none; cursor: pointer; font-family: inherit; }

/* STATS */
.stats { background: var(--dark2); display: grid; grid-template-columns: repeat(4, 1fr); padding: 52px 24px; }
.stat-item { text-align: center; padding: 16px; }
.stat-item h2 { font-family: 'Playfair Display', serif; font-size: 2.6rem; color: var(--gold); margin-bottom: 8px; }
.stat-item p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

/* SECTIONS */
.section { padding: 100px 24px; }
.bg-light { background: var(--light-bg); }
.bg-dark { background: var(--dark2); }
.container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.container-center { max-width: 700px; margin: 0 auto 64px; text-align: center; }
.section-tag { font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; display: block; }
.section-tag.light { color: var(--gold-light); }
.section h2, .container-center h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3vw, 2.9rem); color: var(--dark2); margin-bottom: 20px; line-height: 1.2; }
.bg-dark h2, h2.light { color: var(--white); }
.section-sub { color: var(--text); font-size: 1rem; line-height: 1.75; }

/* ABOUT */
.about-img { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-img-wrap { width: 100%; height: 500px; overflow: hidden; border-radius: var(--radius); }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-badge { position: absolute; bottom: 24px; left: 24px; background: var(--gold); color: var(--dark); padding: 12px 20px; border-radius: 8px; display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.9rem; }
.about-text p { color: var(--text); line-height: 1.85; margin-bottom: 16px; }
.about-features { margin: 24px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--dark2); }
.about-features li i { color: var(--gold); }

/* ROOMS GRID (Home) */
.rooms-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 0 24px; }
.room-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: white; transition: var(--transition); position: relative; }
.room-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,0.16); }
.room-card.featured { border: 2px solid var(--gold); }
.room-thumb { width: 100%; height: 240px; overflow: hidden; }
.room-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.4s ease; }
.room-card:hover .room-thumb img { transform: scale(1.06); }
.badge { position: absolute; top: 16px; right: 16px; background: var(--gold); color: var(--dark); padding: 4px 14px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; }
.room-info { padding: 24px; }
.room-info h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 8px; }
.room-info p { color: var(--text); font-size: 0.88rem; line-height: 1.65; margin-bottom: 16px; }
.room-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-weight: 700; font-size: 1.05rem; color: var(--dark2); }
.price small { font-size: 0.72rem; color: var(--text); font-weight: 400; }
.view-all-wrap { text-align: center; margin-top: 48px; }

/* AMENITIES GRID */
.amenities-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; padding: 0 24px; }
.amenity-card { text-align: center; padding: 36px 16px; border-radius: var(--radius); background: white; box-shadow: var(--shadow); transition: var(--transition); }
.amenity-card:hover { transform: translateY(-6px); background: var(--dark2); }
.amenity-card:hover i, .amenity-card:hover h4 { color: var(--gold); }
.amenity-card i { font-size: 2.1rem; color: var(--gold); margin-bottom: 14px; display: block; }
.amenity-card h4 { font-size: 0.85rem; font-weight: 600; color: var(--dark2); }

/* AMENITY STRIP */
.amenity-strip { background: var(--dark2); padding: 28px 24px; }
.amenity-strip-inner { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.strip-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; }
.strip-item i { color: var(--gold); font-size: 1.2rem; }

/* TESTIMONIALS */
.testimonials-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 0 24px; }
.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius); padding: 34px; transition: var(--transition); }
.testimonial-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-card p { color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.guest { color: var(--gold); font-size: 0.85rem; }

/* REVIEWS CTA (Booking.com link button) */
.reviews-cta-wrap { text-align: center; margin-top: 48px; }
.btn-booking { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--dark); padding: 14px 34px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; border: 2px solid var(--gold); transition: var(--transition); }
.btn-booking i { font-size: 0.95rem; }
.btn-booking:hover { background: var(--dark2); color: var(--gold-light); border-color: var(--gold-light); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }

/* CTA */
.cta { background: linear-gradient(135deg, var(--dark2) 0%, #16213e 100%); padding: 100px 24px; text-align: center; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background: url('images/hotelfront.JPG') center/cover; opacity: 0.08; }
.cta-content { position: relative; z-index: 1; }
.cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3vw, 2.9rem); color: white; margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,0.7); margin-bottom: 34px; font-size: 1rem; }

/* FOOTER */
.footer { background: var(--dark); padding: 80px 24px 0; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; padding-bottom: 60px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.75; margin-bottom: 24px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: var(--transition); }
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links h4, .footer-contact h4 { color: white; font-size: 1rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
.footer-contact p i { color: var(--gold); margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; text-align: center; max-width: 1200px; margin: 0 auto; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

/* PAGE HERO */
.page-hero { height: 65vh; position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; display: flex; align-items: center; justify-content: center; }
.page-hero-content { position: relative; z-index: 2; text-align: center; color: white; padding: 0 24px; }
.page-hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 4.2rem); margin: 12px 0 8px; }
.page-hero-content p { color: rgba(255,255,255,0.8); font-size: 1rem; }

/* FILTER TABS */
.filter-section { background: var(--light-bg); padding: 28px 24px; text-align: center; }
.filter-tabs { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.filter-btn { padding: 10px 28px; border-radius: 50px; border: 2px solid #ddd; background: white; font-family: inherit; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: var(--transition); color: var(--dark2); }
.filter-btn.active, .filter-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* ROOMS DETAIL */
.rooms-detail { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; gap: 90px; }
.room-detail-card { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.room-detail-card.reverse { direction: rtl; }
.room-detail-card.reverse > * { direction: ltr; }
.room-detail-img { width: 100%; height: 440px; overflow: hidden; border-radius: var(--radius); }
.room-detail-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.4s ease; }
.room-detail-img:hover img { transform: scale(1.04); }
.room-type-tag { display: inline-block; background: var(--light-bg); color: var(--gold); padding: 4px 16px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.room-type-tag.popular { background: var(--gold); color: var(--dark); }
.room-type-tag.luxury { background: var(--dark2); color: var(--gold); }
.room-type-tag.family { background: #e8f4fd; color: #2980b9; }
.room-type-tag.budget { background: #eafaf1; color: #27ae60; }
.room-detail-info h3 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 16px; }
.room-detail-info p { color: var(--text); line-height: 1.85; margin-bottom: 24px; }
.room-amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px; }
.room-amenities li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--dark2); }
.room-amenities li i { color: var(--gold); width: 16px; }
.room-price-book { display: flex; align-items: center; gap: 24px; }
.price-big { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--dark2); font-weight: 700; }
.price-big small { font-size: 0.88rem; color: var(--text); font-weight: 400; font-family: 'Inter', sans-serif; }

/* COMPARE TABLE */
.table-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.compare-table thead { background: var(--dark2); }
.compare-table thead th { color: white; padding: 18px 20px; text-align: left; font-size: 0.85rem; font-weight: 600; }
.compare-table tbody tr { border-bottom: 1px solid #f0f0f0; transition: var(--transition); }
.compare-table tbody tr:hover { background: #fdf9f0; }
.compare-table tbody tr.highlight-row { background: #fffbf0; }
.compare-table tbody td { padding: 16px 20px; font-size: 0.88rem; color: var(--dark2); }
.compare-table .gold { color: var(--gold); }
.price-col { font-weight: 700; color: var(--gold); font-size: 1rem; }

/* AMENITIES DETAIL */
.amenities-detail { max-width: 1000px; margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; gap: 32px; }
.amenity-detail-card { display: grid; grid-template-columns: 90px 1fr; gap: 36px; align-items: start; padding: 40px; background: white; border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); border-left: 4px solid transparent; }
.amenity-detail-card:hover { transform: translateY(-4px); border-left-color: var(--gold); box-shadow: 0 16px 48px rgba(0,0,0,0.13); }
.amenity-icon-large { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; }
.amenity-icon-large i { font-size: 1.8rem; color: var(--dark); }
.amenity-detail-info h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 12px; }
.amenity-detail-info p { color: var(--text); line-height: 1.85; margin-bottom: 16px; }
.amenity-detail-info ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.amenity-detail-info ul li { font-size: 0.85rem; color: var(--dark2); padding-left: 16px; position: relative; }
.amenity-detail-info ul li::before { content: '\2726'; position: absolute; left: 0; color: var(--gold); font-size: 0.6rem; top: 3px; }

/* BANQUET */
.events-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 0 24px; }
.event-card { background: white; border-radius: var(--radius); padding: 40px 32px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.event-card:hover { transform: translateY(-6px); border-bottom: 3px solid var(--gold); }
.event-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; display: block; }
.event-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 12px; }
.event-card p { color: var(--text); font-size: 0.88rem; line-height: 1.7; }
.venue-cards { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 0 24px; }
.venue-card { background: white; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); transition: var(--transition); }
.venue-card.featured { border: 2px solid var(--gold); }
.venue-card:hover { transform: translateY(-6px); }
.venue-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 16px; }
.venue-specs { display: flex; gap: 20px; margin-bottom: 16px; }
.venue-specs span { font-size: 0.82rem; color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.venue-card p { color: var(--text); font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; }

/* BANQUET — HALL & WEDDING PHOTO SLIDER */
.hall-slider { position: relative; max-width: 900px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.hall-slider-track { display: flex; transition: transform 0.5s ease; }
.hall-slide { min-width: 100%; aspect-ratio: 16 / 10; }
.hall-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hall-slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: none; background: rgba(13,13,26,0.55); color: white; font-size: 1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); z-index: 2; }
.hall-slider-arrow:hover { background: var(--gold); color: var(--dark); }
.hall-slider-arrow.prev { left: 16px; }
.hall-slider-arrow.next { right: 16px; }
.hall-slider-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.hall-slider-dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,0.5); cursor: pointer; padding: 0; transition: var(--transition); }
.hall-slider-dot.active { background: var(--gold); width: 22px; border-radius: 5px; }

@media (max-width: 768px) {
  .hall-slide { aspect-ratio: 4 / 3; }
  .hall-slider-arrow { width: 38px; height: 38px; font-size: 0.85rem; }
}

/* CONTACT */
.contact-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 16px; }
.contact-info > p { color: var(--text); line-height: 1.85; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon i { color: var(--dark); font-size: 1rem; }
.contact-item h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; }
.contact-item p { color: var(--text); font-size: 0.88rem; line-height: 1.65; }
.contact-form-wrap { background: white; border-radius: var(--radius); padding: 48px; box-shadow: var(--shadow); }
.contact-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 8px; color: var(--dark2); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid #e5e5e5; border-radius: 8px; font-family: inherit; font-size: 0.88rem; color: var(--dark2); transition: var(--transition); outline: none; background: #fafafa; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: white; box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.form-group textarea { resize: vertical; }
.map-section { height: 400px; }
.map-section iframe { height: 100%; width: 100%; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(9px); } }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--dark2); padding: 24px; gap: 16px; margin-right: 0; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .btn-book { display: none; }
  .container, .room-detail-card, .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .room-detail-card.reverse { direction: ltr; }
  .room-detail-img { height: 280px; }
  .rooms-grid, .testimonials-grid, .events-grid, .venue-cards { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .amenity-detail-card { grid-template-columns: 1fr; }
  .room-amenities { grid-template-columns: 1fr; }
  .amenity-detail-info ul { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .about-img-wrap { height: 300px; }
}
@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; align-items: center; }
  .amenity-strip-inner { flex-direction: column; align-items: center; }
  .room-thumb { height: 200px; }
}

/* =========================================================
   ADD-ON BLOCK — appended for: clickable logo link + rooms
   page 3-image gallery. Does not modify any rule above.
   ========================================================= */

/* Makes the new <a> wrapper around the navbar logo inherit
   the exact same look the plain .logo div had before —
   no change to font size, family, color, or spacing. */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font: inherit;
  text-decoration: none;
}

/* 3-image gallery for the Rooms page: 1 large photo (bed) on
   the left, 2 stacked smaller photos (bathroom/view) on the
   right. Falls back to a single column on small screens. */
.room-gallery-3 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
}

.room-gallery-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.room-gallery-3 img:nth-child(1) {
  grid-row: 1 / 3;
  grid-column: 1;
}

.room-gallery-3 img:nth-child(2) {
  grid-row: 1;
  grid-column: 2;
}

.room-gallery-3 img:nth-child(3) {
  grid-row: 2;
  grid-column: 2;
}

/* 4-image gallery variant: 1 large photo on the left, 3 stacked
   smaller photos on the right. Same fallback behaviour as the
   3-image gallery on small screens. */
.room-gallery-4 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 6px;
}

.room-gallery-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.room-gallery-4 img:nth-child(1) {
  grid-row: 1 / 4;
  grid-column: 1;
}

.room-gallery-4 img:nth-child(2) {
  grid-row: 1;
  grid-column: 2;
}

.room-gallery-4 img:nth-child(3) {
  grid-row: 2;
  grid-column: 2;
}

.room-gallery-4 img:nth-child(4) {
  grid-row: 3;
  grid-column: 2;
}

@media (max-width: 768px) {
  .room-gallery-4 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    height: 280px;
  }
  .room-gallery-4 img:nth-child(1) {
    grid-row: 1;
    grid-column: 1 / 4;
    height: 180px;
  }
  .room-gallery-4 img:nth-child(2) {
    grid-row: 2;
    grid-column: 1;
    height: 95px;
  }
  .room-gallery-4 img:nth-child(3) {
    grid-row: 2;
    grid-column: 2;
    height: 95px;
  }
  .room-gallery-4 img:nth-child(4) {
    grid-row: 2;
    grid-column: 3;
    height: 95px;
  }
}

@media (max-width: 768px) {
  .room-gallery-3 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    height: 280px;
  }
  .room-gallery-3 img:nth-child(1) {
    grid-row: 1;
    grid-column: 1 / 3;
    height: 180px;
  }
  .room-gallery-3 img:nth-child(2) {
    grid-row: 2;
    grid-column: 1;
    height: 95px;
  }
  .room-gallery-3 img:nth-child(3) {
    grid-row: 2;
    grid-column: 2;
    height: 95px;
  }
}
