/* ============================================================
   ROZANA — Syrian Cuisine & Premium Lounge
   style.css — All visual styling
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  --navy:         #0B0E1A;
  --charcoal:     #0D0D0D;
  --gold:         #C9A84C;
  --gold-light:   #E2C06E;
  --amber:        #D4943A;
  --cream:        #F5ECD7;
  --cream-muted:  #C8B89A;
  --surface:      #13172A;
  --surface-2:    #1A1F35;
  --border:       rgba(201, 168, 76, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--navy);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

/* ── UTILITY CLASSES ──────────────────────────────────────── */
.section-pad {
  padding: 100px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.gold-line {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 18px auto;
}

.gold-line-left {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 18px 0;
}

/* Fade-in animation — triggered by JS adding .visible */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-1px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 28px;
  margin-top: 28px;
  transition: background 0.3s;
}
.btn-whatsapp:hover {
  background: var(--gold-light);
}
.btn-whatsapp svg {
  flex-shrink: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.site-nav.scrolled {
  background: rgba(11, 14, 26, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 40px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
}

.nav-reserve {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 22px;
  transition: background 0.3s, color 0.3s;
}
.nav-reserve:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 14, 26, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--cream);
  transition: color 0.3s;
}
.mobile-menu a:hover {
  color: var(--gold);
}
.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 36px;
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 14, 26, 0.30) 0%,
    rgba(11, 14, 26, 0.55) 55%,
    rgba(11, 14, 26, 0.90) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 300;
  letter-spacing: 0.28em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: 0.70rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 48px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Animated scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.scroll-indicator svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}
.scroll-indicator-line {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1;   transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.4; transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   EXPERIENCE SECTION
   ============================================================ */
.experience-section {
  background: var(--navy);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Decorative border frame around image */
.experience-img-frame {
  position: relative;
}
.experience-img-frame::before {
  content: '';
  position: absolute;
  top: -18px;
  left: -18px;
  right: 18px;
  bottom: 18px;
  border: 1px solid var(--border);
  pointer-events: none;
}
.experience-img-frame img {
  position: relative;
  height: 580px;
}

.experience-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 28px;
}
.experience-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.experience-text p {
  font-size: 0.88rem;
  color: var(--cream-muted);
  margin-bottom: 18px;
  line-height: 1.9;
}

.experience-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.experience-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--cream-muted);
  letter-spacing: 0.04em;
}
.experience-features li::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   SIGNATURE DISHES SECTION
   ============================================================ */
.dishes-section {
  background: var(--charcoal);
}

.dishes-header {
  text-align: center;
  padding: 100px 0 0;
}
.dishes-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--cream);
  margin-top: 12px;
}

/* Each dish row is a two-column grid */
.dish-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2px;
}

.dish-image {
  overflow: hidden;
}
.dish-image img {
  height: 520px;
  transition: transform 0.7s ease;
}
.dish-image:hover img {
  transform: scale(1.04);
}

.dish-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: var(--surface);
}

/* Reversed row — image on right */
.dish-row.reversed .dish-image {
  order: 2;
}
.dish-row.reversed .dish-info {
  order: 1;
}

.dish-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.09);
  line-height: 1;
  margin-bottom: -20px;
}

.dish-category {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.dish-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 16px;
}

.dish-description {
  font-size: 0.85rem;
  color: var(--cream-muted);
  line-height: 1.85;
  max-width: 380px;
}

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  background: var(--navy);
}

.menu-header {
  text-align: center;
  margin-bottom: 52px;
}
.menu-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--cream);
  margin-top: 12px;
}

/* Tab buttons */
.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--border);
}

.menu-tab-btn {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-muted);
  padding: 14px 24px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.3s, border-color 0.3s;
}
.menu-tab-btn:hover {
  color: var(--gold);
}
.menu-tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Tab panels */
.menu-panel {
  display: none;
}
.menu-panel.active {
  display: block;
}

/* Menu items two-column grid */
.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.menu-item {
  padding: 28px 32px;
  background: var(--surface);
  border-left: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.menu-item:hover {
  border-left-color: var(--gold);
  background: var(--surface-2);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}

.menu-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
}

.menu-item .price {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item .dish-description {
  font-size: 0.78rem;
  color: var(--cream-muted);
  line-height: 1.75;
}

/* ============================================================
   SHISHA SECTION
   ============================================================ */
.shisha-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.shisha-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/shisha-bg.png');
  background-size: cover;
  background-position: center;
}

.shisha-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 14, 26, 0.93) 0%,
    rgba(11, 14, 26, 0.72) 60%,
    rgba(11, 14, 26, 0.88) 100%
  );
}

