/* ==========================================================================
   Hotel Omkar & Moonlight Restaurant - Master Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Root Variables & Theme
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette (Dark Theme) */
  --bg-primary: #0d0d0d;
  --bg-secondary: #141414;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --surface: #2a2a2a;
  
  --amber: #D4A843;
  --amber-light: #E8C96A;
  --amber-dark: #B8922E;
  
  --coral: #E8654A;
  --coral-dark: #C94F36;
  
  --text-primary: #F5F5F5;
  --text-secondary: #A0A0A0;
  --text-muted: #686868;
  --white: #ffffff;
  --whatsapp: #25D366;
  
  --gradient: linear-gradient(135deg, #D4A843, #E8654A);
  
  /* Container & Spacing */
  --container-max: 1200px;
  --container-px: 24px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, iframe {
  display: block;
  max-width: 100%;
}

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

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
}

h2, .section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
}

p {
  font-size: 1rem;
}

/* Utilities */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  width: 100%;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-gold {
  color: var(--amber);
}

.text-secondary {
  color: var(--text-secondary);
}

.text-muted {
  color: var(--text-muted);
}

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

/* --------------------------------------------------------------------------
   4. Preloader
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  background-color: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo {
  margin-bottom: 20px;
}

.preloader-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.preloader-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(212, 168, 67, 0.2);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--amber);
  color: #0d0d0d;
}

.btn-primary:hover {
  background-color: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(232, 101, 74, 0.3);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 0.92rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.82rem;
}

/* --------------------------------------------------------------------------
   6. Header & Navigation
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--surface);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  max-height: 42px;
  width: auto;
  border-radius: 4px;
}

.brand-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}

.brand-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  border-radius: 8px;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--amber);
  transition: opacity 0.3s ease;
}

.header-phone:hover {
  opacity: 0.8;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.mobile-nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--white);
  margin: 6px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   7. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 70px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(212, 168, 67, 0.08), transparent);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  z-index: 1;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background-color: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--coral);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 101, 74, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(232, 101, 74, 0); }
  100% { box-shadow: 0 0 0 8px rgba(232, 101, 74, 0); }
}

.hero-title {
  margin-top: 20px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.highlight-pill {
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.highlight-pill:hover {
  background-color: rgba(212, 168, 67, 0.1);
  border-color: rgba(212, 168, 67, 0.3);
  color: var(--amber);
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.main-hero-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.main-hero-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hero-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(212, 168, 67, 0.9);
  color: var(--bg-primary);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: var(--white);
}

.hero-card-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.hero-card-overlay p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--bg-card);
  padding: 12px 20px;
  border-radius: 14px;
  margin-top: 16px;
  border: 1px solid var(--surface);
}

.rating-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.stars {
  color: var(--amber);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.rating-label {
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* --------------------------------------------------------------------------
   8. Marquee
   -------------------------------------------------------------------------- */
.marquee-container {
  overflow: hidden;
  background-color: var(--amber);
  padding: 14px 0;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-content span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bg-primary);
  padding: 0 12px;
}

.marquee-dot {
  font-size: 0.7rem;
  opacity: 0.5;
  padding: 0 6px !important;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   9. Sections (Base)
   -------------------------------------------------------------------------- */
.section {
  padding: 100px 0;
}

.section-alt {
  background-color: var(--bg-secondary);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--amber);
  margin-bottom: 14px;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   10. Story / About
   -------------------------------------------------------------------------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.story-img-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.story-img-card.tall {
  grid-row: span 2;
}

.story-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-text {
  color: var(--text-secondary);
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.stat-card {
  background-color: var(--bg-card);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  border: 1px solid var(--surface);
}

.stat-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 4px;
}

.stat-card p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* --------------------------------------------------------------------------
   11. Rooms
   -------------------------------------------------------------------------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.room-card {
  background-color: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--surface);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 168, 67, 0.1);
}

.room-image-wrap {
  position: relative;
  overflow: hidden;
}

