/* ==========================================================================
   PIZZERIA VESUVIO - PREMIUM DESIGN SYSTEM & STYLE SHEET
   ========================================================================== */

/* Import Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

/* Design Tokens & CSS Variables */
:root {
  /* Color Palette (HSL System) */
  --bg-cream: hsl(36, 42%, 96%);
  --bg-cream-dark: hsl(36, 35%, 92%);
  --accent-tomato: hsl(8, 76%, 44%);
  --accent-tomato-hover: hsl(8, 76%, 38%);
  --accent-tomato-light: hsl(8, 76%, 95%);
  --accent-olive: hsl(110, 24%, 22%);
  --accent-olive-hover: hsl(110, 24%, 18%);
  --accent-olive-light: hsl(110, 24%, 93%);
  --accent-gold: hsl(45, 75%, 50%);
  --accent-gold-light: hsl(45, 75%, 92%);
  --text-charcoal: hsl(24, 18%, 13%);
  --text-muted: hsl(24, 10%, 45%);
  --white-pure: hsl(0, 0%, 100%);
  --white-translucent: hsla(0, 0%, 100%, 0.85);
  
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  
  /* Shadows & Elevations */
  --shadow-sm: 0 2px 8px rgba(36, 26, 21, 0.04);
  --shadow-md: 0 8px 24px rgba(36, 26, 21, 0.08);
  --shadow-lg: 0 16px 40px rgba(36, 26, 21, 0.12);
  --shadow-tomato: 0 8px 24px hsla(8, 76%, 44%, 0.2);
  --shadow-olive: 0 8px 24px hsla(110, 24%, 22%, 0.15);
  
  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --border-gold: 1px solid hsla(45, 75%, 50%, 0.25);
  --border-cream: 1px solid hsla(24, 18%, 13%, 0.08);

  /* Layout Constants */
  --header-height: 80px;
  --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base Resets & Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--bg-cream);
  color: var(--text-charcoal);
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Common Text Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

.text-center { text-align: center; }
.text-tomato { color: var(--accent-tomato); }
.text-olive { color: var(--accent-olive); }
.text-gold { color: var(--accent-gold); }

/* Premium Layout Grid / Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

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

/* ==========================================================================
   1. ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background-color: var(--accent-olive);
  color: var(--white-pure);
  text-align: center;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.announcement-bar span {
  display: inline-block;
  animation: pulse-light 3s infinite ease-in-out;
}

@keyframes pulse-light {
  0%, 100% { opacity: 0.95; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

/* ==========================================================================
   2. STICKY HEADER & NAVIGATION
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--white-translucent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--border-cream);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-sm);
  background-color: hsla(36, 42%, 96%, 0.9);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-brand {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--accent-tomato);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.logo-brand span {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-olive);
}

.logo-brand:hover {
  transform: translateY(-1px);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-charcoal);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-tomato);
  transition: var(--transition-smooth);
}

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

.nav-link:hover {
  color: var(--accent-tomato);
}

/* Header Action CTA */
.header-cta {
  display: flex;
  align-items: center;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-bounce);
}

.btn-tomato {
  background-color: var(--accent-tomato);
  color: var(--white-pure);
  box-shadow: var(--shadow-tomato);
}

.btn-tomato:hover {
  background-color: var(--accent-tomato-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px hsla(8, 76%, 44%, 0.35);
}

.btn-tomato:active {
  transform: translateY(-1px);
}

.btn-olive {
  background-color: var(--accent-olive);
  color: var(--white-pure);
  box-shadow: var(--shadow-olive);
}

.btn-olive:hover {
  background-color: var(--accent-olive-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px hsla(110, 24%, 22%, 0.3);
}

.btn-outline {
  border: 2px solid var(--accent-tomato);
  color: var(--accent-tomato);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--accent-tomato);
  color: var(--white-pure);
  transform: translateY(-3px);
  box-shadow: var(--shadow-tomato);
}

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

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-charcoal);
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

