/* ==========================================================================
   LAS CARAÍBAS - BAÍA SEIXAL OCEAN FRONT
   Modern Design System & CSS Stylesheet (Dark & Light Mode)
   Cookie Banner & Mobile Optimization
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette - Atlantic Ocean (Default Dark Mode) */
  --primary-deep: #0b1e36;
  --primary-navy: #132f50;
  --primary-ocean: #1e4a7a;
  --accent-gold: #e5a93b;
  --accent-gold-hover: #cf9326;
  --accent-terracotta: #e05a47;
  --accent-teal: #0d9488;

  --bg-main: #070f1a;
  --bg-card: rgba(19, 47, 80, 0.55);
  --bg-card-hover: rgba(30, 74, 122, 0.7);
  --bg-glass: rgba(11, 30, 54, 0.88);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border-light: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(229, 169, 59, 0.35);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 25px rgba(229, 169, 59, 0.25);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   Light Mode Overrides
   -------------------------------------------------------------------------- */
body.light-mode {
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --bg-glass: rgba(255, 255, 255, 0.94);
  --text-main: #0f172a;
  --text-muted: #334155;
  --text-dim: #64748b;
  --border-light: rgba(15, 23, 42, 0.12);
  --border-gold: rgba(229, 169, 59, 0.6);
}

body.light-mode .brand-name {
  color: #0f172a;
}

body.light-mode .nav-link {
  color: #334155;
}

body.light-mode .nav-link:hover,
body.light-mode .nav-link.active {
  color: #0f172a;
}

body.light-mode .slide.active {
  opacity: 0.92;
}

body.light-mode .section-title {
  color: #0f172a;
}

body.light-mode .menu-section,
body.light-mode .reviews-section {
  background: #f1f5f9;
}

body.light-mode .menu-card,
body.light-mode .review-card,
body.light-mode .hours-card,
body.light-mode .rating-overview-box,
body.light-mode .modal-card,
body.light-mode .landmark-card,
body.light-mode .cookie-banner {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

body.light-mode .hours-row.active-day {
  background: rgba(229, 169, 59, 0.12);
  border-left-color: var(--accent-gold);
}

body.light-mode .full-menu-cta {
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
}

body.light-mode .full-menu-cta h3 {
  color: #0f172a;
}

body.light-mode .footer {
  background: #e2e8f0;
  color: #334155;
  border-top-color: rgba(15, 23, 42, 0.1);
}

body.light-mode .theme-btn,
body.light-mode .lang-btn {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.15);
  color: #0f172a;
}

body.light-mode .social-icon {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.15);
  color: #0f172a;
}

body.light-mode .travel-chip {
  color: #0f172a;
}

body.light-mode .mobile-nav {
  background: rgba(248, 250, 252, 0.98);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

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

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

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

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --------------------------------------------------------------------------
   3. Header Navigation (Glassmorphism & Mobile Drawer)
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo img {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  border: 2px solid var(--accent-gold);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.brand-title {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.2;
}

.brand-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-fast);
  border-radius: 2px;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #c98822 100%);
  color: #0b1e36;
  box-shadow: 0 4px 14px rgba(229, 169, 59, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 169, 59, 0.6);
  background: linear-gradient(135deg, #f0b548 0%, #db9529 100%);
}

.btn-outline {
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  background: rgba(229, 169, 59, 0.08);
}

.btn-outline:hover {
  background: var(--accent-gold);
  color: #0b1e36;
  border-color: var(--accent-gold);
}

.lang-btn,
.theme-btn {
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-fast);
}

.lang-btn:hover,
.theme-btn:hover {
  border-color: var(--accent-gold);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--text-main);
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

/* Branded Maps & Social Media Action Buttons */
.brand-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.brand-icon-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

.btn-gmaps {
  background: rgba(66, 133, 244, 0.12);
  border: 1px solid rgba(66, 133, 244, 0.45);
  color: #3b82f6;
}

.btn-gmaps:hover {
  background: rgba(66, 133, 244, 0.25);
  border-color: #2563eb;
  color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(66, 133, 244, 0.35);
}

.btn-applemaps {
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: var(--text-main);
}

