/* ═══════════════════════════════════════════════════════════════
   DUNIA GROUP — MAIN STYLESHEET
   Sand & Desert Luxury Theme
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Frank+Ruhl+Libre:wght@300;400;500;700&family=Inter:wght@300;400;500;600&display=swap');

/* ─── CSS Custom Properties ─────────────────────────────────── */
:root {
  --sand-light:   #F5EDE0;
  --sand:         #E8D5B7;
  --sand-dark:    #C8A97E;
  --gold:         #B8973A;
  --gold-dark:    #8B6914;
  --charcoal:     #1A1614;
  --charcoal-2:   #2C2420;
  --charcoal-3:   #3D3028;
  --warm-white:   #FAF7F2;
  --text-muted:   #7A6A5A;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-hebrew:  'Frank Ruhl Libre', 'Playfair Display', serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  --radius-sm:    4px;
  --radius:       8px;
  --radius-lg:    16px;
  --radius-xl:    24px;

  --shadow-sm:    0 2px 12px rgba(26,22,20,.06);
  --shadow:       0 8px 40px rgba(26,22,20,.10);
  --shadow-lg:    0 20px 60px rgba(26,22,20,.16);
  --shadow-xl:    0 32px 80px rgba(26,22,20,.22);

  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h:        80px;
  --section-gap:  120px;
  --container-w:  1320px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* ─── Base Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
}

[lang="he"] h1,
[lang="he"] h2,
[lang="he"] h3,
[lang="he"] h4 {
  font-family: var(--font-hebrew);
}

p {
  line-height: 1.75;
  color: var(--charcoal-3);
}

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

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--warm-white);
  box-shadow: 0 4px 20px rgba(184,151,58,.35);
}

.btn-primary:hover {
  background: var(--gold-dark);
  box-shadow: 0 6px 28px rgba(184,151,58,.45);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--warm-white);
}

.btn-dark:hover {
  background: var(--charcoal-2);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 0.9rem;
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.78rem;
  min-height: 44px;
}

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(26, 22, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* Logo image */
.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Social icons in nav */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 16px;
}

.nav-social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  color: rgba(255,255,255,.75);
}

.nav-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.nav-social-link svg { display: block; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 48px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--warm-white);
  letter-spacing: 0.04em;
}

.nav-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.85);
  transition: background .2s, color .2s;
  position: relative;
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
}

.nav-links a:hover {
  background: rgba(255,255,255,0.16);
  color: var(--warm-white);
}

.nav-links a.active {
  background: rgba(250,247,242,0.15);
  color: var(--warm-white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(250,247,242,0.8);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  background: transparent;
}

.lang-toggle:hover {
  background: rgba(255,255,255,0.1);
  color: var(--warm-white);
  border-color: rgba(255,255,255,0.4);
}

.lang-toggle .lang-icon {
  font-size: 1rem;
}

.nav-book-btn {
  padding: 10px 24px;
  background: #FAF7F2;
  color: #1A1614;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav-book-btn:hover {
  background: #E8D5B7;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
  -webkit-appearance: none;
  appearance: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--warm-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background: #1A1614;
  z-index: 1002;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: calc(60px + env(safe-area-inset-top, 0px));
  padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
  padding-left: 24px;
  padding-right: 24px;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow-y: auto;
  box-sizing: border-box;
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-mobile a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: #1A1614;
  text-decoration: none;
  width: 100%;
  text-align: center;
  padding: 20px 24px;
  border-radius: 14px;
  background: #FAF7F2;
  border: none;
  transition: background .2s, transform .1s;
  letter-spacing: 0.04em;
  box-sizing: border-box;
  display: block;
}

.nav-mobile a:active {
  background: #E8D5B7;
  transform: scale(0.98);
}

.nav-mobile a[style*="gold"] {
  background: var(--gold);
  color: #fff !important;
}

.nav-mobile-close {
  position: absolute;
  top: calc(20px + env(safe-area-inset-top, 0px));
  right: 20px;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.nav-mobile-lang {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background .2s, color .2s;
  min-height: 48px;
  box-sizing: border-box;
  margin-top: 4px;
}

.nav-mobile-lang:hover,
.nav-mobile-lang:active {
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.9);
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transition: transform 0.05s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,22,20,0.3) 0%,
    rgba(26,22,20,0.2) 40%,
    rgba(26,22,20,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1.05;
  margin-bottom: 28px;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-title .word.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(250,247,242,0.78);
  max-width: 520px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 1.5s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250,247,242,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeIn 1s 2s forwards;
  opacity: 0;
}

.hero-scroll-hint .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(250,247,242,0.5), transparent);
  animation: scrollLine 1.5s 2s infinite;
}

