@charset "UTF-8";
:root {
  --bg: #faf7f2;
  --bg-soft: #f3e9db;
  --bg-soft2: #f9f1e4;
  --text: #2b2620;
  --accent: #c89b3c;
  --accent-soft: #f2e1b8;
  --border: #e0d4c3;
}

.hero-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
}

header {
  /* immagine di sfondo */
  background-image: url("../images/headerPanettoni.jpg");
  /* fa riempire tutto il div mantenendo le proporzioni */
  background-size: cover;
  /* centra l'immagine */
  background-position: center;
  /* niente ripetizione */
  background-repeat: no-repeat;
  /* il div prende il 100% della larghezza */
  width: 100%;
  /* altezza “visibile” (esempio: metà viewport) */
  height: 100%;
  min-height: 500px;
  max-height: 50vh;
  /* opzionale: per posizionare il contenuto interno */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 45px 20px;
}

.header-container {
  color: black;
  text-shadow: 2px 2px 3px white;
  box-sizing: border-box;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-visual-box {
  color: white;
  display: inline-block;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 20px;
  padding: 16px 16px 18px;
  text-align: left;
  max-width: 340px;
}

.hero-visual-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-visual-text {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 6px;
}

.hero-visual-list {
  font-size: 0.82rem;
  padding-left: 18px;
  margin-top: 4px;
  margin-bottom: 0;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 30px;
}

.section-soft {
  background: var(--bg-soft2);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 22px 18px 18px;
  margin-top: 28px;
}

.faq-item {
  margin-bottom: 14px;
}

.faq-q {
  font-weight: 600;
}

.card {
  margin-top: 20px;
  height: 420px;
}