/* ============================================================
   HOTEL ADARSH — style.css
   ============================================================ */

/* ===== CSS VARIABLES / THEMES ===== */
:root {
  --transition: 0.4s ease;
  --radius: 12px;
  --radius-lg: 24px;
  --shadow: 0 8px 40px rgba(0,0,0,0.15);
  --shadow-lg: 0 20px 80px rgba(0,0,0,0.25);
}

[data-theme="dark"] {
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #1a1a26;
  --surface: #16161f;
  --surface2: #1e1e2e;
  --border: rgba(255,255,255,0.08);
  --text: #f0ede8;
  --text2: #b0aaa0;
  --text3: #706a60;
  --accent: #c9a96e;
  --accent2: #e8c87a;
  --accent-soft: rgba(201,169,110,0.12);
  --hero-overlay: linear-gradient(135deg, rgba(10,10,15,0.85) 0%, rgba(10,10,15,0.4) 100%);
  --nav-bg: rgba(10,10,15,0.92);
  --card-bg: #16161f;
}

[data-theme="light"] {
  --bg: #faf8f5;
  --bg2: #f3f0eb;
  --bg3: #ede9e2;
  --surface: #ffffff;
  --surface2: #f8f5f0;
  --border: rgba(0,0,0,0.08);
  --text: #1a1612;
  --text2: #5a4e40;
  --text3: #9a8e80;
  --accent: #8b6914;
  --accent2: #b8890a;
  --accent-soft: rgba(139,105,20,0.1);
  --hero-overlay: linear-gradient(135deg, rgba(250,248,245,0.75) 0%, rgba(250,248,245,0.2) 100%);
  --nav-bg: rgba(250,248,245,0.94);
  --card-bg: #ffffff;
}

[data-theme="royal"] {
  --bg: #0f0c05;
  --bg2: #1a1408;
  --bg3: #2a1f0a;

  --surface: #1c1507;
  --surface2: #241b0a;

  --text: #fff6d6;
  --text2: #e6d3a3;
  --text3: #bfa76a;

  --accent: #d4af37; /* GOLD */
  --accent2: #f1c40f;

  --accent-soft: rgba(212,175,55,0.15);

  --hero-overlay: linear-gradient(135deg, rgba(15,12,5,0.9), rgba(42,31,10,0.4));
  --nav-bg: rgba(15,12,5,0.95);
  --card-bg: #1c1507;
}

[data-theme="arctic"] {
  --bg: #0D1321;        /* deep navy */
  --bg2: #1D2D44;
  --bg3: #3E5C76;

  --surface: #1D2D44;
  --surface2: #3E5C76;

  --text: #F0EBD8;      /* soft warm white */
  --text2: #d6d0bd;
  --text3: #a8a28f;

  --accent: #748CAB;    /* steel blue */
  --accent2: #3E5C76;

  --accent-soft: rgba(116,140,171,0.15);

  --hero-overlay: linear-gradient(
    135deg,
    rgba(13,19,33,0.9),
    rgba(62,92,118,0.4)
  );

  --nav-bg: rgba(13,19,33,0.95);
  --card-bg: #1D2D44;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #0a0a0f;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 4rem);
  color: #c9a96e;
  letter-spacing: 0.3em;
  animation: loaderPulse 1.5s ease infinite;
}
.loader-line {
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #c9a96e, transparent);
  margin-top: 20px;
  animation: loaderLine 1.8s ease forwards 0.3s;
}
.loader-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  color: rgba(201,169,110,0.6);
  margin-top: 12px;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 1s;
}
@keyframes loaderPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.7;transform:scale(0.98)} }
@keyframes loaderLine { 0%{width:0} 100%{width:200px} }
@keyframes fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 72px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.15em;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo .crown { font-size: 1.2rem; }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text2); text-decoration: none;
  position: relative; padding: 4px 0;
  transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Theme Switcher */
.theme-switcher {
  display: flex; align-items: center; gap: 6px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 50px; padding: 4px;
}
.theme-btn {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.3s; display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.theme-btn.active { border-color: var(--accent); transform: scale(1.15); }
.theme-btn[data-t="dark"]  { background: #0a0a0f; color: #c9a96e; }
.theme-btn[data-t="light"] { background: #faf8f5; color: #8b6914; }
.theme-btn[data-t="ocean"] { background: #071224; color: #40b4ff; }
.theme-btn[data-t="rose"]  { background: #1a0a10; color: #ff8ca0; }

.book-nav-btn {
  background: var(--accent);
  color: #0a0a0f;
  border: none; border-radius: 6px;
  padding: 10px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: all var(--transition);
}
.book-nav-btn:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,169,110,0.35); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); transition: all 0.3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--nav-bg); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
  animation: slideDown 0.3s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text2); text-decoration: none;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--accent); }
