
/* =============================== */
/* ROOT & BASE                     */
/* =============================== */

:root {
  --verde-salvia: #6b8f71;
  --verde-scuro: #2f4f4f;
  --beige: #f8f4ec;
  --oro: #d4a373;
  --bianco: #ffffff;
  --font-size-base: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'OpenDyslexic', Arial, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.8;
  background-color: var(--beige);
  color: var(--verde-scuro);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* =============================== */
/* HEADER & MENU                   */
/* =============================== */

header {
  background-color: var(--verde-salvia);
  color: white;
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 0.5rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.logo img {
  height: 100px; /* Logo grande visibile */
  max-width: 100%;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: flex-end; /* Menu più basso rispetto al logo */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  text-decoration: none;
  color: var(--verde-scuro);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: var(--oro);
}

/* =============================== */
/* HERO SECTION                    */
/* =============================== */

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 3rem;
  max-width: 90%;
  border-radius: 12px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-overlay h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-family: 'OpenDyslexic', sans-serif;
}

.hero-overlay p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-family: 'OpenDyslexic', sans-serif;
  max-width: 700px;
}

.hero-button {
  display: inline-block;
  background-color: #d9a574;
  color: white;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'OpenDyslexic', sans-serif;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #c08950;
}

/* =============================== */
/* RESPONSIVE MOBILE               */
/* =============================== */

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  nav {
    margin-top: 1rem;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}



.hero-overlay {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 3rem;
  max-width: 90%;
  border-radius: 12px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  }
  
  .hero-overlay h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-family: 'OpenDyslexic', sans-serif;
  }
  
  .hero-overlay p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-family: 'OpenDyslexic', sans-serif;
  max-width: 700px;
  }
  
  .hero-button {
  display: inline-block;
  background-color: #d9a574;
  color: white;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'OpenDyslexic', sans-serif;
  transition: background-color 0.3s ease;
  }
  
  .hero-button:hover {
  background-color: #c08950;
  }
 
  
  
  
  nav {
    flex: 1;nav ul li a.active {
      background-color: var(--oro);
      color: white;
    }
    
    display: flex;
    justify-content: center;
    align-items: center; /* nuovo: centra verticalmente */
  }
  
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
  }
  
  nav ul li a {
    font-size: 0.95rem;
    padding: 0.2rem 1rem;
    background-color: #f0f0f0;
    color: var(--verde-scuro);
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  nav ul li a:hover {
    background-color: var(--oro);
    color: var(--bianco);
  }
  
 
  
  .menu-toggle {
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: none;
    position: absolute;
    top: 3rem; /* più basso rispetto alla bandiera */
    right: 1rem;
    z-index: 100;
  }
  
  /* Solo mobile */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  }
  
 /* NAV MOBILE */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--verde-salvia);
    display: none;
    flex-direction: column;
    z-index: 99;
  }

  nav.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }

  .nav-links li {
    margin-bottom: 1rem;
  }

  .nav-links li a {
    background-color: white;
    color: var(--verde-scuro);
    padding: 0.5rem 1rem;
    border-radius: 12px;
  }
}
  nav ul li a.active {
    background-color: var(--oro);
    color: white;
  }
  




/* =============================== */
/* FOOTER                          */
/* =============================== */

.site-footer {
  position: relative; /* ✅ aggiungi questa */
  background-color: var(--verde-salvia);
  color: white;
  padding: 3rem 1.5rem 1.5rem;
  font-size: 0.95rem;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-logo img {
  width: 140px;
  height: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.footer-newsletter h3,
.footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0.6rem 1rem;
  background-color: var(--oro);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #b96b30;
}

.footer-social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-social-icons a img {
  width: 32px;
  height: 32px;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #e0e0e0;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form {
    flex-direction: row;
    justify-content: center;
  }

  .newsletter-form input[type="email"] {
    flex: 1;
    margin-right: 1rem;
  }
}

/* =============================== */
/* FONT FACE (TYPOGRAPHY)           */
/* =============================== */