/* ─── Pool Notice Banner ─────────────────────────────────────── */
.pool-notice {
  background: linear-gradient(135deg, #8B6914 0%, #B8973A 50%, #8B6914 100%);
  padding: 18px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pool-notice::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pool-notice-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pool-notice-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pool-notice-text {
  color: var(--warm-white);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.pool-notice-text .en-text,
.pool-notice-text .he-text {
  display: block;
}

.pool-notice-text .en-text {
  font-size: 0.88rem;
  opacity: 0.85;
  font-style: italic;
}

/* ─── Sections ───────────────────────────────────────────────── */
.section {
  padding: var(--section-gap) 0;
}

.section-sm {
  padding: 80px 0;
}

.section-lg {
  padding: 160px 0;
}

.section-dark {
  background: var(--charcoal);
}

.section-sand {
  background: var(--sand-light);
}

.section-sand-mid {
  background: var(--sand);
}

/* ─── About Section ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrap:hover img {
  transform: scale(1.04);
}

.about-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  height: 180px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content .section-subtitle {
  margin-bottom: 36px;
  max-width: 100%;
}

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

.stat-item {
  padding: 20px;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── Room Cards ─────────────────────────────────────────────── */
.rooms-section {
  background: var(--warm-white);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.room-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.room-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-card-img img {
  transform: scale(1.08);
}

.room-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--warm-white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.room-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-card-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.room-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.room-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.tag {
  padding: 4px 12px;
  background: var(--sand-light);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--charcoal-3);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.tag-gold {
  background: rgba(184,151,58,0.12);
  color: var(--gold-dark);
}

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--sand-light);
}

.room-capacity {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.room-capacity svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

/* ─── Amenities ──────────────────────────────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.amenity-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--sand);
  text-align: center;
  transition: var(--transition);
}

.amenity-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.amenity-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: var(--sand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
  background: var(--gold);
}

.amenity-card--soon {
  position: relative;
  overflow: hidden;
  border-color: rgba(197,160,96,0.5) !important;
  padding-top: 48px !important;
}

.amenity-card--soon::after {
  content: '⏳  בקרוב';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #d4b483, #c4a06a, #d4b483);
  background-size: 200% auto;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 7px 0;
  animation: shimmerBanner 2.5s linear infinite;
}

@keyframes shimmerBanner {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.amenity-coming-soon { display: none; }

.soon-dot { display: none; }

@keyframes soonPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

.amenity-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.amenity-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Room Details (Includes) ────────────────────────────────── */
.room-includes {
  background: var(--charcoal-2);
  padding: var(--section-gap) 0;
}

.room-includes .section-title,
.room-includes .section-label {
  color: var(--sand-light);
}

.room-includes .section-label {
  color: var(--gold);
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.include-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(200,169,126,0.2);
  color: var(--sand);
  font-size: 0.88rem;
  transition: var(--transition);
}

.include-item:hover {
  border-color: var(--gold);
  background: rgba(184,151,58,0.08);
}

.include-item .include-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ─── Check-in Info ──────────────────────────────────────────── */
.checkin-section {
  background: var(--sand-light);
  padding: 80px 0;
}

.checkin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.checkin-item {
  padding: 48px 36px;
  background: #fff;
  text-align: center;
  transition: var(--transition);
}

.checkin-item:hover {
  background: var(--charcoal);
}

.checkin-item:hover .checkin-label,
.checkin-item:hover .checkin-time {
  color: var(--warm-white);
}

.checkin-item:hover .checkin-icon {
  color: var(--gold);
}

.checkin-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--gold);
  display: block;
}

.checkin-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: var(--transition);
}

.checkin-time {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: var(--transition);
}

.checkin-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
  transition: var(--transition);
}

.checkin-item:hover .checkin-note {
  color: rgba(250,247,242,0.6);
}

/* ─── Gallery ────────────────────────────────────────────────── */
.gallery-section {
  padding: var(--section-gap) 0;
  overflow: hidden;
}

.gallery-header {
  padding: 0 48px;
  margin-bottom: 48px;
  max-width: var(--container-w);
  margin-left: auto;
  margin-right: auto;
}

.gallery-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 48px 20px;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--sand-dark) var(--sand-light);
  -webkit-overflow-scrolling: touch;
}