/* Active Hamburger state */
.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 Responsive Menu Rules */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-cream);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 999;
    transition: var(--transition-smooth);
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .header-cta {
    display: none; /* Relocate/hide on mobile header */
  }
  
  .nav-menu .header-cta {
    display: block; /* Show inside slide-in menu */
  }
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background-color: var(--text-charcoal);
  color: var(--white-pure);
  padding: 80px 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: scale(1.1);
  transform: scale(1.05);
  animation: slow-zoom 20s infinite alternate ease-in-out;
}

@keyframes slow-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(24, 18, 13, 0.7) 0%,
    rgba(24, 18, 13, 0.85) 50%,
    rgba(24, 18, 13, 0.95) 100%
  );
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  background-color: rgba(212, 175, 55, 0.08);
  text-transform: uppercase;
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-title span {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  display: block;
  font-size: 40px;
  color: var(--bg-cream);
  margin-top: 5px;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.6;
}

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

/* Trust Badges Row */
.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.trust-badge:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
}

/* Responsive Hero Rules */
@media (max-width: 768px) {
  .hero-title {
    font-size: 38px;
  }
  
  .hero-title span {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .trust-badges-row {
    gap: 12px;
  }
  
  .trust-badge {
    font-size: 13px;
    padding: 6px 12px;
  }
}

/* ==========================================================================
   COMMON SECTION HEADER
   ========================================================================== */
.section-header {
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-tomato);
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-charcoal);
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 32px;
  }
}

/* ==========================================================================
   4. DIGITAL MENU / MENU DIGITALE
   ========================================================================== */
.menu-section {
  background-color: var(--bg-cream);
}

/* Elegant Menu Tabs */
.menu-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.menu-tabs {
  display: flex;
  background-color: var(--bg-cream-dark);
  padding: 6px;
  border-radius: var(--radius-full);
  border: var(--border-cream);
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}

.menu-tabs::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.menu-tab-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.menu-tab-btn.active {
  background-color: var(--accent-tomato);
  color: var(--white-pure);
  box-shadow: var(--shadow-sm);
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 50px;
  transition: var(--transition-smooth);
}

.menu-item-card {
  background-color: var(--white-pure);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: var(--border-cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition-smooth);
  animation: fade-in 0.5s ease-out forwards;
}

.menu-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: hsla(8, 76%, 44%, 0.15);
}

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

.menu-item-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-charcoal);
}

.menu-item-price {
  font-size: 19px;
  font-weight: 700;
  color: var(--accent-tomato);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Tag Badges */
.menu-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.tag-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.tag-veg {
  background-color: var(--accent-olive-light);
  color: var(--accent-olive);
}

.tag-hot {
  background-color: var(--accent-tomato-light);
  color: var(--accent-tomato);
}

.tag-special {
  background-color: var(--accent-gold-light);
  color: var(--accent-gold);
}

/* Menu Actions */
.menu-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.menu-info-text {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Menu Rules */
@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .menu-tabs {
    padding: 4px;
  }
  
  .menu-tab-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .menu-item-card {
    padding: 20px;
  }
  
  .menu-item-name {
    font-size: 17px;
  }
  
  .menu-item-price {
    font-size: 17px;
  }
}

/* Digital Menu Complete Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(24, 18, 13, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding: 20px;
}

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

.modal-content {
  background-color: var(--bg-cream);
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  overflow-y: auto;
  border: 1px solid var(--accent-gold);
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: slide-up-modal 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slide-up-modal {
  from { transform: translateY(40px) scale(0.95); }
  to { transform: translateY(0) scale(1); }
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: var(--bg-cream-dark);
  color: var(--text-charcoal);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  font-size: 20px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background-color: var(--accent-tomato);
  color: var(--white-pure);
  transform: scale(1.05);
}

.modal-menu-body {
  padding: 40px;
}

.modal-menu-header {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 2px dashed rgba(36, 26, 21, 0.1);
  padding-bottom: 24px;
}

.modal-menu-title {
  font-size: 32px;
  color: var(--accent-tomato);
  margin-bottom: 8px;
}

.modal-menu-category {
  margin-bottom: 40px;
}

.modal-menu-category-title {
  font-size: 22px;
  color: var(--accent-olive);
  border-bottom: 1px solid rgba(110, 24, 22, 0.15);
  padding-bottom: 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  .modal-menu-body {
    padding: 24px;
  }
  
  .modal-menu-title {
    font-size: 26px;
  }
}

/* ==========================================================================
   5. QR CODE FEATURE SECTION
   ========================================================================== */
.qr-feature-section {
  background-color: var(--bg-cream-dark);
  position: relative;
}

.qr-feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.qr-feature-text-block {
  max-width: 600px;
}

.qr-feature-text-block .section-label {
  margin-bottom: 12px;
}

.qr-feature-description {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Feature mini-cards */
.feature-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.feature-mini-card {
  background-color: var(--white-pure);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: var(--border-cream);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-charcoal);
  transition: var(--transition-smooth);
}

.feature-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: hsla(45, 75%, 50%, 0.25);
}