.room-image-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-image-wrap img {
  transform: scale(1.05);
}

.room-price-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background-color: var(--amber);
  color: var(--bg-primary);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.1rem;
}

.room-price-badge span {
  font-size: 0.75rem;
  font-weight: 500;
}

.room-ribbon {
  position: absolute;
  top: 16px;
  left: 0;
  background-color: var(--coral);
  color: var(--white);
  padding: 6px 20px 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%);
  z-index: 2;
}

.room-body {
  padding: 28px;
}

.room-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.room-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.amenity-chip {
  background-color: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.15);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.room-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.room-wa-link {
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.room-wa-link:hover {
  text-decoration: underline;
  color: var(--amber-light);
}

/* --------------------------------------------------------------------------
   12. Dining / Signature
   -------------------------------------------------------------------------- */
.signature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sig-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.sig-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sig-card:hover img {
  transform: scale(1.06);
}

.sig-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.sig-info .tag {
  background-color: rgba(212, 168, 67, 0.2);
  color: var(--amber);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}

.sig-info h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin: 8px 0 4px;
}

.sig-price {
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 600;
}

.dining-timings {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background-color: var(--bg-card);
  border-radius: 16px;
  padding: 24px 40px;
  margin-top: 48px;
  border: 1px solid var(--surface);
}

.timing-item {
  text-align: center;
  padding: 0 30px;
}

.timing-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  display: block;
  margin-bottom: 4px;
}

.timing-value {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}

.timing-divider {
  width: 1px;
  background-color: var(--surface);
  align-self: stretch;
}

/* --------------------------------------------------------------------------
   13. Menu Section
   -------------------------------------------------------------------------- */
.menu-controls {
  margin-bottom: 40px;
}

.menu-search-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.menu-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
}

.menu-search-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  background-color: var(--bg-card);
  border: 1px solid var(--surface);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.menu-search-input:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.cat-tab {
  padding: 8px 18px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cat-tab:hover, .cat-tab.active {
  background-color: var(--amber);
  color: var(--bg-primary);
  border-color: var(--amber);
  font-weight: 700;
}

.diet-filter {
  display: flex;
  gap: 10px;
}

.diet-btn {
  padding: 6px 14px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.diet-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.diet-btn.active {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.diet-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.diet-dot.veg {
  background-color: #2ecc40;
}

.diet-dot.nonveg {
  background-color: #e74c3c;
}

.diet-btn[data-diet="veg"].active {
  border-color: #2ecc40;
  color: #2ecc40;
}

.diet-btn[data-diet="nonveg"].active {
  border-color: #e74c3c;
  color: #e74c3c;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.menu-category {
  background-color: var(--bg-card);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--surface);
}

.menu-cat-title {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.menu-cat-note {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.menu-list {
  list-style: none;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(42, 42, 42, 0.5); /* equivalent to rgba(var(--surface), 0.5) if surface was rgb */
  transition: background-color 0.3s ease;
}

.menu-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.menu-row:last-child {
  border-bottom: none;
}

.dish {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.price {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--amber);
}

.price-season {
  color: var(--coral);
  font-style: italic;
}

.menu-ask-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--amber);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.menu-ask-link:hover {
  text-decoration: underline;
  color: var(--amber-light);
}

.menu-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 32px;
}

/* --------------------------------------------------------------------------
   14. Gallery
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-auto-rows: 220px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

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

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

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   15. Reviews
   -------------------------------------------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background-color: var(--bg-card);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--surface);
  position: relative;
  transition: border-color 0.3s ease;
}

.review-card:hover {
  border-color: rgba(212, 168, 67, 0.3);
}

.quote-mark {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  color: var(--amber);
  opacity: 0.15;
  line-height: 1;
}

.review-card .stars {
  color: var(--amber);
  font-size: 1rem;
  margin-bottom: 12px;
}

.review-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--amber);
  color: var(--bg-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.reviewer-tag {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   16. FAQ
   -------------------------------------------------------------------------- */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  background-color: var(--bg-card);
  border-radius: 14px;
  border: 1px solid var(--surface);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background-color: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  color: var(--amber);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-a-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.active .faq-a {
  max-height: 300px;
}

/* --------------------------------------------------------------------------
   17. Visit & Book
   -------------------------------------------------------------------------- */
.visit-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 32px;
}

.visit-info-card {
  background-color: var(--bg-card);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--surface);
}

