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

html {
  scroll-behavior: smooth;
  font-family: 'Lato', sans-serif;
  overflow-x: hidden;
}

body {
  background: #000;
  color: #f8f1e3;
}

/* === PAGE WHITE FADE ON LOAD (“nuvola”) === */
#page-fade {
  position: fixed;
  inset: 0;
  background: #fff;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 3s ease, visibility 2s linear 3s;
}

#page-fade::after {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 50% 50%, #fff 0%, rgba(255,255,255,0) 65%);
  filter: blur(22px);
  transition: opacity 3s ease, transform 3s ease;
}

.page-ready #page-fade {
  opacity: 0;
  visibility: hidden;
  transition-delay: 0s;
}

.page-ready #page-fade::after {
  opacity: 0;
  transform: scale(1.3);
}

@media (prefers-reduced-motion: reduce) {
  #page-fade { display: none; }
}

/* === REVEAL ON SCROLL === */
[data-reveal] {
  position: relative;
  opacity: 0;
  transition: opacity 0.8s ease;
}

[data-reveal]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 2;
}

[data-reveal].revealed {
  opacity: 1;
}

[data-reveal].revealed::before {
  opacity: 0;
}

/* Opzionale: piccoli ritardi */
[data-reveal].delay-1 { transition-delay: 0.15s; }
[data-reveal].delay-2 { transition-delay: 0.3s; }
[data-reveal].delay-3 { transition-delay: 0.45s; }

/* === HERO SECTION (base funzionante + effetto coperta parziale) === */
.hero {
  position: relative;
  /* full viewport meno 10px in basso per lasciare intravedere sezione successiva */
  height: calc(100vh - 10px);
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #f8f1e3;
}

.hero-title {
  font-size: 2.8rem;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.hero-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 0.5rem;
}

.instagram-icon {
  width: 22px !important;
  height: 22px !important;
}

.hero-socials a img {
  width: 32px;
  height: 32px;
  filter: brightness(90%);
  transition: filter 0.3s ease;
}

.hero-socials a:hover img {
  filter: brightness(130%);
}

.hero-bottom {
  position: absolute;
  bottom: 60px;
  left: 0; right: 0;
  text-align: center;
  color: #f8f1e3;
  z-index: 2;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: #f8f1e3;
}

.scroll-down {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

/* fade-in all’apertura */
.hero-content,
.hero-bottom {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.hero-content.visible,
.hero-bottom.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(10px); }
}

/* === HAMBURGER SOLO NELLA HERO === */
.hero { position: relative; }
.hamburger {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 32px;
  height: 24px;
  background: none;
  border: 0;
  z-index: 3;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #f8f1e3;
  margin: 5px 0;
  transition: transform .3s, opacity .3s;
}
.hamburger.is-open span:nth-child(1),
.hamburger.is-open span:nth-child(2),
.hamburger.is-open span:nth-child(3) {
  transform: none !important;
  opacity: 1 !important;
}

/* === BACKDROP === */
.offcanvas-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 10005;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}
.offcanvas-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

/* === OFFCANVAS PANEL === */
.offcanvas {
  position: fixed;
  top: 16px;
  right: -100%;
  bottom: auto;
  max-height: calc(100vh - 32px);
  width: 280px;
  max-width: 85%;
  background: #6b7a69;
  color: #f6f0e8;
  z-index: 10008;
  padding: 40px 32px 36px;
  box-shadow: -8px 0 18px rgba(0,0,0,.25);
  border-radius: 8px 0 0 8px;
  overflow-y: auto;
  transition: right .6s cubic-bezier(.4,.01,.2,1);
}
.offcanvas.open { right: 0; }

.offcanvas-close {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 2rem;
  color: #f6f0e8;
  background: none;
  border: none;
  cursor: pointer;
}

.offcanvas-logo {
  text-align: center;
  margin-bottom: 42px;
}
.offcanvas-logo img {
  width: 110px;
  height: auto;
  opacity: .9;
}

.offcanvas-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.offcanvas-links a {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: #f6f0e8;
  text-decoration: none;
  text-align: center;
  transition: opacity .25s;
}
.offcanvas-links a:hover { opacity: .7; }

