/* === BASE === */
body {
  background-color: rgba(255, 187, 0, 0.2);
  font-family: "Quicksand", sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2, h3, p {
  margin: 1rem;
}

.grassetto {
  font-weight: bold;
}

/* === HEADER === */
header nav {
  background-color: #ffbb00;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
  color: #262D5C; /* prima bianco */
  position: relative;
  z-index: 2;
}

#logo_annunziata {
  max-height: 5rem;
  padding: 0.5rem;
}

.nav-link,
.navbar-brand {
  color: #262D5C; /* prima bianco */
}

.nav-link:hover {
  color: #333333;
}

/* === IMMAGINI === */
img {
  max-width: 100%;
  height: auto;
}

.immagine_grande {
  width: 100%;
  margin: 0;
}

.immagine_laterale {
  max-height: 25rem;
  border-radius: 1rem;
  margin: 1rem 0 2rem;
}

/* === RIQUADRI === */
.riquadro {
  background: #ffbb00;
  color: #262D5C; /* prima bianco */
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  padding: 1rem;
  margin: 2rem auto;
}

.riquadro h2 {
  color: #262D5C; /* titoli leggibili */
  font-weight: 700;
}

/* === IBAN BOX === */
.iban-box {
  display: inline-block;
  background-color: white;
  color: #262D5C; /* prima nero pieno */
  padding: 1rem;
  border-radius: 0.75rem;
  font-weight: bold;
  font-size: 1.25rem;
  word-break: break-all;
}

/* === BOTTONE "TORNA SU" === */
.bottone {
  display: inline-flex;
  gap: 0.5rem;
  background-color: white;
  color: #262D5C; /* prima nero pieno */
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

/* === FOOTER === */
footer {
  background-color: #ffbb00;
  color: #262D5C; /* prima bianco */
  padding: 2rem 1rem;
  margin-top: 2rem;
}

footer h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

footer p,
footer li {
  font-size: 0.9rem;
}

/* === MAPPA RESPONSIVE === */
.map-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 1rem;
}

.map-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* === BADGE COSTRUZIONE === */
.badge-construction {
  background-color: #ffc107;
  color: #262D5C; /* più leggibile sul giallo */
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  display: inline-block;
  white-space: nowrap;
}

/* === MEDIA QUERIES === */
@media (min-width: 768px) {
  .immagine_laterale {
    margin: 1rem auto;
  }
}

@media (min-width: 992px) {
  .badge-construction {
    font-size: 1.25rem;
    padding: 0.6rem 1.25rem;
  }
}

@media (max-width: 576px) {
  .iban-box {
    font-size: 1rem;
    padding: 0.75rem;
  }
}

.riquadro h2 {
  color: #262D5C;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

figure figcaption,
figure .overlay-text {
  color: #262D5C; /* invece di bianco */
  font-weight: 700;
}

section h2 {
  color: #262D5C;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#logo_annunziata {
  filter: brightness(0) saturate(100%) invert(17%) sepia(18%) saturate(1045%) hue-rotate(204deg) brightness(92%) contrast(89%);
}

/* --- SEZIONE DONAZIONI --- */
.donazioni {
  background-color: #ffbb00;
  color: #262D5C;
  border-radius: 1rem;
  padding: 2rem 1rem;
  margin: 2rem auto;
}

.donazioni h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #262D5C;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.donazioni .sottotitolo {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.iban-box {
  display: inline-block;
  background: #fff;
  color: #262D5C;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 0.25rem 0.25rem rgba(0,0,0,0.1);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 600px;   /* limite larghezza su desktop */
  width: 100%;        /* riempie bene su mobile */
}

.iban-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
}

.iban-numero {
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: inline-block;
  word-break: break-word; /* evita overflow su cell */
}

.iban-box .bonifico {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1rem;
}

.iban-box .bonifico strong {
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.donazioni .grazie {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

/* --- RESPONSIVE --- */
@media (max-width: 576px) {
  .donazioni h2 {
    font-size: 1.5rem;
  }

  .donazioni .sottotitolo {
    font-size: 1rem;
  }

  .iban-box {
    padding: 1rem;
    font-size: 1rem;
  }

  .iban-numero {
    font-size: 1.1rem;
    letter-spacing: 0;
  }

  .iban-box .bonifico {
    font-size: 0.95rem;
  }

  .donazioni .grazie {
    font-size: 0.9rem;
  }
}
