/* ============================================================
   PEACE HOTEL — style.css
   Colors:
     White:      #ffffff
     Dark Brown: #3E1F00
     Dark Red:   #8B1A1A
   Fonts: Lora (headings) + Nunito (body)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', sans-serif;
  color: #2c1500;
  background-color: #ffffff;
  line-height: 1.75;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  line-height: 1.3;
  font-weight: 600;
}

/* ---------- Container ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: #8B1A1A;
  color: #ffffff;
  border-color: #8B1A1A;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff;
  border-color: #25D366;
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.55);
}

.btn-outline:hover {
  background-color: rgba(255,255,255,0.12);
  opacity: 1;
}

.btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-light:hover {
  background-color: rgba(255,255,255,0.14);
  opacity: 1;
}

.btn-full {
  display: block;
  text-align: center;
  width: 100%;
}

/* ---------- Section Common ---------- */
.section {
  padding: 4.5rem 0;
}

.section-title {
  font-size: 2rem;
  color: #3E1F00;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-title-light {
  color: #ffffff;
}

.section-sub {
  text-align: center;
  color: #7a5a3a;
  margin-bottom: 2.5rem;
  font-size: 0.97rem;
}

.section-sub-light {
  color: rgba(255,255,255,0.75);
}

.text-left {
  text-align: left;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #3E1F00;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  background-color: #ffffff;
  padding: 3px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
}

.logo-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.main-nav ul {
  display: flex;
  gap: 0.1rem;
  flex-wrap: wrap;
}

.main-nav ul li a {
  color: rgba(255,255,255,0.82);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 0.35rem 0.55rem;
  border-radius: 3px;
  transition: color 0.2s, background-color 0.2s;
  font-family: 'Nunito', sans-serif;
}

.main-nav ul li a:hover {
  color: #ffffff;
  background-color: rgba(255,255,255,0.1);
}

.header-cta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.header-cta .btn {
  padding: 0.42rem 0.85rem;
  font-size: 0.8rem;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  order: 3;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 1.6s ease;
  opacity: 0;
}

.hero-img.hero-bg-active {
  opacity: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  /* cinematic upward gradient — photo shows at top, text emerges from dark base */
  background: linear-gradient(
    to top,
    rgba(10, 3, 0, 0.62) 0%,
    rgba(10, 3, 0, 0.30) 40%,
    rgba(10, 3, 0, 0.06) 70%,
    transparent 100%
  );
  padding: 5rem 0 3.5rem;
}

.hero-content {
  max-width: 700px;
}

/* Text block — subtle frosted shadow behind all text */
.hero-content {
  position: relative;
  display: inline-block;
}

.hero-content::before {
  content: '';
  position: absolute;
  inset: -1.4rem -1.8rem;
  background: rgba(8, 2, 0, 0.22);
  filter: blur(20px);
  border-radius: 12px;
  z-index: -1;
}

/* Eyebrow label */
.hero-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(220, 180, 120, 0.95);
  margin-bottom: 1rem;
}

/* Thin decorative rule */
.hero-rule {
  width: 48px;
  height: 1px;
  background-color: rgba(210, 170, 110, 0.55);
  margin-bottom: 1.1rem;
}

/* Main headline */
.hero-title {
  font-family: 'Lora', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.6), 0 4px 32px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.01em;
}

/* Sub-line */
.hero-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  max-width: 480px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.hero-sub em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.93rem;
}

/* ============================================================
   ROOMS
   ============================================================ */
.rooms-section {
  background-color: #faf6f2;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.room-card {
  background-color: #ffffff;
  border: 1px solid #e8ddd3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(62,31,0,0.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.2s;
}

.room-card:hover {
  box-shadow: 0 6px 24px rgba(62,31,0,0.13);
  transform: translateY(-2px);
}