.offcanvas-cta {
  display: block;
  margin-top: 32px;
  background: #000;
  color: #f6f0e8 !important;
  padding: 12px 0;
  border-radius: 2px;
  font-size: 0.95rem !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === MODALE PRENOTA (AGGIORNATO) === */
.prenota-box {
  width: 90%;
  max-width: 400px;
  min-width: 260px;
  padding: 30px 40px;
  background: #f6f0e8;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  border-radius: 8px;
  position: relative;
}
.prenota-box h4 {
  margin: 0 0 20px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #5b5959;
}
.prenota-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: #5b5959;
  cursor: pointer;
}
.prenota-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.prenota-modal.visible {
  opacity: 1;
  pointer-events: auto;
}
.prenota-modal[hidden] {
  display: none;
}

.contact-btn {
  display: block;
  margin: 12px auto;
  padding: 12px 28px;
  border: 1px solid #5b5959;
  color: #5b5959;
  text-decoration: none;
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  transition: background-color .25s, color .25s;
}
.contact-btn:hover {
  background: #5b5959;
  color: #f6f0e8;
}

/* lock scroll quando il menu è aperto */
body.offcanvas-open {
  overflow: hidden;
  height: 100vh;
  overscroll-behavior: contain;
}

/* === CHI SIAMO / FILOSOFIA === */
.about-section {
  background-color: #f6f0e8;
  padding: 100px 0;
  color: #333;
}

.about-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 100px;
  align-items: flex-start;
  padding: 0 60px;
  flex-wrap: wrap;
}

.about-left {
  flex: 1;
  min-width: 360px;
  display: flex;
  justify-content: center;
}

.about-right {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px;
}

.about-section .about-left .image-wrapper img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
  border: none;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
}

.about-right h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: #5b5959;
  font-weight: 400;
}

.about-right p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 22px;
  color: #3b3b3b;
  max-width: 620px;
}

.about-more {
  margin-top: 5px;
  text-align: left;
}

.line-btn {
  background: transparent;
  border: none;
  padding: 8px 48px;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #5b5959;
  cursor: pointer;
  position: relative;
  transition: color .3s ease;
  text-align: center;
}
.line-btn::before,
.line-btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #5b5959;
}
.line-btn::before { left: 0; }
.line-btn::after { right: 0; }
.line-btn:hover { color: #2d2d2d; }

/* === MODALE “SCOPRI DI PIÙ” – STILE GALLERY === */
.about-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  overflow-y: auto;
  padding: 60px 8%;
  box-sizing: border-box;
  animation: fadeIn 0.5s ease;
  overscroll-behavior: contain;
}
.about-modal:not([hidden]) {
  display: block;
}
.about-modal-content {
  background: transparent;
  width: 100%;
  max-width: none;
  max-height: none;
  overflow: visible;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.about-modal-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}
.about-modal-section.reverse {
  flex-direction: row-reverse;
}
.modal-image,
.modal-text {
  flex: 1;
}
.modal-image img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  border: none;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
}
.modal-text h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: #5b5959;
  font-weight: 400;
}

.modal-text p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  color: #3b3b3b;
  font-weight: 300;
  max-width: 620px;
}
.about-close {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  z-index: 10001;
}

/* === GALLERY === */
@font-face {
  font-family: 'Antro_Vectra';
  src: url('../fonts/Antro_Vectra.otf') format('opentype');
  font-style: normal;
  font-weight: 400;
}

.gallery-section {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 10%;
  background-color: #f6f0e8;
}

.gallery-text {
  flex: 1;
  margin-right: 40px;
  margin-left: -50px;
}

.gallery-text p {
  font-family: 'Antro_Vectra', cursive;
  font-size: 2.3rem;
  line-height: 1.8;
  font-style: italic;
  color: #333;
}

.gallery-buttons {
  position: absolute;
  top: 205px;
  left: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 360px;
}

.gallery-buttons button {
  width: 180px;
  background: transparent;
  border: none;
  border-left: 1px solid #5b5959;
  padding: 8px 0;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  text-align: center;
  color: #5b5959;
  cursor: pointer;
  transition: color .3s ease;
}
.gallery-buttons button:last-child {
  border-right: 1px solid #5b5959;
}
.gallery-buttons button:hover {
  color: #2d2d2d;
}

