/* ==========================================================================
   ARABIAN GRILL — Premium Middle Eastern Fine Dining Website Stylesheet
   Website: arabiangrill.store | Support: support@arabiangrill.store
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Google Fonts & CSS Custom Properties (Variables)
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette — Elegant Dark & Refined Gold */
  --bg-obsidian: #0a0a0a;
  --bg-obsidian-card: #121212;
  --bg-obsidian-hover: #1a1a1a;
  --bg-cream: #0f0f0f;
  --bg-cream-card: #161616;
  --bg-cream-accent: #1e1e1e;

  /* Gold Palette */
  --gold-primary: #c5a059;
  --gold-hover: #d8b26a;
  --gold-dark: #9e7d3b;
  --gold-glow: rgba(197, 160, 89, 0.25);
  --gold-border: rgba(197, 160, 89, 0.2);
  --gold-border-strong: rgba(197, 160, 89, 0.45);

  /* Text Colors */
  --text-dark: #f5f2ed;
  --text-muted-dark: #a8a29e;
  --text-light: #f5f2ed;
  --text-muted-light: #a8a29e;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Spacing */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-lux: 0 20px 40px -15px rgba(0, 0, 0, 0.8);
  --shadow-gold-lux: 0 12px 35px -10px rgba(197, 160, 89, 0.25);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-obsidian);
  color: var(--text-light);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-light);
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Section Wrapper */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-light {
  background-color: var(--bg-cream);
  color: var(--text-dark);
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 {
  color: var(--text-dark);
}

/* Section Header Component */
.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
  position: relative;
}

.section-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--text-light);
  margin-bottom: 1rem;
}

.section-light .section-title {
  color: var(--text-dark);
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted-light);
}

.section-light .section-desc {
  color: var(--text-muted-dark);
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 1.25rem auto 0 auto;
}

/* --------------------------------------------------------------------------
   3. Preloader Animation
   -------------------------------------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-obsidian);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(212, 175, 55, 0.15);
  border-top-color: var(--gold-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* --------------------------------------------------------------------------
   4. Navigation Bar
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-normal);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.navbar.scrolled {
  padding: 0.85rem 0;
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon-svg {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--text-light);
  text-transform: uppercase;
  line-height: 1;
}

.brand-text span {
  color: var(--gold-primary);
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  letter-spacing: 0.28em;
  margin-top: 2px;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-muted-light);
  padding: 0.5rem 0;
  position: relative;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--gold-primary);
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-primary);
  color: #0a0a0a;
  box-shadow: var(--shadow-gold-lux);
  border: 1px solid var(--gold-primary);
}

.btn-gold:hover {
  background: var(--gold-hover);
  color: #0a0a0a;
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(197, 160, 89, 0.35);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: #0a0a0a;
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--bg-obsidian-card);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-dark:hover {
  background: var(--bg-obsidian-hover);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1002;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--gold-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

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

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

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

/* Mobile Drawer */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(14, 12, 10, 0.96);
  backdrop-filter: blur(16px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: var(--bg-obsidian);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: 
    linear-gradient(180deg, rgba(14, 12, 10, 0.75) 0%, rgba(14, 12, 10, 0.85) 60%, var(--bg-obsidian) 100%),
    radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.1);
  transform: scale(1.05);
  animation: heroZoom 20s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(135deg, #FFFFFF 20%, var(--gold-primary) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted-light);
  margin-bottom: 2.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.6;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-primary);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.scroll-indicator:hover {
  opacity: 1;
}

.mouse-icon {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gold-primary);
  border-radius: 20px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 22px; }
}

/* --------------------------------------------------------------------------
   6. About Section
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-box {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 520px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lux);
  position: relative;
  z-index: 1;
}

.about-img-frame {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-md);
  z-index: 0;
}

.about-content-text h3 {
  font-size: 2.25rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.about-content-text p {
  color: var(--text-muted-light);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.about-features-list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text-light);
}

.feature-icon-gold {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   7. Signature Dishes Section
   -------------------------------------------------------------------------- */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.dish-card {
  background-color: var(--bg-obsidian-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.dish-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border-strong);
  box-shadow: var(--shadow-gold-lux);
}

.dish-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.dish-img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

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

.dish-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(14, 12, 10, 0.85);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

.dish-info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dish-title {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 0.65rem;
}