.room-photo {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

.room-info {
  padding: 1.1rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.room-name {
  font-size: 1.05rem;
  color: #3E1F00;
  font-weight: 600;
}

.room-features {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.room-features li {
  font-size: 0.88rem;
  color: #5c3d20;
  font-weight: 400;
}

.rooms-price-note {
  text-align: center;
  margin-top: 1.8rem;
  font-size: 0.9rem;
  color: #8B1A1A;
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.01em;
}

/* ============================================================
   SERVICES — two-column professional
   ============================================================ */
.services-section {
  background-color: #3E1F00;
  padding: 2.8rem 0;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.services-block {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1.4rem 1.5rem 1.6rem;
}

.services-block-icon {
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.8rem;
}

.services-block-icon svg {
  width: 22px;
  height: 22px;
}

.services-block-title {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.6rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.services-list li {
  color: rgba(255,255,255,0.8);
  font-size: 0.87rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.svc-check {
  color: #c8a870;
  font-size: 0.88rem;
  flex-shrink: 0;
  line-height: 1;
}

.svc-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(200,168,112,0.65);
  flex-shrink: 0;
}

.services-list-sub {
  margin-top: 0.4rem;
}

.services-note-divider {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1.1rem;
  margin-bottom: 0.45rem;
  font-family: 'Nunito', sans-serif;
}

.services-note {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
  font-style: italic;
  margin-top: 1rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 0.8rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  background-color: #ffffff;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-photo {
  height: 360px;
  border-radius: 8px;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.about-text p {
  color: #5c3d20;
  font-size: 1rem;
  margin-top: 1rem;
  font-weight: 300;
  line-height: 1.85;
}

/* ============================================================
   GALLERY — slider style
   ============================================================ */
.gallery-section {
  background-color: #faf6f2;
  padding-bottom: 0;
}

/* Slider wrapper */
.slider-wrap {
  position: relative;
  width: 100%;
  margin-top: 2rem;
  background-color: #1a0800;
  overflow: hidden;
}

/* Track holds all slides stacked; JS swaps .active */
.slider {
  position: relative;
  width: 100%;
  height: 520px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
  cursor: zoom-in;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(20, 7, 0, 0.55);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background-color: rgba(62,31,0,0.85);
  transform: translateY(-50%) scale(1.06);
}

.slider-prev { left: 1.2rem; }
.slider-next { right: 1.2rem; }

/* Caption bar */
.slider-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: linear-gradient(transparent, rgba(20,7,0,0.72));
  color: rgba(255,255,255,0.88);
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 2.5rem 1.5rem 1.1rem;
  text-align: center;
  pointer-events: none;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 6px;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.35);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background-color 0.25s, transform 0.2s;
}

.slider-dot.active {
  background-color: #ffffff;
  transform: scale(1.25);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(12, 4, 0, 0.96);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.65);
  width: auto;
  height: auto;
}

.lightbox-caption {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin-top: 1rem;
  text-align: center;
  font-family: 'Nunito', sans-serif;
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.75;
  transition: opacity 0.2s;
  z-index: 2010;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
  z-index: 2010;
}

.lightbox-prev { left: 1.2rem; }
.lightbox-next { right: 1.2rem; }

.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.18); }

/* ============================================================
   LOCATION
   ============================================================ */
.location-section {
  background-color: #ffffff;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e8ddd3;
  margin-top: 1.5rem;
}

.location-cta {
  text-align: center;
  margin-top: 1.5rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background-color: #3E1F00;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.contact-card {
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.contact-icon-svg {
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2rem;
}

.contact-card h4 {
  color: rgba(255,255,255,0.6);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.contact-card p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  font-weight: 500;
}

.contact-btn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.2rem;
}

.contact-btn-grid-col {
  grid-template-columns: 1fr;
}

.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: opacity 0.18s, transform 0.15s;
  border: 1px solid transparent;
}

.btn-contact:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-contact-call {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
  color: #ffffff;
}

.btn-contact-wa {
  background-color: #1da851;
  border-color: #1da851;
  color: #ffffff;
}