.btn-applemaps:hover {
  background: rgba(148, 163, 184, 0.25);
  border-color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.btn-instagram {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.15) 0%, rgba(131, 58, 180, 0.15) 100%);
  border: 1px solid rgba(225, 48, 108, 0.45);
  color: #e1306c;
}

.btn-instagram:hover {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.3) 0%, rgba(131, 58, 180, 0.3) 100%);
  border-color: #e1306c;
  color: #c13584;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(225, 48, 108, 0.35);
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
}

/* --------------------------------------------------------------------------
   4. Hero Section with Custom Background Image (bg.jpg)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 2rem;
  overflow: hidden;
  background-image: url('./assets/images/bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 8s ease;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.slide.active {
  opacity: 0.75;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(11, 28, 48, 0.45) 0%, rgba(6, 17, 31, 0.88) 100%),
              linear-gradient(to bottom, rgba(6, 17, 31, 0.35) 0%, rgba(6, 17, 31, 0.78) 85%, var(--bg-main) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 1rem 1rem 2.5rem;
}

/* Hero Animated Logo & Continuous Zoom Loop Effect */
.hero-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.85rem;
  perspective: 1000px;
}

.hero-logo-img {
  width: clamp(160px, 22vw, 240px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.55));
  animation: heroLogoZoomLoop 4.5s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
  will-change: transform, filter;
  cursor: pointer;
}

.hero-logo-img:hover {
  transform: scale(1.15) rotate(2deg);
  filter: drop-shadow(0 16px 36px rgba(229, 169, 59, 0.65));
}

@keyframes heroLogoZoomLoop {
  0% {
    transform: scale(0.96) translateY(0);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.4));
  }
  50% {
    transform: scale(1.10) translateY(-8px);
    filter: drop-shadow(0 22px 36px rgba(229, 169, 59, 0.6));
  }
  100% {
    transform: scale(0.96) translateY(0);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.4));
  }
}

/* Glassmorphic Responsive Badges */
.badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.rating-badge,
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(11, 28, 48, 0.72);
  border: 1px solid rgba(229, 169, 59, 0.4);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: #f8fafc;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.rating-badge:hover,
.status-badge:hover {
  transform: translateY(-1px);
  border-color: var(--accent-gold);
}

.rating-badge {
  color: #fcd34d;
  border-color: rgba(251, 191, 36, 0.5);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.status-dot.open {
  background-color: #22c55e;
  box-shadow: 0 0 10px #22c55e;
}

.status-dot.closed {
  background-color: #ef4444;
  box-shadow: 0 0 10px #ef4444;
}

/* Typography Improvements */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.2vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.75);
  letter-spacing: -0.01em;
}

.hero-title span {
  background: linear-gradient(135deg, #fef3c7 0%, #f59e0b 60%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(217, 119, 6, 0.45));
}

.hero-subtitle {
  font-size: clamp(0.925rem, 1.8vw, 1.175rem);
  color: rgba(241, 245, 249, 0.94);
  max-width: 700px;
  margin: 0 auto 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0b1e36;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
  font-weight: 700;
  padding: 0.8rem 1.75rem;
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.65);
}