.dish-desc {
  font-size: 0.95rem;
  color: var(--text-muted-light);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dish-spec-tag {
  font-size: 0.825rem;
  color: var(--gold-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* --------------------------------------------------------------------------
   8. Why Choose Us Section
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.why-card {
  background-color: var(--bg-obsidian-card);
  border: 1px solid rgba(212, 175, 55, 0.12);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  background-color: var(--bg-obsidian-hover);
  box-shadow: var(--shadow-gold-lux);
}

.why-icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.75rem;
  transition: all var(--transition-fast);
}

.why-card:hover .why-icon-wrap {
  background: var(--gold-primary);
  color: #0E0C0A;
}

.why-title {
  font-size: 1.35rem;
  color: var(--text-light);
  margin-bottom: 0.85rem;
}

.why-desc {
  font-size: 0.95rem;
  color: var(--text-muted-light);
}

/* --------------------------------------------------------------------------
   9. Dining Experience Section
   -------------------------------------------------------------------------- */
.experience-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.exp-content h3 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.exp-content p {
  color: var(--text-muted-dark);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.exp-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.exp-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.exp-bullet {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #0E0C0A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.exp-item-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.exp-item-desc {
  font-size: 0.925rem;
  color: var(--text-muted-dark);
}

.exp-gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.mosaic-img {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.mosaic-img-large {
  grid-column: span 2;
  height: 260px;
}

/* --------------------------------------------------------------------------
   10. Gallery Grid Section
   -------------------------------------------------------------------------- */
.gallery-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.65rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted-light);
  background: var(--bg-obsidian-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50px;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  color: #0E0C0A;
  background: var(--gold-primary);
  border-color: var(--gold-hover);
  box-shadow: var(--shadow-gold-lux);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(14, 12, 10, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

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

.gallery-caption {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.gallery-sub {
  font-size: 0.85rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(14, 12, 10, 0.95);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 900px;
  width: 100%;
  position: relative;
  text-align: center;
}

.lightbox-img {
  max-height: 80vh;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border-strong);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--gold-primary);
  font-size: 2rem;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   11. Reservation CTA & Contact Section
   -------------------------------------------------------------------------- */
.reservation-banner {
  background: linear-gradient(135deg, #1A1512 0%, #0E0C0A 100%);
  border: 1px solid var(--gold-border-strong);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold-lux);
}

.reservation-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.res-content h3 {
  font-size: 2.75rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.res-content p {
  color: var(--text-muted-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  outline: none;
  transition: all var(--transition-fast);
}

.section-light .form-input,
.section-light .form-select,
.section-light .form-textarea {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--text-dark);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Contact Info Cards */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-obsidian-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast);
}

.contact-info-card:hover {
  transform: translateX(6px);
  border-color: var(--gold-primary);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-card-title {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.contact-card-text {
  font-size: 0.95rem;
  color: var(--text-muted-light);
}

/* Map Frame */
.map-frame {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  box-shadow: var(--shadow-lux);
}

/* --------------------------------------------------------------------------
   12. Privacy Policy Page Styling
   -------------------------------------------------------------------------- */
.privacy-wrapper {
  background-color: var(--bg-obsidian-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 3.5rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-lux);
}

.privacy-content-card {
  min-height: 400px;
  background: rgba(255, 255, 255, 0.02);
  border: 2px dashed rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-sm);
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.privacy-placeholder-note {
  font-size: 1.15rem;
  color: var(--gold-primary);
  max-width: 600px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   13. Footer Section
   -------------------------------------------------------------------------- */
.footer {
  background-color: #0A0807;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-muted-light);
  margin-top: 1.25rem;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-title {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

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

.footer-links a:hover {
  color: var(--gold-primary);
  transform: translateX(4px);
}

.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 0.5rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted-light);
}

/* --------------------------------------------------------------------------
   14. Toast Notification & Scroll To Top
   -------------------------------------------------------------------------- */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-obsidian-card);
  border: 1px solid var(--gold-primary);
  color: var(--text-light);
  padding: 1.25rem 2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-gold-lux);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--gold-primary);
  font-size: 1.5rem;
}

.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #0E0C0A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-gold-lux);
  z-index: 900;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   15. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .about-grid,
  .experience-wrap,
  .reservation-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .about-img-main {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

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

  .mobile-toggle {
    display: flex;
  }

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

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

  .dishes-grid,
  .why-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .privacy-wrapper {
    padding: 2rem 1.25rem;
  }
}
