/* ============================
   FOOTER
============================ */

/* NEWSLETTER */
.footer-newsletter {
  background-color: transparent;
  border-bottom: 1px solid #eaeaea;
  padding: 0rem 1rem;
}

.footer-newsletter-inner {
  max-width: 1200px;
  margin: 0 auto -9rem auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1rem 1rem;
}

.footer-newsletter-icon {
  align-self: center;
  flex: 0 0 auto;
  margin-bottom: 0.5rem;
}

.footer-newsletter-title {
  width: 100%;
  color: #04211A;
  margin: 0 0 1rem;
  text-align: center;
}

.footer-newsletter-content {
  max-width: 500px;
  width: 100%;
  align-self: center;  
  text-align: left;
}

/* FOOTER BASE*/
.site-footer {
  background-color: #faf7f3;
  color: #04211A;
  padding-top: 3rem;
}

.site-footer a {
  color: #084537;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer a:hover {
  color: #c2380c;
  text-decoration: underline;
}

/* BLOCCO CENTRALE */
.footer-core {
  padding: 10em 1rem 2rem;
  background-color: #04211A;
  color: #ffffff !important;
}

.footer-core-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

/* Ogni colonna: flessibile con larghezza minima */
.footer-core-inner > * {
  flex: 1 1 260px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand img {
  width: 200px;
  margin-bottom: 1rem;
}

.footer-brand p,
.footer-info,
.footer-info p,
.footer-info strong,
.footer-info h4,
.footer-info a,
.footer-policies a,
.footer-copy {
  color: #ffffff !important;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-info a {
  display: inline-block;
  min-height: 48px;
  min-width: 48px;
  padding: 0rem 0.75rem;
}

/* SOCIAL + POLICY + COPYRIGHT */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.footer-social svg {
  width: 20px;
  height: 20px;
  fill: #084537;
}
.footer-social a:hover {
  background-color: #c2380c !important;
}
.footer-social a:hover svg {
  fill: #084537 !important;
}

.footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 1rem;
  text-align: center;
}

.footer-copy {
  text-align: center;
  line-height: 1.4;
  margin-bottom: 0;
}

/* RESPONSIVE*/
@media (max-width: 768px) {
  .footer-core-inner {
    gap: 1.5rem; /* ridotto da 2.5rem */
  }

  .footer-info {
    gap: 1rem; /* più compatto verticalmente */
  }

  .footer-bottom {
    margin-top: 1rem; /* avvicina alle informazioni sopra */
    gap: 0.75rem;      /* meno spazio tra icone e testi */
  }

  .footer-social {
    margin-bottom: 0.5rem; /* meno spazio sotto */
  }

  .footer-policies {
    margin-bottom: 0.5rem; /* meno spazio tra icone e policy */
  }
}
/* Rimuove il highlight su tap per i dispositivi touch */
* {
  -webkit-tap-highlight-color: transparent;
}


