/* ==========================================================================
   PIZZERIA SHARM EL SHEIKH — STYLES PRINCIPAUX
   Design System, Vanilla CSS, Responsive, Light/Dark, Micro-interactions
   ========================================================================== */

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

:root {
  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Brand Palette (Light Mode) */
  --brand-navy: #1c4c87;
  --brand-navy-dark: #0c2242;
  --brand-navy-deep: #08172c;
  --brand-gold: #c9a463;
  --brand-gold-hover: #b38e4e;
  --brand-orange: #ea580c;
  --brand-orange-hover: #d04b08;
  --brand-yellow: #f59e0b;
  --brand-cream: #f9f7f0;
  --brand-cream-card: #f2eee0;

  /* UI Tokens - Light */
  --bg-primary: #ffffff;
  --bg-secondary: #f9f7f0;
  --bg-tertiary: #f1ede1;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --border-subtle: rgba(255, 255, 255, 0.15);
  --card-bg: #ffffff;
  --card-shadow: 0 10px 30px -5px rgba(12, 34, 66, 0.08), 0 4px 6px -2px rgba(12, 34, 66, 0.04);
  --card-shadow-hover: 0 20px 40px -10px rgba(12, 34, 66, 0.15);
  --glass-header: rgba(12, 34, 66, 0.95);
  --glass-header-scrolled: rgba(12, 34, 66, 0.98);

  /* Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- DARK THEME OVERRIDES --- */
[data-theme="dark"] {
  --bg-primary: #0a0f1d;
  --bg-secondary: #0f172a;
  --bg-tertiary: #131d33;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: #1e293b;
  --card-bg: #131d33;
  --brand-cream: #0f172a;
  --brand-cream-card: #18243e;
  --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
  --card-shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
  --glass-header: rgba(10, 15, 29, 0.95);
  --glass-header-scrolled: rgba(10, 15, 29, 0.98);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

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

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.container-narrow {
  max-width: 900px;
}

.container-compact {
  max-width: 1000px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn:active {
  transform: scale(0.98);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-orange {
  background-color: var(--brand-orange);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}

.btn-orange:hover {
  background-color: var(--brand-orange-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
}

.btn-gold {
  background-color: var(--brand-gold);
  color: var(--brand-navy-dark);
  box-shadow: 0 4px 14px rgba(201, 164, 99, 0.3);
}

.btn-gold:hover {
  background-color: var(--brand-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 164, 99, 0.4);
}

.btn-navy {
  background-color: var(--brand-navy);
  color: #ffffff;
}

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

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

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

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color var(--transition-normal), backdrop-filter var(--transition-normal), box-shadow var(--transition-normal), padding var(--transition-normal);
  background-color: transparent;
  padding: 0.75rem 0;
}

.site-header.header-scrolled {
  background-color: var(--glass-header-scrolled);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  padding: 0.5rem 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.header-scrolled .navbar {
  height: 4rem;
}

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

.brand-avatar {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 2px solid rgba(201, 164, 99, 0.8);
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(201, 164, 99, 0.3);
  transition: transform var(--transition-fast);
}

.brand-logo-link:hover .brand-avatar {
  transform: scale(1.05);
}

.brand-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: none;
}

@media (min-width: 640px) {
  .brand-text {
    display: block;
  }
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
}

.brand-tagline {
  color: var(--brand-gold);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  font-weight: 600;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover {
  color: var(--brand-gold);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.lang-btn {
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

.lang-btn.active {
  background-color: var(--brand-gold);
  color: var(--brand-navy-dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Theme Switcher */
.theme-toggle-btn {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
}

.theme-toggle-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--brand-gold);
  transform: rotate(15deg);
}

.theme-toggle-btn svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.desktop-cta-btn {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-cta-btn {
    display: inline-flex;
    padding: 0.6rem 1.3rem;
    font-size: 0.88rem;
  }
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #ffffff;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.08);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile dropdown drawer */
.mobile-nav-drawer {
  display: none;
  background-color: var(--brand-navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 1rem;
  animation: slideDown 0.25s ease forwards;
}

[data-theme="dark"] .mobile-nav-drawer {
  background-color: var(--bg-secondary);
}

.mobile-nav-drawer.is-open {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.mobile-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--brand-gold);
}

.mobile-drawer-cta {
  margin-top: 0.75rem;
  width: 100%;
}

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 7rem;
}

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

.hero-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 34, 66, 0.88) 0%, rgba(12, 34, 66, 0.65) 50%, rgba(12, 34, 66, 0.92) 100%);
  z-index: 2;
}

[data-theme="dark"] .hero-overlay {
  background: linear-gradient(180deg, rgba(10, 15, 29, 0.92) 0%, rgba(10, 15, 29, 0.75) 50%, rgba(10, 15, 29, 0.96) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 860px;
  margin: 0 auto;
}

.hero-logo-box {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.hero-logo-circle {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 4px solid rgba(201, 164, 99, 0.6);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 164, 99, 0.35);
  animation: subtleFloat 6s ease-in-out infinite;
}

@media (min-width: 640px) {
  .hero-logo-circle {
    width: 8.5rem;
    height: 8.5rem;
  }
}

.hero-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-kicker {
  color: var(--brand-gold);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .hero-kicker {
    font-size: 1rem;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.25rem;
  }
}

.hero-subtitle {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}

.hero-actions .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .hero-actions .btn {
    width: auto;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2s infinite;
  display: none;
}

@media (min-width: 640px) {
  .hero-scroll-indicator {
    display: block;
  }
}

.hero-scroll-indicator svg {
  width: 1.75rem;
  height: 1.75rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes subtleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 640px) {
  .section-padding {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.section-kicker {
  color: var(--brand-orange);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-title {
  color: var(--brand-navy);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

[data-theme="dark"] .section-title {
  color: #ffffff;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.6rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.2rem;
  }
}

.section-header-center {
  text-align: center;
  margin-bottom: 3.5rem;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.gold-divider-line {
  height: 1px;
  width: 3rem;
  background-color: var(--brand-gold);
}

.gold-divider-icon {
  color: var(--brand-gold);
  font-size: 1.1rem;
}

/* ==========================================================================
   CHI SIAMO (ABOUT) SECTION
   ========================================================================== */
.about-section {
  background-color: var(--brand-cream);
}

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

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
  }
}

.about-image-wrapper {
  position: relative;
}

.about-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  height: 380px;
}

@media (min-width: 640px) {
  .about-main-image {
    height: 480px;
  }
}

.about-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-floating-badge-img {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 8.5rem;
  height: 8.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 4px solid var(--brand-cream);
  display: none;
}

[data-theme="dark"] .about-floating-badge-img {
  border-color: var(--bg-secondary);
}

@media (min-width: 640px) {
  .about-floating-badge-img {
    display: block;
  }
}

.about-floating-badge-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text-lead {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
}

.about-text-lead p + p {
  margin-top: 1rem;
}

.about-text-lead strong {
  color: var(--brand-navy);
}

[data-theme="dark"] .about-text-lead strong {
  color: var(--brand-gold);
}

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .about-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.feature-icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background-color: rgba(28, 76, 135, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
  flex-shrink: 0;
}

[data-theme="dark"] .feature-icon-box {
  background-color: rgba(201, 164, 99, 0.15);
  color: var(--brand-gold);
}

.feature-icon-box svg {
  width: 1.35rem;
  height: 1.35rem;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--brand-navy);
  margin-bottom: 0.25rem;
}

[data-theme="dark"] .feature-title {
  color: #ffffff;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

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

.menu-categories-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.menu-cat-btn {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  background-color: var(--brand-cream);
  color: var(--brand-navy);
  transition: all var(--transition-fast);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .menu-cat-btn {
  background-color: var(--bg-tertiary);
  color: var(--text-secondary);
}

.menu-cat-btn:hover {
  background-color: rgba(28, 76, 135, 0.12);
}

[data-theme="dark"] .menu-cat-btn:hover {
  background-color: rgba(201, 164, 99, 0.2);
  color: #ffffff;
}

.menu-cat-btn.active {
  background-color: var(--brand-navy);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(28, 76, 135, 0.35);
}

[data-theme="dark"] .menu-cat-btn.active {
  background-color: var(--brand-gold);
  color: var(--brand-navy-dark);
  box-shadow: 0 4px 14px rgba(201, 164, 99, 0.4);
}

.menu-items-container {
  display: flex;
  flex-direction: column;
}

.menu-item-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: background-color var(--transition-fast);
}

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

.menu-item-info {
  flex: 1;
}

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--brand-navy);
  margin-bottom: 0.25rem;
}

[data-theme="dark"] .menu-item-name {
  color: #ffffff;
}

.menu-item-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.menu-item-price-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.menu-item-dot {
  color: var(--border-color);
  font-size: 1.25rem;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-orange);
}

.menu-disclaimer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-style: italic;
  margin-top: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 1rem;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.gallery-item.row-span-2 {
  grid-row: span 2;
}

.gallery-item.col-span-2 {
  grid-column: span 2;
}

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

.gallery-item.fit-contain img {
  object-fit: cover;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(12, 34, 66, 0);
  transition: background-color var(--transition-normal);
}

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

.gallery-item:hover .gallery-item-overlay {
  background-color: rgba(12, 34, 66, 0.25);
}

/* ==========================================================================
   RECENSIONI (REVIEWS) SECTION
   ========================================================================== */
.reviews-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

.reviews-bg-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.reviews-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.reviews-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(12, 34, 66, 0.92);
  z-index: 2;
}

[data-theme="dark"] .reviews-overlay {
  background-color: rgba(10, 15, 29, 0.95);
}

.reviews-content {
  position: relative;
  z-index: 10;
  max-width: 780px;
  margin: 0 auto;
}

.reviews-kicker {
  color: var(--brand-gold);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}

.reviews-title {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .reviews-title {
    font-size: 3rem;
  }
}

.stars-rating-box {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.stars-rating-box svg {
  width: 2rem;
  height: 2rem;
  fill: var(--brand-gold);
  color: var(--brand-gold);
}

.reviews-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   DOVE SIAMO (LOCATION & HOURS) SECTION
   ========================================================================== */
.location-section {
  background-color: var(--brand-cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 350px;
}

@media (min-width: 1024px) {
  .map-wrapper {
    height: 100%;
    min-height: 480px;
  }
}

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

.location-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .location-card {
    padding: 2.5rem;
  }
}

.loc-info-group {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}

.loc-info-group:last-of-type {
  margin-bottom: 2rem;
}

.loc-icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background-color: rgba(28, 76, 135, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
  flex-shrink: 0;
}

[data-theme="dark"] .loc-icon-box {
  background-color: rgba(201, 164, 99, 0.15);
  color: var(--brand-gold);
}

.loc-icon-box svg {
  width: 1.35rem;
  height: 1.35rem;
}

.loc-info-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--brand-navy);
  margin-bottom: 0.25rem;
}

[data-theme="dark"] .loc-info-title {
  color: #ffffff;
}

.loc-info-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.loc-info-text a:hover {
  color: var(--brand-orange);
}

.hours-header-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.status-badge.status-open {
  background-color: #dcfce7;
  color: #15803d;
}

[data-theme="dark"] .status-badge.status-open {
  background-color: rgba(21, 128, 61, 0.2);
  color: #4ade80;
}

.status-badge.status-closed {
  background-color: #fee2e2;
  color: #b91c1c;
}

[data-theme="dark"] .status-badge.status-closed {
  background-color: rgba(185, 28, 28, 0.2);
  color: #f87171;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--radius-full);
}

.status-open .status-dot {
  background-color: #22c55e;
  animation: pulseDot 2s infinite;
}

.status-closed .status-dot {
  background-color: #ef4444;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.hours-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hours-day-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hours-day-row.is-today {
  color: var(--brand-navy);
  font-weight: 700;
}

[data-theme="dark"] .hours-day-row.is-today {
  color: var(--brand-gold);
}

.location-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .location-actions {
    flex-direction: row;
  }
}

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