.gallery-slideshow {
  position: relative;
  flex: 1;
  max-width: 500px;
  height: 350px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.gallery-slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.gallery-slideshow img.active {
  opacity: 1;
}

/* === MODALE GALLERY === */
.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  overflow-y: auto;
  padding: 60px 8%;
  box-sizing: border-box;
  animation: fadeIn 0.5s ease;
}
.gallery-modal .close-modal {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #000;
  cursor: pointer;
  z-index: 10001;
}
.modal-gallery-columns {
  display: flex;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
}
.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.gallery-col img {
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  transition: filter 0.3s ease;
  border-radius: 0;
}
.gallery-col img:hover {
  filter: brightness(55%);
}
.modal-fullscreen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.98);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-fullscreen img {
  max-width: 90%;
  max-height: 90%;
}
.modal-fullscreen .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #151515;
  font-family: Arial, sans-serif;
  font-weight: 300;
  cursor: pointer;
}
.modal-fullscreen .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #000;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  font-family: Arial, sans-serif;
  font-weight: 100;
}
.modal-fullscreen .nav-btn.left::before {
  content: '‹';
}
.modal-fullscreen .nav-btn.right::before {
  content: '›';
}
.modal-fullscreen .nav-btn.left { left: 20px; }
.modal-fullscreen .nav-btn.right { right: 20px; }


/* === BLOCCO INTRO MENÙ (HOME) === */
.menu-section {
  background-color: #f6f0e8;
  padding: 100px 0;
}

.menu-container {
  flex-direction: row-reverse;
  display: flex;
  gap: 100px;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 60px;
}

.menu-left,
.menu-right {
  flex: 1;
  min-width: 320px;
}

/* Rendo la colonna sinistra un flex verticale così il bottone è indipendente dal testo */
.about-right.menu-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* testo e bottone allineati a sinistra */
}

.menu-left .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #5b5959;
}

.menu-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 2rem;
}

.menu-right .image-wrapper {
  text-align: center;
}

.menu-right .image-wrapper img {
  display: inline-block !important;
  width: auto !important;
  max-width: 500px;
  height: auto !important;
}

/* === BOTTONE "SFOGLIA IL MENÙ" === */
.menu-section .about-more {
  position: relative; /* permette di muovere il bottone indipendentemente */
  text-align: left; /* o center se preferisci centrato */
}

.menu-section .about-more .line-btn {
  position: relative; /* per muoverlo senza influire sul testo */
  top: 120px; /* sposta il bottone più in basso, senza muovere il testo */
  
  background: transparent;
  border: none;
  padding: 8px 48px;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #5b5959;
  cursor: pointer;
  transition: color .3s ease;
  text-align: center;
}

.menu-section .about-more .line-btn::before,
.menu-section .about-more .line-btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #5b5959;
}

.menu-section .about-more .line-btn::before { left: 0; }
.menu-section .about-more .line-btn::after { right: 0; }

.menu-section .about-more .line-btn:hover {
  color: #2d2d2d;
}



/* === MODALE MENÙ === */
/* Blocca lo sfondo quando il modale è aperto */
body.menu-open {
  overflow: hidden;
  height: 100vh;
  touch-action: none; /* blocca i gesti di scroll su mobile */
}

.menu-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh; /* piena altezza viewport */
  background-color: #6b7a69;
  z-index: 9999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* scroll fluido su iOS */
  padding: 60px 0;
  box-sizing: border-box;
}

.close-menu-modal {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #ffff;
  cursor: pointer;
  z-index: 10001;
}

.menu-modal-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Testo introduttivo nel modale */
.menu-modal-intro {
  margin-bottom: 6rem; /* più spazio sopra e sotto */
  font-size: 1.4rem; /* testo più grande */
  line-height: 1.7;
  font-family: 'Playfair Display', serif; /* stesso font dei bottoni */
  font-weight: 400; /* stesso peso dei bottoni */
  color: #ffff; /* testo scuro, leggibile su sfondo bianco */
  text-align: center; /* opzionale, ma di solito rende meglio */
}

.menu-modal-intro .section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400; /* non in bold */
  font-size: 2rem; /* leggibile ma elegante */
  margin-bottom: 3rem; /* spazio tra titolo e testo */
}

.menu-modal-intro p {
  font-family: 'Playfair Display', serif; /* coerente col titolo */
  font-size: 1.2rem;
  font-weight: 300; /* più leggero */
  line-height: 1.7;
  margin: 2rem 0;
}

/* Tabs nel modale */
.menu-modal .menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto 2rem;
  max-width: 1180px;
  padding: 0 60px;
}

.menu-modal .menu-tab {
  flex: 0 1 220px;
  padding: 0.75rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #ffff;
  background: none;
  border: 1px solid #ffff;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.menu-modal .menu-tab:hover {
  background-color: rgba(0,0,0,0.05);
}