@font-face {
  font-family: 'OpenDyslexic';
  src: url('fonts/OpenDyslexic-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OpenDyslexic';
  src: url('fonts/OpenDyslexic-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

/* =============================== */
/* HERO FULL SCREEN                */
/* =============================== */

.hero {
  background-image: url('img/natura.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

 /* =============================== */
/* INTRO SECTION                   */
/* =============================== */

.intro {
  padding: 3rem 1.5rem;
  background-color: var(--bianco);
  color: var(--verde-scuro);
}

.intro-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.intro-slogan {
  font-size: 1.2rem;
  color: var(--verde-salvia);
  font-weight: bold;
}

.intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.intro p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* =============================== */
/* CONTACT SECTION                 */
/* =============================== */

.contact-section {
  background-image: url('img/sam.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 1.5rem;
  color: var(--verde-scuro);
}

.contact-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-wrapper p {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form label {
  font-weight: bold;
  font-size: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'OpenDyslexic', Arial, sans-serif;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  margin-top: 1rem;
  padding: 0.9rem 1.5rem;
  background-color: var(--verde-salvia);
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover,
.contact-form button:focus {
  background-color: #4d7057;
  outline: none;
}

.social-links {
  margin-top: 2rem;
  text-align: center;
}

.social-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-links a {
  color: var(--verde-scuro);
  text-decoration: underline;
  font-weight: bold;
}

/* =============================== */
/* SLIDESHOW SECTION               */
/* =============================== */

.slideshow {
  margin-top: 4rem;
  padding: 1rem;
  background-color: var(--beige);
}

.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Fade effect */
.fade {
  animation-name: fade;
  animation-duration: 1.2s;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* =============================== */
/* DEGUSTAZIONE SECTION            */
/* =============================== */

.degustazione {
  padding: 3rem 1.5rem;
  background-color: var(--bianco);
}

.degustazione-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.degustazione-video video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.degustazione-testo {
  color: var(--verde-scuro);
  text-align: left;
}

.degustazione-testo h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.degustazione-testo p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Responsive for degustazione layout */
@media (min-width: 768px) {
  .intro-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }

  .intro-text {
    flex: 3;
  }

  .intro-slogan {
    flex: 1;
    text-align: right;
  }

  .degustazione-container {
    flex-direction: row;
  }

  .degustazione-video,
  .degustazione-testo {
    flex: 1;
  }

  .degustazione-testo {
    padding-left: 2rem;
  }
}

      /* =============================== */
/* ACCESSIBILITÀ                   */
/* =============================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =============================== */
/* SHOP - HERO SECTION             */
/* =============================== */

.shop-hero {
  background-size: cover;
  background-position: center;
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  text-align: center;
  padding: 2rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text .highlight {
  color: var(--oro);
}

.hero-text p {
  font-size: 1.2rem;
}

/* =============================== */
/* SHOP - VETRINA PRODOTTO          */
/* =============================== */

.shop-vetrina {
  background-color: var(--bianco);
  padding: 4rem 1.5rem;
  color: var(--verde-scuro);
}

.shop-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.bottiglia img {
  max-width: 320px;
  width: 100%;
  height: auto;
}

.dettagli {
  max-width: 500px;
  text-align: center;
}

.dettagli h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.dettagli ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: left;
  line-height: 1.6;
}

.dettagli ul li {
  margin-bottom: 0.5rem;
}

.prezzo {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.spedizione {
  font-size: 0.9rem;
  color: #666;
}

.shop-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--verde-salvia);
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.shop-button:hover {
  background-color: #4d7057;
}

/* =============================== */
/* RESPONSIVE SHOP LAYOUT          */
/* =============================== */

@media (min-width: 768px) {
  .shop-flex {
    flex-direction: row;
    align-items: flex-start;
  }

  .dettagli {
    text-align: left;
    padding-left: 2rem;
  }
}

/* =============================== */
/* STORIA - HERO                   */
/* =============================== */

.storia-hero {
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: white;
}

.storia-hero-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  max-width: 800px;
}

.storia-hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-family: 'OpenDyslexic', sans-serif;
}

.storia-hero-overlay p {
  font-size: 1.2rem;
  font-weight: 400;
}

/* =============================== */
/* STORIA - BIO E FOTO             */
/* =============================== */

.storia-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  font-family: 'OpenDyslexic', sans-serif;
  color: var(--verde-scuro);
}

.nicholas-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.nicholas-foto {
  width: 220px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nicholas-bio {
  max-width: 700px;
  text-align: center;
  line-height: 1.6;
}

.nicholas-bio h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--verde-salvia);
}

/* =============================== */
/* TIMELINE                        */
/* =============================== */

.timeline {
  margin: 4rem 0;
  padding: 0 1rem;
}

.timeline h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.timeline ul {
  list-style: none;
  padding-left: 0;
  max-width: 600px;
  margin: 0 auto;
  border-left: 4px solid var(--verde-salvia);
  position: relative;
}

.timeline li {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  font-size: 1.1rem;
}

.timeline .year {
  font-weight: bold;
  color: var(--verde-salvia);
  margin-right: 0.5rem;
}

.timeline li::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0.3rem;
  width: 12px;
  height: 12px;
  background-color: var(--verde-salvia);
  border-radius: 50%;
}

/* =============================== */
/* VALORI                          */
/* =============================== */

.valori {
  padding: 4rem 1rem;
}

.valori h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.valori-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 0;
}

.valore-box {
  background-color: #f2f2f2;
  border-left: 6px solid var(--verde-salvia);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.valore-box:hover {
  transform: translateY(-4px);
}

.valore-box h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  color: var(--verde-scuro);
}

.valore-box p {
  font-size: 1rem;
  color: #444;
}

/* =============================== */
/* RESPONSIVE STORIA               */
/* =============================== */

@media (min-width: 768px) {
  .nicholas-wrapper {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .nicholas-bio {
    padding-left: 2rem;
  }
}

/* =============================== */
/* HERO FULL SCREEN (STORIA)       */
/* =============================== */

.hero-full {
  position: relative;
  background-image: url('img/nicholas.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Reutilizzo HERO OVERLAY già esistente */

/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================== */
/* STORIA PAGINA                   */
/* =============================== */

.storia {
  padding: 2rem 1rem;
}

.storia-container {
  max-width: 800px;
  margin: 0 auto;
}

.storia h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.storia p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

/* Timeline */
.timeline {
  margin: 2rem 0;
  padding: 0 1rem;
}

.timeline h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.timeline ul {
  padding-left: 1rem;
  border-left: 4px solid var(--verde-salvia);
}

.timeline li {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.timeline .year {
  font-weight: bold;
  color: var(--verde-salvia);
}

.timeline li::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0.3rem;
  width: 12px;
  height: 12px;
  background-color: var(--verde-salvia);
  border-radius: 50%;
}

/* Valori */
.valori {
  padding: 3rem 1rem;
}

.valori h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.valori-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.valore-box {
  background-color: #f4f4f4;
  padding: 1.5rem;
  border-left: 6px solid var(--verde-salvia);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.valore-box h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  color: var(--verde-scuro);
}

.valore-box p {
  font-size: 1rem;
  color: #444;
}

/* =============================== */
/* DEGUSTAZIONE SECTION            */
/* =============================== */

.degustazione-section {
  padding: 4rem 1.5rem;
  background-color: #f8f5ef;
}

.degustazione-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .degustazione-content {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
}

.degustazione-video video {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.degustazione-text {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  max-width: 600px;
}

.degustazione-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.degustazione-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* =============================== */
/* BOTANICHE SECTION               */
/* =============================== */

.botaniche-section {
  padding: 4rem 1.5rem;
  background-color: #ffffff;
  color: #2f4f4f;
}

.botaniche-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.botaniche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.botanica-box {
  background-color: #f2f2f2;
  border-left: 6px solid #6b8f71;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.botanica-box:hover {
  transform: translateY(-4px);
}

.botanica-box img {
  width: 100%;
  height: auto;
  display: block;
}

.botanica-box-content {
  padding: 1rem;
}

/* =============================== */
/* COCKTAIL SECTION                */
/* =============================== */

.cocktail-section {
  background-color: #f8f5ef;
  padding: 4rem 1.5rem;
}

.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cocktail-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.cocktail-card:hover {
  transform: translateY(-4px);
}

.cocktail-card img {
  width: 100%;
  height: auto;
}

.cocktail-card .cocktail-content {
  padding: 1.5rem;
}

/* =============================== */
/* BANNER DOVE TROVARLO             */
/* =============================== */

.banner-elegante {
  background-image: url('img/fiori.png');
  padding: 2rem 1rem;
  margin-top: 1rem;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.banner-sottotitolo {
  font-size: 1.2rem;
  color: var(--verde-scuro);
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner-contenitore {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.banner-testo {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5rem;
}

.banner-testo h1 {
  font-size: 3rem;
  color: var(--verde-scuro);
  line-height: 1.2;
  max-width: 500px;
}

.banner-foto {
  flex: 1;
  text-align: center;
}

.banner-foto img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  transition: transform 0.5s;
}

.banner-foto img:hover {
  transform: scale(1.03);
}

.spazio-separatore {
  height: 3rem;
}

@media (max-width: 768px) {
  .banner-contenitore {
    flex-direction: column;
  }

  .banner-testo h1 {
    font-size: 2.2rem;
  }
}

/* =============================== */
/* MAPPA                           */
/* =============================== */

.mappa-section {
  padding: 2rem 1rem;
}

.mappa-section iframe {
  width: 100%;
  height: 600px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* =============================== */
/* CONTAINER E SEZIONE PRINCIPALE   */
/* =============================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =============================== */
/* FILTRI CITTA' E LOCALI           */
/* =============================== */

.dove-provarlo-section {
  padding: 4rem 1rem;
}

.layout-citta-locali {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin-top: 2rem;
  align-items: flex-start;
}

/* Menu città desktop */
.menu-citta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

/* Bottoni città */
.menu-citta button {
  padding: 0.8rem 1.2rem;
  background-color: #ffffff;
  border: 2px solid var(--verde-salvia);
  color: var(--verde-salvia);
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-citta button.filtro-attivo,
.menu-citta button:hover {
  background-color: var(--verde-salvia);
  color: #ffffff;
}

/* Select mobile */
.menu-citta-mobile {
  display: none;
  margin: 1rem 0;
}

.menu-citta-mobile select {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border: 2px solid var(--verde-salvia);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  color: var(--verde-scuro);
}

/* Locali filtrati */
.locali-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 3;
}

/* Card locale */
.card-locale {
  background-color: #ffffff;
  border: 2px solid var(--verde-salvia);
  padding: 1.2rem;
  border-radius: 12px;
  font-weight: bold;
  text-align: center;
  color: var(--verde-scuro);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease, color 0.3s ease;
}

.card-locale:hover {
  background-color: var(--verde-salvia);
  color: #ffffff;
}

/* =============================== */
/* RESPONSIVE                      */
/* =============================== */

@media (max-width: 768px) {
  .layout-citta-locali {
    flex-direction: column;
  }

  .menu-citta {
    display: none;
  }

  .menu-citta-mobile {
    display: block;
  }

  .locali-container {
    margin-top: 1rem;
  }
}

/* =============================== */
/* VARIABILI COLORI                 */
/* =============================== */

:root {
  --verde-salvia: #6b8f71;
  --verde-scuro: #2f4f4f;
}


/* =============================== */
/* LANGUAGE SWITCHER               */
/* =============================== */

.language-switcher {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  z-index: 101;
}

.flag-icon {
  width: 24px;
  height: auto;
}

.menu-citta {
  display: none !important;
}

.menu-citta-mobile-forzato {
  display: block;
  margin: 2rem 0;
}

.menu-citta-mobile-forzato select {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 2px solid var(--verde-salvia);
  font-size: 1rem;
  background-color: white;
  color: var(--verde-scuro);
}/* =============================== */
/* TERMINI & PRIVACY PAGE          */
/* =============================== */
.termini-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  background-color: var(--bianco);
  color: var(--verde-scuro);
  font-family: 'OpenDyslexic', Arial, sans-serif;
  line-height: 1.8;
  font-size: 0.7rem;
}

.termini-container h1 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--verde-salvia);
}

.termini-container h2 {
  font-size: 1rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--verde-salvia);
}

.termini-container h3 {
  font-size: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--verde-salvia);
}

.termini-container p,
.termini-container li {
  font-size: 0.7rem;
  margin-bottom: 0.8rem;
}

.termini-container ul {
  padding-left: 1.2rem;
  list-style: disc;
}

.termini-container a {
  color: var(--verde-salvia);
  text-decoration: underline;
}

/* =============================== */
/* COOKIE POLICY & PRIVACY PAGE   */
/* =============================== */

.cookie-privacy-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  background-color: var(--bianco);
  color: var(--verde-scuro);
  font-family: 'OpenDyslexic', Arial, sans-serif;
  line-height: 1.8;
  font-size: 0.7rem;
}

.cookie-privacy-container h1 {
  font-size: 1.4rem; /* più grande */
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--verde-salvia);
}

.cookie-privacy-container h2 {
  font-size: 1rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--verde-salvia);
}

.cookie-privacy-container h3 {
  font-size: 0.75rem; /* più piccolo */
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--verde-salvia);
}