.info-item {
  margin-bottom: 20px;
}

.info-item h4 {
  color: var(--amber);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.info-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.gold-link {
  color: var(--amber);
  font-weight: 700;
  transition: color 0.3s ease;
}

.gold-link:hover {
  text-decoration: underline;
  color: var(--amber-light);
}

.map-container {
  border-radius: 14px;
  overflow: hidden;
  margin-top: 24px;
  height: 250px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.booking-card {
  background-color: var(--bg-card);
  border-radius: 18px;
  padding: 36px;
  border: 1px solid var(--surface);
}

.booking-card h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.booking-card-sub {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.booking-form .form-group {
  margin-bottom: 16px;
}

.booking-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-form .form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--surface);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.booking-form .form-control:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}

.booking-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23A0A0A0' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  padding-right: 40px;
}

.booking-form select.form-control option {
  background-color: var(--bg-card);
  color: var(--text-primary);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.footer {
  background-color: #0a0a0a;
  padding: 60px 0 0;
  border-top: 1px solid var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-top: 16px;
}

.footer-moonlight {
  color: var(--amber) !important;
  font-size: 0.85rem !important;
  font-weight: 600;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links a {
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid var(--surface);
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* --------------------------------------------------------------------------
   19. Floating Mobile Bar
   -------------------------------------------------------------------------- */
.floating-mobile-bar {
  display: none;
}

/* --------------------------------------------------------------------------
   20. Back to Top
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--amber);
  color: var(--bg-primary);
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--coral);
}

/* --------------------------------------------------------------------------
   21. Modal / Lightbox
   -------------------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-wrapper {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-wrapper img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

/* --------------------------------------------------------------------------
   22. Scroll Reveal Animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: 0.15s; }
.d2 { transition-delay: 0.3s; }
.d3 { transition-delay: 0.45s; }
.d4 { transition-delay: 0.6s; }

/* --------------------------------------------------------------------------
   23. Responsive Design
   -------------------------------------------------------------------------- */

/* Tablet & Smaller Desktop */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-subtitle {
    margin: 0 auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-highlights {
    justify-content: center;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
  }
  
  .signature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  
  .visit-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  /* Header Mobile Nav */
  .header-phone {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-link {
    font-size: 1.2rem;
    padding: 12px 24px;
  }
  
  /* Hero */
  .hero {
    padding-top: 90px;
    min-height: auto;
    padding-bottom: 40px;
  }
  
  /* Menu */
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item.wide {
    grid-column: span 2;
  }
  
  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding-bottom: 100px; /* Add extra padding for floating bar */
  }
  
  /* Floating Mobile Bar */
  .floating-mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 16px;
    gap: 8px;
    border-top: 1px solid var(--surface);
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
  
  .fmb-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    background-color: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .fmb-primary {
    background-color: var(--amber);
    color: var(--bg-primary);
  }
  
  body {
    padding-bottom: 80px;
  }
  
  .back-to-top {
    bottom: 90px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  h1 {
    font-size: 2.4rem;
  }
  
  h2, .section-title {
    font-size: 1.8rem;
  }
  
  .hero-rating {
    padding: 10px 16px;
  }
  
  .rating-num {
    font-size: 1.6rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .dining-timings {
    padding: 20px;
    flex-direction: column;
    gap: 16px;
  }
  
  .timing-divider {
    width: 100%;
    height: 1px;
    margin: 8px 0;
  }
  
  .timing-item {
    padding: 0;
  }
  
  .sig-card img {
    height: 220px;
  }
  
  .room-image-wrap img {
    height: 220px;
  }
}