.menu-modal .menu-tab.active {
  background-color: #333333 !important;
  color: #f6f0e8 !important;
  border-color: #333333 !important;
}

/* Contenuto del menù nel modale */
.menu-modal .menu-contents {
  max-width: 1180px;
  margin: 0 auto 4rem;
  padding: 0 60px;
  box-sizing: border-box;
}

.menu-modal .menu-content {
  background-color: #ffffff;
  color: #333333;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  width: 100%;
  box-sizing: border-box;
  animation: fadeIn 0.4s ease-out;
}

.menu-modal .menu-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
  text-align: center;
  color: #333333;
  font-weight: 400;
}

.menu-modal .menu-content .menu-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin: 0.5rem 0 1.5rem;
  text-align: center;
  color: #333333;
}

.menu-modal .menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-modal .menu-list li {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  color: #000000;
}

/* Prezzi in grassetto, più grandi e con spazio dal testo */
.menu-modal .menu-list li strong {
  font-family: 'Playfair Display', serif; /* stesso font del titolo */
  font-weight: 400;
  font-size: 1.2rem;
  color: #333;
  margin-left: 15px;
  display: inline-block;
}

/* =========================
   TESTO BREVE + BOTTONE
========================= */
.allergeni-brief {
  margin-top: 3rem;
  text-align: left;
  padding: 0 2rem;
}

.allergeni-brief p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  max-width: 950px;
  margin: 0 auto 1.5rem auto;

  /* Allineamento e spostamento verso sinistra */
  text-align: left;
  padding-left: 10px; /* regola per aumentare/diminuire lo spostamento */
}

/* =========================
   CONTENITORE BOTTONE
========================= */
.allergeni-btn-wrapper {
  display: flex;
  justify-content: center; /* centrato orizzontalmente */
  margin-top: 4.5rem;
}

/* Posizionamento opzionale */
.allergeni-btn-wrapper.left {
  justify-content: flex-start;
  padding-left: 30px; /* abbina lo spostamento al testo */
}
.allergeni-btn-wrapper.right {
  justify-content: flex-end;
  padding-right: 40px;
}

/* =========================
   STILE BOTTONE
========================= */
.allergeni-btn-wrapper .line-btn {
  display: inline-block;
  color: #fff !important; /* testo bianco */
}

.allergeni-btn-wrapper .line-btn::before,
.allergeni-btn-wrapper .line-btn::after {
  background: #fff !important; /* linee bianche */
}


/* =========================
   MINI MODALE ALLERGENI
========================= */
.allergeni-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.allergeni-modal.show {
  pointer-events: auto;
  opacity: 1;
}

/* Sfondo scuro */
.allergeni-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

/* Contenitore interno */
.allergeni-modal-inner {
  position: relative;
  max-width: 800px; /* rettangolare e più largo */
  width: 90%;
  background: #fff;
  padding: 2.5rem 2rem;
  z-index: 1;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  border-radius: 0; /* niente bordi arrotondati */
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.4s ease;
}

.allergeni-modal.show .allergeni-modal-inner {
  transform: translateY(0);
  opacity: 1;
}

/* Titolo e testo */
.allergeni-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400; /* non bold */
  margin-bottom: 1rem;
  color: #5b5959;
}

.allergeni-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

.allergeni-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.allergeni-text li {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 0.4rem;
}

/* Pulsante chiusura quadrato */
.close-allergeni {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  border: 1px solid #ccc;
  font-size: 1.4rem;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 2;
}

.close-allergeni:hover {
  background: #f0f0f0;
}


/* === AWARD BANNER WRAPPER === */
.award-banner {
  background-color: #f6f0e8;
  padding: 80px 0;
  width: 100%;
  margin-top: -120px;
}
.award-inner {
  background-color: #EAAA00;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
  border-bottom-right-radius: 200px;
  overflow: hidden;
  position: relative;
}
.award-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0 0 0.5rem;
}
.award-source {
  font-family: 'Lato', sans-serif;
  font-size: 0.90rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.award-snail {
  position: absolute;
  right: 60px;
  bottom: -20px;
  width: 140px;
  height: auto;
  margin: 0;
}
.award-inner .award-content {
  text-align: center;
}

/* === INFO BOTTOM (Guide gastronomiche) === */
.info-bottom {
  background-color: #f6f0e8;
  padding: 8px 0 80px;
}
.guides-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: -25px;
}
.guides-headline span {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: #3b3b3b;
  letter-spacing: 0;
  font-style: normal;
}
.guides-headline::after {
  content: "";
  height: 1px;
  width: 140px;
  background: #5b5959;
  display: block;
}