/* Floating smoke particle */
.smoke-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  animation: smokeRise linear infinite;
  pointer-events: none;
}

@keyframes smokeRise {
  0%   { transform: translateY(0)    scale(1); opacity: 0;   }
  15%  { opacity: 1; }
  80%  { opacity: 0.25; }
  100% { transform: translateY(-300px) scale(3); opacity: 0; }
}

.shisha-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.shisha-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
}
.shisha-text > p {
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.9;
  margin-bottom: 40px;
}

.shisha-flavors {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.flavor-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}
.flavor-item:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.4);
}

.flavor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.flavor-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
}

.flavor-item span {
  margin-left: auto;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--cream-muted);
}

.shisha-image {
  overflow: hidden;
}
.shisha-image img {
  height: 600px;
}

/* ============================================================
   DESSERTS SECTION
   ============================================================ */
.desserts-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.desserts-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/desserts-showcase.png');
  background-size: cover;
  background-position: center;
}

.desserts-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 14, 26, 0.92) 0%,
    rgba(11, 14, 26, 0.55) 55%,
    rgba(11, 14, 26, 0.18) 100%
  );
}

.desserts-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.desserts-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
}
.desserts-content > p {
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.9;
  margin-bottom: 32px;
}

.dessert-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dessert-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.dessert-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  background: var(--charcoal);
}

.gallery-header {
  text-align: center;
  margin-bottom: 52px;
}
.gallery-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--cream);
  margin-top: 12px;
}

.gallery-grid {
  columns: 3;
  column-gap: 6px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  display: block;
  width: 100%;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 168, 76, 0.15);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background: var(--navy);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 52px;
}
.testimonials-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--cream);
  margin-top: 12px;
}

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

.testimonial-card {
  background: var(--surface);
  padding: 44px 40px;
  border-top: 1px solid var(--border);
  transition: background 0.3s;
}
.testimonial-card:hover {
  background: var(--surface-2);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.star {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.85;
  margin-bottom: 28px;
}

.testimonial-author strong {
  display: block;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.testimonial-author span {
  display: block;
  font-size: 0.68rem;
  color: var(--gold);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.location-section {
  background: var(--charcoal);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.map-wrapper iframe {
  width: 100%;
  height: 440px;
  border: none;
  /* Dark map filter */
  filter: grayscale(1) invert(0.9) contrast(0.85) brightness(0.5) hue-rotate(185deg);
}

.location-details h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 36px;
}

.detail-block {
  margin-bottom: 30px;
}
.detail-block .section-label {
  display: block;
  margin-bottom: 10px;
}
.detail-block p,
.detail-block address {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.9;
}
.detail-block a {
  color: var(--cream-muted);
  transition: color 0.3s;
}
.detail-block a:hover {
  color: var(--gold);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  font-size: 0.82rem;
  color: var(--cream-muted);
  padding: 6px 0;
}
.hours-table td:last-child {
  text-align: right;
  color: var(--cream);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}

.footer-top {
  text-align: center;
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  font-weight: 300;
  letter-spacing: 0.42em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 12px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 36px;
}
.footer-nav a {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: var(--gold);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
}
.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--cream-muted);
  transition: border-color 0.3s, color 0.3s;
}
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.68rem;
  color: rgba(200, 184, 154, 0.38);
  letter-spacing: 0.08em;
}

/* Arabic-inspired geometric dot accent */
.footer-geo {
  display: flex;
  gap: 6px;
  opacity: 0.18;
}
.geo-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .site-nav {
    padding: 20px 24px;
  }
  .site-nav.scrolled {
    padding: 14px 24px;
  }
  .nav-links,
  .nav-reserve {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }

  /* Stacked grids */
  .experience-grid,
  .shisha-content,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .experience-img-frame img {
    height: 320px;
  }
  .shisha-image {
    display: none;
  }

  /* Dish rows stack vertically */
  .dish-row,
  .dish-row.reversed {
    grid-template-columns: 1fr;
  }
  .dish-row.reversed .dish-image {
    order: 0;
  }
  .dish-row.reversed .dish-info {
    order: 1;
  }
  .dish-image img {
    height: 280px;
  }
  .dish-info {
    padding: 40px 32px;
  }

  .menu-items-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    columns: 2;
  }
  .desserts-content {
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-nav {
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 20px;
  }
  .section-pad {
    padding: 72px 0;
  }
  .hero-title {
    font-size: 18vw;
  }
  .gallery-grid {
    columns: 1;
  }
  .menu-tab-btn {
    padding: 10px 12px;
    font-size: 0.60rem;
  }
}