@keyframes slideDown { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background-image:
    var(--hero-overlay),
    url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?w=1920&q=80');
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-particles {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(201,169,110,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,169,110,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  text-align: center; padding: 2rem;
  max-width: 900px;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50px; padding: 8px 20px;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 2rem;
  opacity: 0; animation: fadeInUp 0.8s ease forwards 0.5s;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300; line-height: 1.05;
  color: var(--text); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeInUp 0.8s ease forwards 0.7s;
}
.hero-title em { font-style: italic; color: var(--accent); display: block; }
.hero-sub {
  font-size: 0.85rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text2); margin-bottom: 3rem;
  opacity: 0; animation: fadeInUp 0.8s ease forwards 0.9s;
}
.hero-cta {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeInUp 0.8s ease forwards 1.1s;
}
.btn-primary {
  background: var(--accent); color: #0a0a0f;
  border: none; border-radius: 8px;
  padding: 16px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,169,110,0.4); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,0.3); border-radius: 8px;
  padding: 16px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.hero-stats {
  position: absolute; bottom: 3rem; left: 0; right: 0;
  display: flex; justify-content: center; gap: 4rem;
  opacity: 0; animation: fadeInUp 0.8s ease forwards 1.3s;
  flex-wrap: wrap; padding: 0 2rem;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 600; color: var(--accent); line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text2); margin-top: 4px;
}
.scroll-indicator {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0; animation: fadeIn 1s ease forwards 2s;
}
.scroll-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); animation: bounce 1.5s ease infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ===== SECTIONS COMMON ===== */
section { padding: 100px 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; width: 40px; height: 1px; background: var(--accent); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400; color: var(--text); line-height: 1.2; margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-sub { font-size: 0.85rem; font-weight: 300; line-height: 1.8; color: var(--text2); max-width: 540px; }
.divider { width: 60px; height: 2px; background: linear-gradient(90deg, var(--accent), transparent); margin: 1.5rem 0; }

/* ===== ABOUT ===== */
#about { background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--accent); color: #0a0a0f;
  border-radius: var(--radius); padding: 20px 24px; text-align: center; box-shadow: var(--shadow);
}
.about-badge .big { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 600; line-height: 1; }
.about-badge .sm  { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 2.5rem; }
.about-feat { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: var(--text2); }
.about-feat .icon { color: var(--accent); font-size: 1rem; }

/* ===== ROOMS ===== */
#rooms { background: var(--bg); }
.rooms-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.room-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  height: 100%;   /* IMPORTANT */
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(201,169,110,0.2); }
.room-img {
  width: 100%;
  height: 200px; /* Fixed height for consistent image size */
  object-fit: cover; /* Ensure images are properly cropped */
}
.room-body {
  padding: 16px; /* Adjusted padding for better spacing */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.room-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.room-desc  { font-size: 0.8rem; color: var(--text2); line-height: 1.7; margin-bottom: 16px; }
.room-amenities { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.room-am {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
}
.room-am i {
  color: var(--accent);
  min-width: 16px;
}
.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.room-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.room-amenities {
  display: flex;
  flex-direction: row;
  margin-top: 8px;
}
.room-am {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.room-img-wrap {
  position: relative;   /* IMPORTANT */
  height: 200px;
  overflow: hidden;
}
.room-badge {
  position: absolute;
  top: 10px;
  left: 10px;

  padding: 4px 10px;   /* width kam ho jayega */
  font-size: 0.65rem;
  font-weight: 600;

  border-radius: 20px;
  letter-spacing: 0.05em;

  z-index: 2;
}
.room-badge {
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.book-btn {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 10px 18px;

  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  cursor: pointer;
  transition: all var(--transition);
}
.book-btn:hover {
  background: var(--accent);
  color: #0a0a0f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.35);
}

/* ===== BOOKING FORM ===== */
#book { background: var(--bg3); position: relative; overflow: hidden; }
#book::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1584132967334-10e028bd69f7?w=1400&q=60') center/cover;
  opacity: 0.05;
}
.booking-container {
  position: relative; z-index: 1;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 3rem;
  max-width: 900px; margin: 3rem auto 0; box-shadow: var(--shadow-lg);
}
.booking-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text3); font-weight: 500; }
.form-group input, .form-group select {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px 16px;
  color: var(--text); font-family: 'Montserrat', sans-serif; font-size: 0.85rem;
  outline: none; transition: border-color var(--transition); -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus { border-color: var(--accent); }
.form-group input::placeholder { color: var(--text3); }
.form-group select option { background: var(--bg2); color: var(--text); }
.form-submit {
  background: var(--accent); color: #0a0a0f;
  border: none; border-radius: 8px; padding: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: all var(--transition); width: 100%; grid-column: 1 / -1;
}
.form-submit:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,0.35); }
.booking-note { text-align: center; font-size: 0.72rem; color: var(--text3); margin-top: 1rem; }
.booking-note i { color: var(--accent); margin-right: 4px; }

