/** Shopify CDN: Minification failed

Line 123:0 Unexpected "}"

**/
/* === Tema base (override dove serve) ================================ */
:root {
  --color-background: #FFFFFF; /* bianco */
  --color-foreground: #505052; /* grigio testo */
  --color-accent: #B42028;     /* rosso brand */
}

/* Esempi di temi opzionali
[data-theme="wine"] { --color-accent:#9e3039; }
[data-theme="bubbles"] { --color-accent:#2a7ea8; }
*/

/* === Sezione eroe generica ========================================= */
.section-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;          /* centratura verticale */
  align-items: center;               /* centratura orizzontale */
  min-height: 40vh;
  background-color: var(--color-background);
  color: var(--color-foreground);
  padding: 4rem 2rem;
  margin: 0 auto;
  max-width: 2000px;
  text-align: center;
}

/* === Titolo ========================================================= */
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.1;
  /* dimensione fluida: min 2.5rem, preferita 10vw, max 10rem */
  font-size: clamp(2.5rem, 10vw, 10rem);
  margin: 0 auto;
  width: fit-content;
  opacity: 0;
  animation: kf-title-in 0.8s ease-out 0.2s forwards;
}

.hero-title::after {
  content: none;
  display: block;
  width: 4rem;
  height: 4px;
  background-color: var(--color-accent);
  margin: 1rem auto 0;
  opacity: 0.6;
}

/* === Sottotitolo ==================================================== */
.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-foreground);
  font-size: clamp(1rem, 2.4vw, 2.4rem);
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: kf-subtitle-in 0.8s ease-out 0.5s forwards;
}

/* === Box citazione / testo ========================================= */
.hero-quote {
  max-width: 1400px;
  margin: 2rem auto 0;
  opacity: 0;
  animation: kf-quote-in 0.8s ease-out 0.8s forwards;
}

.hero-quote p,
.hero-text {
  font-family: Georgia, serif;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-foreground);
  margin: 0;
  font-size: clamp(1rem, 2vw, 2rem);
}

/* === Animazioni (riutilizzabili) ==================================== */
@keyframes kf-title-in {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes kf-subtitle-in {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes kf-quote-in {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === Accessibilità animazioni ====================================== */
@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-subtitle,
  .hero-quote { animation: none; opacity: 1; }
}

/* === Mobile ========================================================= */
@media screen and (max-width: 768px) {
  .section-hero { min-height: 20vh;
    padding: 2rem 1rem; }

  /* se vuoi un accento diverso su mobile, sovrascrivi la var */
  /* :root { --color-accent: #B42028; }  <-- evita !important */
}

  .wine-text-box {
    padding: 1.5rem;
    border-radius: 0;
    font-size: 0.95rem;
  }
}