.cookie-privacy-container p,
.cookie-privacy-container li {
  font-size: 0.7rem;
  margin-bottom: 0.8rem;
}

.cookie-privacy-container ul {
  padding-left: 1.2rem;
  list-style: disc;
}

.cookie-privacy-container a {
  color: var(--verde-salvia);
  text-decoration: underline;
}

.footer-links-legali {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding: 0 1.5rem;
  flex-wrap: wrap;
}

.footer-link {
  color: #ffffff;
  font-size: 0.9rem;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--oro);
}

/* =============================== */
/* FOOTER LINK LEGALI              */
/* =============================== */

.footer-links-legali {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding: 0 1.5rem;
  flex-wrap: wrap;
}

.footer-link {
  color: #ffffff;
  font-size: 0.9rem;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--oro);
}


/* === Banner sezione introduttiva === */
.banner-elegante {
  background-color: var(--beige);
  padding: 1rem 1.5rem;
}

.banner-contenitore {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.banner-testo {
  flex: 1;
  min-width: 300px;
  color: var(--verde-scuro);
  font-size: 1.1rem;
  line-height: 1.7;
  order: 2; /* Mobile: testo dopo immagine */
}

.banner-testo p {
  margin-bottom: 1.2rem;
}

.banner-testo p:last-of-type {
  margin-bottom: 0.5rem; /* meno spazio sotto l'ultimo paragrafo */
}

.banner-foto {
  flex: 1;
  min-width: 300px;
  text-align: center;
  order: 1; /* Mobile: immagine prima */
}

.banner-foto img {
  max-width: 80%;
  height: auto;
  border-radius: 12px;
}

/* Inversione ordine su desktop */
@media (min-width: 768px) {
  .banner-testo {
    order: 1;
  }

  .banner-foto {
    order: 2;
  }
}

/* === Menu città mobile (integrato nel banner) === */
.menu-citta-mobile-forzato {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}

.menu-citta-mobile-forzato select {
  width: 100%;
  max-width: 250px;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  border: 2px solid var(--verde-scuro);
  border-radius: 8px;
  background-color: white;
  color: var(--verde-scuro);
  margin: 0 auto;
}


/* === Locali (lista filtrabile) === */
.locali-container {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-locale {
  background-color: white;
  border-left: 4px solid var(--verde-salvia);
  padding: 1rem;
  border-radius: 8px;
  font-weight: bold;
  color: var(--verde-scuro);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}


.dove-provarlo-section h2 {
  margin-bottom: 0.5rem !important;
  text-align: center !important;
}

.menu-citta-mobile-forzato {
  margin-top: 0rem !important;
  display: flex !important;
  justify-content: center !important;
}

.menu-citta-mobile-forzato select {
  max-width: 250px !important;
  width: 100% !important;
}

/* Riduce distanza tra titolo e select */
.dove-provarlo-section h2 {
  margin-bottom: 0.2rem !important;
}

.menu-citta-mobile-forzato {
  margin-top: 0rem !important;
}

.footer-deco {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none; /* così non interferisce */
}

.footer-deco img {
  width: 140px;
  height: auto;
  opacity: 0.8;
  transform: translateY(20%);
}

/*contatti*/
  



.contact-info-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--verde-scuro);
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.4;
}

.contact-item img {
  width: 24px;
  height: auto;
  flex-shrink: 0;
}

.contact-item:hover {
  color: var(--oro);
}