.hero-buttons .btn-outline {
  background: rgba(11, 28, 48, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  padding: 0.8rem 1.75rem;
}

.hero-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Glassmorphic Hero Stats Bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.1rem 1.5rem;
  background: rgba(11, 28, 48, 0.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  color: #fbbf24;
  font-weight: 800;
  line-height: 1.2;
}

.stat-item p {
  font-size: 0.75rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   5. Section Titles & General Elements
   -------------------------------------------------------------------------- */
.section {
  padding: 5rem 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 1px 700px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.4rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

.section-desc {
  margin-top: 0.65rem;
  color: var(--text-muted);
  font-size: 1rem;
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-badge-floating {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 240px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.about-badge-floating .icon {
  font-size: 1.8rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.about-badge-floating p {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  color: var(--text-main);
  margin-bottom: 1.1rem;
  line-height: 1.25;
}

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

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(229, 169, 59, 0.15);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.feature-text h4 {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-main);
}

.feature-text p {
  font-size: 0.825rem;
  color: var(--text-dim);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   7. Featured Plates Grid
   -------------------------------------------------------------------------- */
.menu-section {
  background: linear-gradient(to bottom, var(--bg-main), rgba(19, 47, 80, 0.3), var(--bg-main));
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.menu-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.menu-card-img {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.menu-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11, 30, 54, 0.88);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-card-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}

.item-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.item-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-gold);
  white-space: nowrap;
}

.item-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex: 1;
  line-height: 1.5;
}

.full-menu-cta {
  background: linear-gradient(135deg, rgba(30, 74, 122, 0.8), rgba(11, 30, 54, 0.9));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.full-menu-cta h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #ffffff;
  margin-bottom: 0.65rem;
}

.full-menu-cta p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   8. Photo Gallery Grid & Lightbox
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  border: 1px solid var(--border-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 30, 54, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
  backdrop-filter: blur(3px);
}

.gallery-overlay .zoom-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #0b1e36;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transform: scale(0.7);
  transition: var(--transition-fast);
}

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

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

.gallery-item:hover .gallery-overlay .zoom-icon {
  transform: scale(1);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 12, 22, 0.92);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 1000px;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
}

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

.lightbox-close:hover {
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   9. Customer Reviews & Ratings Section
   -------------------------------------------------------------------------- */
.reviews-section {
  background: linear-gradient(to bottom, var(--bg-main), rgba(19, 47, 80, 0.3), var(--bg-main));
}

.rating-overview-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 860px;
  margin: 0 auto 3rem;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.score-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.stars {
  color: var(--accent-gold);
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-fast);
}

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

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.review-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.author-info p {
  font-size: 0.775rem;
  color: var(--text-dim);
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   10. Hours & Location Section Enhancements (Complete 7-Day System)
   -------------------------------------------------------------------------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.hours-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
}

.hours-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hours-schedule {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-left: 3px solid transparent;
  font-size: 0.925rem;
  transition: var(--transition-fast);
}

.hours-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hours-row.active-day {
  background: rgba(229, 169, 59, 0.15);
  border-color: var(--border-gold);
  border-left-color: var(--accent-gold);
  box-shadow: 0 4px 14px rgba(229, 169, 59, 0.15);
}

.hours-row.closed {
  background: rgba(239, 68, 68, 0.06);
  border-color: rgba(239, 68, 68, 0.2);
  border-left-color: var(--accent-terracotta);
}

.day-name {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-main);
}

.today-tag {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #c98822 100%);
  color: #0b1e36;
  font-size: 0.675rem;
  font-weight: 800;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.time {
  font-weight: 600;
  color: var(--accent-gold);
}

.hours-row.closed .time {
  color: var(--accent-terracotta);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  height: 540px;
  position: relative;
}

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

/* Nearby Landmarks Grid */
.landmarks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.landmark-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
}

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

.landmark-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(229, 169, 59, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.landmark-info {
  flex: 1;
  min-width: 0;
}

.landmark-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.landmark-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.travel-times-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  padding: 0.85rem;
  background: rgba(229, 169, 59, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
}

.travel-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-main);
}

/* --------------------------------------------------------------------------
   11. Contact & Footer Section
   -------------------------------------------------------------------------- */
.footer {
  background: #040912;
  border-top: 1px solid var(--border-light);
  padding: 3.5rem 0 2rem;
  color: var(--text-muted);
}

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

.footer-brand h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.65rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  gap: 0.85rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--accent-gold);
  color: #0b1e36;
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.825rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   12. Reservation Modal & Floating Action Button
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(5, 12, 22, 0.85);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: #0c1c30;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

body.light-mode .modal-card {
  background: #ffffff;
  border-color: var(--border-gold);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--text-main);
}

/* Floating Action Call Button */
.floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 990;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  padding: 0.8rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.floating-call:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* --------------------------------------------------------------------------
   13. Simple Cookie Banner Component
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 540px;
  margin: 0 auto;
  z-index: 1050;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.35rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
  transform: translateY(20px);
  opacity: 0;
}

.cookie-banner.show {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
}

