/* Stili per il footer del sito */

/* ---- SITE FOOTER ---- */
.site-footer {
  background: #0a0a0a;
  padding: 40px 40px;
  border-top: 1px solid rgba(255, 223, 0, 0.15);
  margin-top: 40px;
  margin-bottom: 40px;
}

/* ---- FOOTER CONTAINER ---- */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ---- LEGAL FOOTER ---- */
.legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  background: transparent;
  border-top: none;
}

/* Stile per il testo legale */
.legal-text p {
  color: #cfcfcf;
  font-size: 14px;
  margin: 5px 0;
  line-height: 1.6;
}

/* Stile per i link legali */
.legal-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-links li {
  position: relative;
}

.legal-links li:not(:last-child)::after {
  content: '•';
  position: absolute;
  right: -18px;
  color: #FFDF00;
  opacity: 0.5;
}

.legal-links a {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.legal-links a:hover {
  color: #FFDF00;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  .site-footer {
    padding: 30px 16px;
    margin-top: 40px;
  }
  
  .legal {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .legal-links li:not(:last-child)::after {
    display: none;
  }
}