/* =========================================================
   FOOTER – stile dedicato
   3 colonne + 2ª riga full width
   Palette: dark tech + #019ddf
   ========================================================= */

:root {
  --footer-bg: #0f1419;
  --text-light: #e5e7eb;
  --text-muted: #ffffff;
}

/* ----------- WRAPPER ----------- */
.site-footer {
  background: var(--footer-bg);
  color: var(--text-light);
  padding-top: 50px;
  border-top: 1px solid var(--line);
}

/* ----------- RIGA 1 / 3 COLONNE ----------- */
.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

.footer-title{
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;          /* o il colore attuale del footer */
  letter-spacing: .4px;
}


.footer-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.45;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin: 6px 0;
  color: var(--text-muted);
  font-size: 15px;
}

.footer-list a {
  color: var(--text-light);
  text-decoration: none;
  transition: .18s;
}

.footer-list a:hover {
  color: var(--accent);
}

/* ----------- RIGA 2 / BOTTOM ----------- */
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding: 20px 0;
}

.footer-bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* ----------- RESPONSIVE ----------- */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom-wrap {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}