.gallery-strip::-webkit-scrollbar {
  height: 4px;
}

.gallery-strip::-webkit-scrollbar-track {
  background: var(--sand-light);
}

.gallery-strip::-webkit-scrollbar-thumb {
  background: var(--sand-dark);
  border-radius: 2px;
}

.gallery-strip.dragging {
  cursor: grabbing;
  user-select: none;
}

.gallery-item {
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

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

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

.gallery-item-sm {
  width: 280px;
  height: 360px;
}

.gallery-item-md {
  width: 400px;
  height: 360px;
}

.gallery-item-lg {
  width: 520px;
  height: 360px;
}

/* ─── Booking CTA ────────────────────────────────────────────── */
.booking-cta {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  text-align: center;
}

.booking-cta-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  filter: brightness(0.35);
}

.booking-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(26,22,20,0.4));
}

.booking-cta-content {
  position: relative;
  z-index: 2;
}

.booking-cta .section-title {
  color: var(--warm-white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 16px;
}

.booking-cta .section-subtitle {
  color: rgba(250,247,242,0.75);
  margin: 0 auto 44px;
}

.booking-cta .section-label {
  color: var(--sand-dark);
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  padding: 80px 0 0;
  color: var(--sand);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(200,169,126,0.15);
}

.footer-brand .nav-logo-main {
  color: var(--warm-white);
  font-size: 1.6rem;
}

.footer-brand .nav-logo-sub {
  color: var(--sand-dark);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-item .icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,126,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ─── Scroll Animations ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ─── Cursor Dot ─────────────────────────────────────────────── */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s, opacity 0.3s;
  mix-blend-mode: normal;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184,151,58,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease, transform 0.3s, width 0.3s, height 0.3s;
}

a:hover ~ .cursor-ring,
button:hover ~ .cursor-ring {
  width: 56px;
  height: 56px;
}

/* ─── Chatbot Widget ─────────────────────────────────────────── */
.chatbot-trigger {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  box-shadow: 0 8px 30px rgba(184,151,58,.4);
  transition: var(--transition);
  font-size: 1.4rem;
}

.chatbot-trigger:hover {
  transform: scale(1.1);
  background: var(--gold-dark);
}

.chatbot-trigger .trigger-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: #E53E3E;
  border-radius: 50%;
  border: 2px solid var(--warm-white);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.chatbot-panel {
  position: fixed;
  bottom: 108px;
  right: 32px;
  width: 360px;
  max-height: 540px;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 997;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  transform-origin: bottom right;
}

.chatbot-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chatbot-header {
  background: var(--charcoal);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.chatbot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.chatbot-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--warm-white);
}

.chatbot-status {
  font-size: 0.72rem;
  color: var(--sand-dark);
  display: flex;
  align-items: center;
  gap: 5px;
}

.chatbot-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #48BB78;
}

.chatbot-close {
  color: rgba(250,247,242,0.5);
  font-size: 1.1rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  padding: 4px;
}

.chatbot-close:hover {
  color: var(--warm-white);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--sand) transparent;
}

.chat-bubble {
  max-width: 82%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.86rem;
  line-height: 1.55;
}

.chat-bubble.bot {
  background: var(--sand-light);
  color: var(--charcoal);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.chat-bubble.user {
  background: var(--gold);
  color: var(--warm-white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 16px;
}

.quick-reply-btn {
  padding: 8px 14px;
  border: 1px solid var(--sand-dark);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--charcoal-3);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.quick-reply-btn:hover {
  background: var(--gold);
  color: var(--warm-white);
  border-color: var(--gold);
}

.chatbot-input-row {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid var(--sand);
}

.chatbot-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--sand);
  border-radius: 100px;
  background: #fff;
  color: var(--charcoal);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition);
}

.chatbot-input:focus {
  border-color: var(--gold);
}

.chatbot-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.chatbot-send:hover {
  background: var(--gold-dark);
}

/* Chatbot book link */
.chat-book-link {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 18px;
  background: var(--gold);
  color: var(--warm-white);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: var(--transition);
}

.chat-book-link:hover {
  background: var(--gold-dark);
}