.feature-mini-card svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-tomato);
  flex-shrink: 0;
}

/* Mockup phone container */
.qr-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.qr-mockup-frame {
  background-color: var(--white-pure);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--accent-gold);
  box-shadow: var(--shadow-lg);
  max-width: 280px;
  width: 100%;
  position: relative;
  transition: var(--transition-smooth);
}

.qr-mockup-frame:hover {
  transform: rotate(1deg) translateY(-4px);
}

.qr-mockup-frame img {
  width: 100%;
  border-radius: var(--radius-sm);
}

.qr-mockup-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background-color: var(--accent-tomato);
  color: var(--white-pure);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-tomato);
  animation: badge-pulse 2s infinite alternate ease-in-out;
}

@keyframes badge-pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

@media (max-width: 900px) {
  .qr-feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .qr-mockup-wrapper {
    order: -1; /* Place image on top on mobile */
  }
  
  .feature-mini-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==========================================================================
   6. POPULAR DISHES / LE SPECIALITÀ
   ========================================================================== */
.popular-dishes-section {
  background-color: var(--bg-cream);
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dish-card {
  background-color: var(--white-pure);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: var(--border-cream);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: var(--transition-smooth);
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: hsla(8, 76%, 44%, 0.15);
}

.dish-card-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: var(--bg-cream-dark);
}

.dish-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.dish-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: var(--accent-tomato);
  color: var(--white-pure);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.5px;
  z-index: 5;
}

.dish-card-badge.badge-special {
  background-color: var(--accent-gold);
}

.dish-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.dish-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.dish-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.dish-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px dashed rgba(36, 26, 21, 0.08);
  padding-top: 14px;
}

.dish-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-tomato);
}

.dish-card-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-olive);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dish-card-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: var(--transition-smooth);
}

.dish-card-btn:hover {
  color: var(--accent-tomato);
}

.dish-card-btn:hover svg {
  transform: translateX(2px);
}

/* Responsive Dishes grid */
@media (max-width: 1024px) {
  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dishes-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   7. TABLE BOOKING / PRENOTA TAVOLO
   ========================================================================== */
.booking-section {
  background-color: var(--bg-cream-dark);
  position: relative;
  overflow: hidden;
}

/* Visual embellishments for booking section */
.booking-section::before {
  content: '🍕';
  position: absolute;
  bottom: -40px;
  left: -20px;
  font-size: 120px;
  opacity: 0.05;
  transform: rotate(20deg);
}

.booking-section::after {
  content: '🌿';
  position: absolute;
  top: -40px;
  right: -20px;
  font-size: 120px;
  opacity: 0.05;
  transform: rotate(-15deg);
}

.booking-card {
  max-width: 680px;
  margin: 0 auto;
  background-color: var(--white-pure);
  border-radius: var(--radius-lg);
  border: var(--border-gold);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  position: relative;
  z-index: 5;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-charcoal);
}

.form-control {
  background-color: var(--bg-cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-charcoal);
  transition: var(--transition-smooth);
  width: 100%;
}