/* ==========================================================================
   CONTATTI (CONTACT CTA) SECTION
   ========================================================================== */
.contact-section {
  background-color: var(--bg-primary);
}

.contact-subtitle {
  color: var(--text-secondary);
  font-size: 1.12rem;
  max-width: 620px;
  margin: 0 auto;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .contact-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-action-card {
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  text-align: center;
  color: #ffffff;
  display: block;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-action-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.contact-card-navy {
  background-color: var(--brand-navy);
}

.contact-card-navy:hover {
  background-color: var(--brand-navy-dark);
}

.contact-card-orange {
  background-color: var(--brand-orange);
}

.contact-card-orange:hover {
  background-color: var(--brand-orange-hover);
}

.contact-card-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  transition: background-color var(--transition-fast);
}

.contact-card-navy .contact-card-icon-box {
  background-color: rgba(201, 164, 99, 0.2);
  color: var(--brand-gold);
}

.contact-card-orange .contact-card-icon-box {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.contact-card-icon-box svg {
  width: 1.6rem;
  height: 1.6rem;
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.contact-card-highlight {
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-card-navy .contact-card-highlight {
  color: var(--brand-gold);
}

.contact-card-orange .contact-card-highlight {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.92rem;
  font-weight: 500;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--brand-navy-dark);
  color: #ffffff;
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
}

[data-theme="dark"] .site-footer {
  background-color: #060a14;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 3.5rem;
  }
}

.footer-brand-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.footer-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 2px solid rgba(201, 164, 99, 0.6);
  flex-shrink: 0;
}

.footer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-bio {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

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

.social-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--brand-gold);
  color: var(--brand-navy-dark);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  color: var(--brand-gold);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.9rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--brand-gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-contact-item a:hover {
  color: var(--brand-gold);
}

.footer-hours-note {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
}

.footer-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-hours-item {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.75);
}