.chat-info-card {
  background: var(--sand-light);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.chat-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-info-icon {
  font-size: 1.3rem;
}

.chat-info-label {
  font-size: 0.72rem;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chat-info-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
}

.chat-info-note {
  font-size: 0.72rem;
  color: var(--warm-gray);
  margin-top: 3px;
  line-height: 1.4;
}

/* ─── Language Toggle ────────────────────────────────────────── */
.lang-en [data-he],
.lang-he [data-en] {
  display: none;
}

/* ─── Keyframe Animations ────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollLine {
  0%   { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%  { opacity: 0.3; }
  100% { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ─── Admin Link (hidden) ────────────────────────────────────── */
.admin-link {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.4;
  transition: opacity var(--transition);
}
.admin-link:hover { opacity: 1; }

/* ─── Divider ────────────────────────────────────────────────── */
.divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

.divider-center {
  margin: 20px auto;
}

/* ─── Two Hotel Cards (group homepage style) ─────────────────── */
.hotels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}

.hotel-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 580px;
  cursor: pointer;
}

.hotel-card-img {
  position: absolute;
  inset: 0;
}

.hotel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hotel-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,22,20,0.85) 0%, rgba(26,22,20,0.1) 60%);
  transition: opacity var(--transition);
}

.hotel-card:hover .hotel-card-overlay {
  opacity: 0.9;
}

.hotel-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 40px;
}

.hotel-card-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 10px;
}

.hotel-card-name {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: 12px;
}

.hotel-card-desc {
  font-size: 0.9rem;
  color: rgba(250,247,242,0.7);
  margin-bottom: 24px;
  max-width: 340px;
  line-height: 1.65;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}

.hotel-card:hover .hotel-card-desc {
  opacity: 1;
  transform: translateY(0);
}

.hotel-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}

.hotel-card-link:hover {
  gap: 14px;
}

/* ─── Stagger helper ─────────────────────────────────────────── */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.6s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.7s; }

/* ─── Media Queries — Tablet ─────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-gap: 90px; }

  .container { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }

  .nav-links { gap: 24px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap img { height: 420px; }

  .rooms-grid { grid-template-columns: repeat(2, 1fr); }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .includes-grid { grid-template-columns: repeat(3, 1fr); }

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

  .hotels-grid { gap: 20px; }
  .hotel-card { height: 480px; }
}

/* ─── Media Queries — Mobile ─────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
    --section-gap: 72px;
  }

  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }

  .nav-links,
  .nav-actions { display: none; }

  .nav-hamburger { display: flex; }

  .nav-mobile { display: flex; }

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-subtitle { font-size: 0.95rem; }

  .pool-notice { padding: 14px 20px; }

  .about-stats { grid-template-columns: repeat(3, 1fr); }

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

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .includes-grid { grid-template-columns: repeat(2, 1fr); }

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

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .hotels-grid { grid-template-columns: 1fr; }
  .hotel-card { height: 420px; }

  .chatbot-panel { right: 16px; left: 16px; width: auto; }
  .chatbot-trigger { right: 20px; bottom: 24px; }

  .cursor-dot,
  .cursor-ring { display: none; }

  .gallery-strip { padding: 0 20px 16px; }
  .gallery-header { padding: 0 20px; }

  .section-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }

  .booking-cta { padding: 100px 0; }

  .btn-lg { padding: 14px 32px; }

  /* Touch targets */
  .btn-sm { min-height: 44px; padding: 12px 24px; }
  .nav-social-link { width: 40px; height: 40px; }
  .lang-toggle { padding: 10px 16px; min-height: 44px; }

  /* Hero fixed-nav overlap fix */
  .hero { padding-top: var(--nav-h); min-height: 600px; }
  .hero-content { padding: 0 20px; }

  /* Hide overflow decorations */
  .about-image-accent { display: none; }

  /* Mobile nav menu - bigger tap targets */
  .nav-mobile a { font-size: 1rem; }
  .nav-mobile-close { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }

  /* Room cards - full width comfortable */
  .room-card { border-radius: 12px; }
  .room-card-body { padding: 20px; }

  /* Booking CTA buttons stack nicely */
  .hero-actions { gap: 12px; width: 100%; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }

  /* Stats readable on mobile */
  .about-stats { gap: 16px; }

  /* Section padding tighter on mobile */
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr 1fr; }

  .room-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Full-width book button on small phones */
  .room-card-footer .btn { width: 100%; text-align: center; }

  /* Gallery items slightly smaller on tiny screens */
  .gallery-item-sm { width: 220px; height: 280px; }
  .gallery-item-md { width: 300px; height: 280px; }
  .gallery-item-lg { width: 380px; height: 280px; }

  /* Hero tighter on small phones */
  .hero-title { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .hero-subtitle { font-size: 0.88rem; }

  /* Section labels smaller */
  .section-label { font-size: 0.65rem; letter-spacing: .12em; }
}
