/* VARIABILI COLORE BRAND */
:root {
  --brand-green: #71c55d;
  --brand-green-hover: #5eb44a; /* Verde leggermente più scuro per l'hover */
  --brand-green-subtle: rgba(113, 197, 93, 0.15); /* Sfondo chiaro per i box avviso */
  --brand-green-dark: #316227; /* Verde scuro per garantire leggibilità al testo */
}

/* RESET GERARCHIA TIPOGRAFICA */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2c3e50;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* SOVRASCRITTURA CLASSI BOOTSTRAP PER IL TUO VERDE CUSTOM */
.text-success {
  color: var(--brand-green) !important;
}

.bg-success-subtle {
  background-color: var(--brand-green-subtle) !important;
}

.text-success-emphasis {
  color: var(--brand-green-dark) !important;
}

/* SEZIONE HERO */
.hero {
  width: 100%;
  min-height: 45vh;
  
  /* Sfondo con opacità per contrasto testo e immagine centrata */
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), 
                    url('../img/semaforo_nuovo.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
  /* Centramento contenuto */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

/* FONT HERO RESPONSIVE */
.hero-title {
  font-size: clamp(1.4rem, 4vw, 2.5rem);
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  margin: 0 auto;
}

/* SOTTOTITOLO INTRODUZIONE */
.section-subtitle {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.3;
}

/* PARAGRAFI PRINCIPALI */
.body-text {
  font-size: 0.925rem;
  line-height: 1.55;
}

/* TITOLI DENTRO LE BOX */
.card-box-title {
  font-size: 1.2rem;
}

/* TESTO DESCRITTIVO DENTRO LE BOX */
.card-box-text {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* AVVISI/INVITI ALL'AZIONE DENTRO LE BOX */
.box-callout {
  font-size: 0.825rem;
}

/* LINK DEGLI ELENCHI (HABITAT E CATEGORIE) */
.item-link {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.item-link:hover {
  color: var(--brand-green-hover);
}

/* SOTTOTESTO DEGLI ELENCHI */
.item-desc {
  display: block;
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 1px;
}

/* FOOTER */
.footer-text {
  font-size: 0.8rem;
}

/* ADATTAMENTO PER SCHERMI MOLTO PICCOLI (< 576px) */
@media (max-width: 576px) {
  .body-text {
    font-size: 0.875rem;
  }
  
  .card-box-title {
    font-size: 1.1rem;
  }
  
  .item-link {
    font-size: 0.85rem;
  }
  
  .item-desc {
    font-size: 0.775rem;
  }
}