.footer-nav-subgroup {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav-subtitle {
  color: var(--brand-gold);
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
}

.footer-nav-links-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.82rem;
}

.footer-nav-links-wrap a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

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

.footer-bottom-bar {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}

/* ==========================================================================
   MOBILE BOTTOM ACTION BAR
   ========================================================================== */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background-color: rgba(12, 34, 66, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 164, 99, 0.25);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .mobile-bottom-bar {
  background-color: rgba(10, 15, 29, 0.96);
}

@media (min-width: 1024px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.mobile-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.mobile-bottom-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  color: #ffffff;
  transition: background-color var(--transition-fast);
}

.mobile-bottom-action:active {
  background-color: rgba(255, 255, 255, 0.08);
}

.mobile-bottom-action:nth-child(2) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-bottom-action svg {
  width: 1.35rem;
  height: 1.35rem;
  margin-bottom: 0.25rem;
}

.mobile-bottom-action.action-call svg {
  color: var(--brand-orange);
}

.mobile-bottom-action.action-menu svg {
  color: var(--brand-gold);
}

.mobile-bottom-action.action-map svg {
  color: var(--brand-orange);
}

.mobile-bottom-action span {
  font-size: 0.75rem;
  font-weight: 600;
}

/* Extra bottom spacing on mobile so footer isn't hidden by bottom bar */
.mobile-bottom-spacer {
  height: 4.5rem;
  display: block;
}

@media (min-width: 1024px) {
  .mobile-bottom-spacer {
    display: none;
  }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (Vanilla Observer)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}