.cookie-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.cookie-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-btn-accept {
  padding: 0.5rem 1rem;
  font-size: 0.825rem;
}

.cookie-btn-decline {
  padding: 0.5rem 0.85rem;
  font-size: 0.825rem;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

.cookie-btn-decline:hover {
  color: var(--text-main);
  border-color: var(--text-muted);
}

/* ==========================================================================
   14. 1000% Mobile Responsive Breakpoints & Overlap Protection
   ========================================================================== */

/* Tablet Screens (<= 1024px) */
@media (max-width: 1024px) {

  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

  .map-container {
    height: 440px;
  }

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

/* Mobile Screens (<= 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .navbar-container {
    height: 65px;
  }

  .brand-logo img {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-tagline {
    font-size: 0.6rem;
  }

  .nav-links,
  .nav-actions .theme-btn,
  .nav-actions .lang-btn,
  .nav-actions .btn-outline,
  .nav-actions .btn-primary {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem 1.1rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }

  .mobile-nav.active {
    display: flex;
    animation: fadeInDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-nav .nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.35rem 0;
    border-bottom: 1px dashed var(--border-light);
  }

  .mobile-nav-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .hero {
    padding-top: 75px;
    min-height: 88vh;
    padding-bottom: 2.5rem;
  }

  .hero-content {
    padding: 1rem 0.25rem;
  }

  .badge-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
  }

  .rating-badge,
  .status-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 340px;
    text-align: center;
    font-size: 0.775rem;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
  }

  .hero-title {
    font-size: clamp(1.85rem, 7.5vw, 2.5rem);
    line-height: 1.18;
    margin-bottom: 0.85rem;
  }

  .hero-subtitle {
    font-size: 0.925rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    padding: 0 0.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    height: 50px;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.85rem 0.65rem;
    background: rgba(11, 28, 48, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .stat-item h3 {
    font-size: clamp(1.2rem, 4.5vw, 1.5rem);
    color: #fbbf24;
    margin-bottom: 0.1rem;
  }

  .stat-item p {
    font-size: 0.65rem;
    color: #cbd5e1;
    line-height: 1.25;
    letter-spacing: 0.02em;
  }

  .section {
    padding: 3.25rem 0;
  }

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

  .about-badge-floating {
    position: relative;
    bottom: 0;
    right: 0;
    max-width: 100%;
    margin-top: 1rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .menu-card-img {
    height: 200px;
  }

  .menu-header-row {
    flex-direction: row;
    align-items: center;
  }

  .item-title {
    font-size: 1.05rem;
  }

  .item-price {
    font-size: 1.1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .gallery-item {
    height: 160px;
  }

  .rating-overview-box {
    flex-direction: column;
    padding: 1.5rem 1rem;
    text-align: center;
    gap: 1.25rem;
  }

  .rating-overview-box .btn {
    width: 100%;
  }

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

  .hours-card {
    padding: 1.35rem 1rem;
  }

  .hours-row {
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
  }

  .map-container {
    height: 320px;
  }

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

  .landmark-card {
    padding: 1.1rem;
  }

  .travel-times-bar {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .floating-call span {
    display: none;
  }

  .floating-call {
    padding: 0.85rem;
    border-radius: 50%;
    font-size: 1.3rem;
    bottom: 16px;
    right: 16px;
  }

  /* Mobile Cookie Banner Adjustments */
  .cookie-banner {
    bottom: 15px;
    left: 12px;
    right: 12px;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.85rem;
  }

  .cookie-actions {
    justify-content: flex-end;
  }

  .cookie-actions .btn {
    flex: 1;
  }
}

/* Small Smartphone Screens (<= 480px) */
@media (max-width: 480px) {
  .hero-content {
    padding-top: 0.5rem;
    padding-bottom: 2rem;
  }

  .hero-logo-img {
    width: clamp(130px, 28vw, 180px);
  }

  .rating-badge,
  .status-badge {
    padding: 0.35rem 0.7rem;
    font-size: 0.725rem;
  }

  .hero-title {
    font-size: 1.85rem;
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .gallery-item {
    height: 135px;
  }

  .modal-card {
    padding: 1.5rem 1rem;
  }
}