/* ===== AMENITIES ===== */
#amenities { background: var(--bg2); }
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 3rem; }
.amenity-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; transition: all 0.3s;
}
.amenity-card:hover { transform: translateY(-4px); border-color: rgba(201,169,110,0.25); box-shadow: var(--shadow); }
.amenity-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--accent-soft); border: 1px solid rgba(201,169,110,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 1.4rem; color: var(--accent);
}
.amenity-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--text); margin-bottom: 6px; }
.amenity-desc  { font-size: 0.75rem; color: var(--text3); line-height: 1.6; }

/* ===== FOOD MENU ===== */
#menu { background: var(--bg); }
.menu-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.menu-tab {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 50px; padding: 10px 22px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text2); cursor: pointer; transition: all var(--transition);
  font-family: 'Montserrat', sans-serif;
}
.menu-tab.active, .menu-tab:hover { background: var(--accent); color: #0a0a0f; border-color: var(--accent); }
.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeIn 0.4s ease; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.menu-item {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; display: flex; transition: all 0.3s;
}
.menu-item:hover { border-color: rgba(201,169,110,0.2); transform: translateX(4px); }
.menu-item-img  { width: 100px; min-width: 100px; object-fit: cover; }
.menu-item-body { padding: 16px; flex: 1; }
.menu-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--text); margin-bottom: 4px; }
.menu-item-desc { font-size: 0.72rem; color: var(--text3); line-height: 1.6; margin-bottom: 8px; }
.menu-item-footer { display: flex; align-items: center; justify-content: space-between; }
.menu-item-price { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--accent); font-weight: 600; }
.menu-item-tag {
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 50px;
  background: var(--accent-soft); color: var(--accent); border: 1px solid rgba(201,169,110,0.2);
}

/* ===== GALLERY ===== */
#gallery { background: var(--bg2); padding: 80px 2rem; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-top: 3rem;
}
.gallery-item { overflow: hidden; border-radius: 10px; position: relative; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0); background-size: cover;
  display: flex; align-items: center; justify-content: center; transition: background 0.3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.3); }
.gallery-overlay i { color: white; font-size: 1.5rem; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay i { opacity: 1; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--bg3); text-align: center; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 3rem; }
.testi-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; text-align: left; transition: all 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { color: var(--accent); margin-bottom: 1rem; font-size: 0.85rem; }
.testi-text { font-size: 0.85rem; color: var(--text2); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent-soft); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--accent); font-weight: 600;
}
.testi-name { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.testi-loc  { font-size: 0.7rem; color: var(--text3); }

/* ===== CONTACT ===== */
#contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; margin-top: 2rem; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-soft); border: 1px solid rgba(201,169,110,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1rem; flex-shrink: 0;
}
.contact-detail .label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text3); margin-bottom: 4px; }
.contact-detail .value { font-size: 0.9rem; color: var(--text); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input, .contact-form textarea {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px 16px;
  color: var(--text); font-family: 'Montserrat', sans-serif; font-size: 0.85rem;
  outline: none; transition: border-color var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text3); }

/* ===== HELP / FAQ ===== */
#help { background: var(--bg2); }
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 12px; max-width: 800px; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer;
  font-size: 0.88rem; font-weight: 500; color: var(--text);
  transition: color var(--transition); user-select: none;
}
.faq-q:hover { color: var(--accent); }
.faq-q .arrow { color: var(--accent); transition: transform 0.3s; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 0.82rem; color: var(--text2); line-height: 1.8;
  padding: 0 24px; transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ===== FOOTER ===== */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 60px 2rem 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid var(--border); margin-bottom: 30px;
}
.footer-brand .logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--accent); margin-bottom: 1rem; display: block; }
.footer-desc { font-size: 0.8rem; color: var(--text3); line-height: 1.8; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 1.5rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text3); font-size: 0.85rem; cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.social-btn:hover { background: var(--accent); color: #0a0a0f; border-color: var(--accent); }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.8rem; color: var(--text3); text-decoration: none; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy   { font-size: 0.72rem; color: var(--text3); }
.footer-rating { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--text3); }

/* ===== SCROLL TO TOP ===== */
#scrollTop {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #0a0a0f;
  border: none; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(201,169,110,0.4);
  opacity: 0; transform: translateY(20px);
  transition: all 0.3s; pointer-events: none;
}
#scrollTop.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#scrollTop:hover { transform: translateY(-3px); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 5rem; right: 2rem; z-index: 9000;
  background: var(--accent); color: #0a0a0f;
  border-radius: var(--radius); padding: 14px 24px;
  font-size: 0.82rem; font-weight: 600;
  box-shadow: var(--shadow); transform: translateY(20px); opacity: 0;
  transition: all 0.4s; display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-right { display: flex; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-badge { bottom: -10px; right: 10px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  section { padding: 70px 1.5rem; }
  .hero-stats { gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .theme-switcher { display: flex; }
}

/* ===== RESPONSIVE ROOMS ===== */

@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .rooms-grid {
    grid-template-columns: 1fr;   /* 1 card per row */
  }

  .room-card {
    max-width: 100%;
  }
}