.form-control:focus {
  border-color: var(--accent-tomato);
  background-color: var(--white-pure);
  box-shadow: 0 0 0 3px hsla(8, 76%, 44%, 0.1);
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

/* Custom error states */
.form-group.has-error .form-control {
  border-color: var(--accent-tomato);
  background-color: var(--accent-tomato-light);
}

.error-message {
  font-size: 12px;
  color: var(--accent-tomato);
  font-weight: 500;
  display: none;
}

.form-group.has-error .error-message {
  display: block;
}

.booking-form-submit {
  grid-column: 1 / -1;
  margin-top: 12px;
}

.booking-form-submit .btn {
  width: 100%;
  padding: 14px 28px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .booking-card {
    padding: 30px 20px;
  }
  
  .booking-form {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   8. SPECIAL OFFER SECTION
   ========================================================================== */
.offer-section {
  background-color: var(--accent-olive);
  color: var(--white-pure);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.offer-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.offer-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
}

.offer-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.offer-btn {
  display: inline-flex;
  background-color: var(--accent-gold);
  color: var(--text-charcoal);
  font-weight: 700;
}

.offer-btn:hover {
  background-color: hsl(45, 80%, 55%);
  color: var(--text-charcoal);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
  .offer-title {
    font-size: 30px;
  }
}

/* ==========================================================================
   9. GALLERY SECTION & LIGHTBOX
   ========================================================================== */
.gallery-section {
  background-color: var(--bg-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow-sm);
  border: var(--border-cream);
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(24, 18, 13, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-icon-holder {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: var(--accent-tomato);
  color: var(--white-pure);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-tomato);
  transform: translateY(15px);
  transition: var(--transition-bounce);
}

.gallery-icon-holder svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

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

.gallery-item:hover .gallery-icon-holder {
  transform: translateY(0);
}

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

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

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    height: 220px;
  }
}

/* Lightbox Styles */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(24, 18, 13, 0.95);
  z-index: 2500;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.lightbox-content-wrapper {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--accent-gold);
}

.lightbox-caption {
  color: var(--white-pure);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-pure);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-nav-btn:hover {
  background-color: var(--accent-tomato);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 30px;
  color: var(--white-pure);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

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

@media (max-width: 1024px) {
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: -60px; right: 10px; }
}

/* ==========================================================================
   10. REVIEWS SECTION
   ========================================================================== */
.reviews-section {
  background-color: var(--bg-cream-dark);
}

/* Flexbox Carousel style for reviews */
.reviews-container {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding: 10px 0 30px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) transparent;
}

.review-card {
  flex: 0 0 350px;
  background-color: var(--white-pure);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: var(--border-cream);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--accent-gold);
  font-size: 16px;
  display: flex;
  gap: 2px;
}

.review-text {
  font-size: 15px;
  font-style: italic;
  color: var(--text-charcoal);
  line-height: 1.5;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--accent-olive-light);
  color: var(--accent-olive);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  border: var(--border-gold);
}

.review-info-name {
  font-weight: 700;
  font-size: 14px;
}