.guides-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;           /* esplicitamente non bold */
  color: #5b5959;
  margin: 0;
  line-height: 1.3;
  text-align: center;
}

.info-container.info-center {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.recognitions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.info-bottom .recognitions {
  margin-top: 30px;
}
.recognitions.visible {
  opacity: 1;
  transform: translateY(0);
}
.recognitions img {
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.recognitions img:hover {
  transform: scale(1.08);
}

/* === CONTATTI / GET IN TOUCH === */
.contact-section {
  background-color: #f6f0e8;
  padding: 50px 0 100px;
  color: #333;
}
.contact-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: left;
}
.contact-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}
.contact-eyebrow span {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: #3b3b3b;
  letter-spacing: 0;
  font-style: normal;
}
.contact-eyebrow::after {
  content: "";
  flex: 0 0 120px;
  height: 1px;
  background: #8b8278;
}
.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: #5b5959;
  margin: 0 0 60px;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.contact-card {
  background: #fff;
  text-decoration: none;
  color: #5b5959;
  padding: 36px 20px;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px rgba(0,0,0,0.12);
}
.contact-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  opacity: 0.7;
}
.contact-value {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #5b5959;
}

/* === ORARI + MAPPA === */
.location-section {
  background-color: #f6f0e8;
  padding: 5px 0;
  color: #333;
}
.location-top {
  max-width: 1180px;
  margin: 0 auto 80px;
  padding: 0 60px;
  text-align: center;
}
.pumo-icon {
  width: 220px;
  height: auto;
  object-fit: contain;
  margin-bottom: 0;
  opacity: 0.8;
}
.closing-note {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #5b5959;
  letter-spacing: 0.5px;
}
.location-top .closing-note {
  margin-bottom: 80px;
}
#contatti.contact-section { padding-bottom: 40px; }
#location.location-section { padding-top: 10px; }
.location-top { margin-bottom: 50px; }
.location-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.location-text {
  flex: 1 1 260px;
}
.location-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #5b5959;
  margin: 0 0 24px;
}
.location-address {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: #3b3b3b;
  margin: 0;
}
.location-map {
  flex: 2 1 520px;
}
.map-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%);
}

/* === FOOTER === */
.site-footer {
  background-color: #f6f0e8;
  color: #5b5959;
  font-family: 'Lato', sans-serif;
  padding-top: 60px;
}

.footer-top {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 60px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* distribuisce i 3 elementi */
  gap: 30px;
  border-top: 1px solid rgba(0,0,0,0.08);
  flex-wrap: wrap;
}

/* Link "Informativa Allergeni" */
.footer-link {
  font-size: 0.95rem;
  color: #5b5959;
  text-decoration: none;
  transition: color .25s;
}
.footer-link:hover { color: #2d2d2d; }

/* Social centrati */
.footer-socials {
  display: flex;
  gap: 26px;
  justify-content: center;
}
.footer-socials img {
  width: 26px;
  height: 26px;
  opacity: 0.7;
  transition: opacity .25s;
}
.footer-socials img:hover { opacity: 1; }

/* Credito a destra */
.footer-credit {
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Footer bottom */
.footer-bottom {
  background: #777;
  text-align: center;
  padding: 20px 10px;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #f6f0e8;
}

/* ===============================
   INTRO‐MODAL & SPLASH-INSIDE
   =============================== */
body.no-scroll {
  overflow: hidden;
}

/* INTRO MODAL */
.intro-modal {
  position: fixed;
  inset: 0;
  background: #6b7a69;       /* il tuo colore di sfondo */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;          /* nasconde lo splash fuori dai bordi */
  z-index: 9998;
}

.intro-modal[hidden] {
  display: none;
}

/* SPLASH-INSIDE: copre tutto il modal fino al fade-out */
.intro-modal .intro-splash-inside {
  position: absolute;
  inset: 0;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  z-index: 2;                /* sopra il contenuto del modal */
  opacity: 1;
  transition: opacity 0.5s ease;
}

/* CONTENUTO DEL MODAL */
.intro-modal-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.intro-logo img {
  max-width: 180px;
  margin-bottom: 3rem;
}

.intro-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.intro-nav a:hover {
  opacity: 0.7;
}