.contact-extra-btns {
  text-align: center;
  margin-top: 1.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: #2c1400;
  padding: 2.5rem 0 1.5rem;
  text-align: center;
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  background-color: #ffffff;
  padding: 4px;
  margin: 0 auto 1rem;
}

.footer-name {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.footer-tagline,
.footer-est {
  color: rgba(255,255,255,0.6);
  font-size: 0.86rem;
  font-weight: 300;
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.6rem;
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.footer-contacts a {
  color: rgba(255,255,255,0.7);
  font-size: 0.86rem;
  transition: color 0.2s;
}

.footer-contacts a:hover { color: #d4a47a; }

.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.76rem;
  margin-top: 0.5rem;
}

/* ---------- Language Toggle Button ---------- */
.lang-toggle {
  background-color: transparent;
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 4px;
  font-family: 'Tajawal', 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.38rem 0.85rem;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.lang-toggle:hover {
  background-color: rgba(255,255,255,0.12);
  color: #ffffff;
  border-color: rgba(255,255,255,0.55);
}

/* ============================================================
   RTL — Arabic layout overrides
   ============================================================ */

/* Base font */
[dir="rtl"] body {
  font-family: 'Tajawal', sans-serif;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4 {
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
}

[dir="rtl"] .logo-name,
[dir="rtl"] .logo-sub,
[dir="rtl"] .main-nav ul li a,
[dir="rtl"] .btn,
[dir="rtl"] .btn-contact,
[dir="rtl"] .lang-toggle,
[dir="rtl"] .rooms-price-note,
[dir="rtl"] .services-note,
[dir="rtl"] .services-note-divider,
[dir="rtl"] .slider-caption,
[dir="rtl"] .footer-contacts a,
[dir="rtl"] .footer-copy {
  font-family: 'Tajawal', sans-serif;
}

/* Hero text alignment */
[dir="rtl"] .hero-content {
  text-align: right;
}

[dir="rtl"] .hero-eyebrow {
  letter-spacing: 0.05em;
}

[dir="rtl"] .hero-sub {
  text-align: right;
}

[dir="rtl"] .hero-rule {
  margin-left: auto;
  margin-right: 0;
}

/* Section titles */
[dir="rtl"] .text-left {
  text-align: right;
}

/* Keep phone number buttons LTR so digits read correctly */
[dir="rtl"] .btn-contact {
  direction: ltr;
}

/* Contact card headings */
[dir="rtl"] .contact-card h4 {
  direction: rtl;
}

/* Services note divider */
[dir="rtl"] .services-note-divider {
  text-align: right;
}

[dir="rtl"] .services-note {
  text-align: right;
}

/* Footer links stay legible */
[dir="rtl"] .footer-contacts {
  direction: ltr;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  background-color: #25D366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37,211,102,0.5);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-photo {
    height: 270px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 700px) {
  .site-header .header-inner {
    flex-wrap: nowrap;
    position: relative;
  }

  .logo { flex: 1; }

  .logo-img { width: 44px; height: 44px; }

  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #3E1F00;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.5rem;
    gap: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 999;
  }

  .main-nav.open { display: flex; }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .main-nav ul li a {
    display: block;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.95rem;
  }

  .header-cta {
    flex-direction: column;
    width: 100%;
  }

  .header-cta .btn { text-align: center; }

  .hero { min-height: 65vh; }

  .hero-overlay {
    background: rgba(25,8,0,0.7);
    padding: 3.5rem 0;
  }

  .hero-title { font-size: 1.6rem; }

  .section { padding: 3rem 0; }

  .section-title { font-size: 1.65rem; }

  .rooms-grid { grid-template-columns: 1fr; }

  .services-row { grid-template-columns: 1fr; }

  .contact-cards { grid-template-columns: 1fr; }

  .slider { height: 320px; }

  .floating-whatsapp {
    width: 50px;
    height: 50px;
    bottom: 1.2rem;
    right: 1.2rem;
  }
}

@media (max-width: 400px) {
  .slider { height: 260px; }
  .slider-arrow { width: 36px; height: 36px; }
}