.review-tag-demo {
  align-self: flex-start;
  font-size: 10px;
  background-color: var(--bg-cream-dark);
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

@media (max-width: 480px) {
  .review-card {
    flex: 0 0 290px;
    padding: 20px;
  }
}

/* ==========================================================================
   11. DOVE SIAMO / LOCATION
   ========================================================================== */
.location-section {
  background-color: var(--bg-cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-details {
  margin-bottom: 30px;
}

.location-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.location-detail-item svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-tomato);
  flex-shrink: 0;
  margin-top: 3px;
}

.location-detail-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.location-detail-text {
  font-size: 14.5px;
  color: var(--text-muted);
}

/* Hours listing */
.hours-list {
  background-color: var(--white-pure);
  border-radius: var(--radius-md);
  border: var(--border-cream);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(36, 26, 21, 0.08);
  padding: 10px 0;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
}

.hours-time {
  color: var(--accent-tomato);
  font-weight: 700;
}

/* Simulated Map Frame Card */
.map-card {
  background-color: var(--white-pure);
  border-radius: var(--radius-lg);
  border: var(--border-gold);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.map-visual-placeholder {
  flex-grow: 1;
  background-color: var(--bg-cream-dark);
  position: relative;
  min-height: 280px;
  background-image: radial-gradient(circle, hsla(45, 75%, 50%, 0.1) 1px, transparent 1px);
  background-size: 16px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-visual-shield {
  background-color: var(--white-pure);
  padding: 24px;
  border-radius: var(--radius-md);
  border: var(--border-gold);
  box-shadow: var(--shadow-md);
  max-width: 320px;
  text-align: center;
}

.map-visual-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--accent-tomato);
  font-weight: 800;
  margin-bottom: 8px;
}

.map-visual-address {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Map Action Buttons */
.map-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(24, 18, 13, 0.08);
}

.map-action-btn {
  padding: 16px 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-charcoal);
  text-align: center;
  border-right: 1px solid rgba(24, 18, 13, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: var(--white-pure);
  transition: var(--transition-smooth);
}

.map-action-btn:last-child {
  border-right: none;
}

.map-action-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.map-action-btn:hover {
  background-color: var(--accent-tomato-light);
  color: var(--accent-tomato);
}

.map-action-btn-whatsapp:hover {
  background-color: var(--accent-olive-light);
  color: var(--accent-olive);
}

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .map-actions {
    grid-template-columns: 1fr;
  }
  .map-action-btn {
    border-right: none;
    border-bottom: 1px solid rgba(24, 18, 13, 0.08);
    flex-direction: row;
    padding: 12px;
  }
  .map-action-btn:last-child {
    border-bottom: none;
  }
}

/* ==========================================================================
   12. CONTACT SECTION
   ========================================================================== */
.contact-section {
  background-color: var(--bg-cream-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-methods {
  margin-bottom: 30px;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--white-pure);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  margin-bottom: 16px;
  border: var(--border-cream);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.contact-method-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: hsla(45, 75%, 50%, 0.2);
}

.contact-method-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background-color: var(--accent-tomato-light);
  color: var(--accent-tomato);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.contact-method-icon.whatsapp {
  background-color: var(--accent-olive-light);
  color: var(--accent-olive);
}

.contact-method-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-method-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-method-value {
  font-weight: 700;
  font-size: 15px;
}

/* Contact Form Card */
.contact-card {
  background-color: var(--white-pure);
  border-radius: var(--radius-lg);
  border: var(--border-gold);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .contact-card {
    padding: 24px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   13. FLOATING ACTIONS
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-bounce);
}

.floating-whatsapp {
  background-color: #25D366; /* Official WhatsApp Green */
  color: var(--white-pure);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

.floating-top {
  background-color: var(--accent-tomato);
  color: var(--white-pure);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.floating-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-top svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.floating-top:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: var(--shadow-tomato);
}

@media (max-width: 768px) {
  .floating-actions {
    bottom: 16px;
    right: 16px;
  }
  
  .floating-btn {
    width: 46px;
    height: 46px;
  }
}

/* ==========================================================================
   14. PROFESSIONAL FOOTER
   ========================================================================== */
.main-footer {
  background-color: var(--text-charcoal);
  color: var(--white-pure);
  border-top: 2px solid var(--accent-gold);
  padding: 80px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo-brand {
  margin-bottom: 20px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 320px;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-bounce);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-link:hover {
  background-color: var(--accent-tomato);
  transform: translateY(-3px);
}

/* Quick links */
.footer-title {
  font-size: 18px;
  color: var(--accent-gold);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.footer-nav-link {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-nav-link:hover {
  color: var(--accent-gold);
  transform: translateX(3px);
}

/* Footer contact info */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Footer Bottom Area */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-link:hover {
  color: var(--accent-gold);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .main-footer {
    padding: 60px 0 30px 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal-links {
    justify-content: center;
    gap: 16px;
  }
}
