/* Footer Styles */
.site-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
  }
  
  /* Footer Content Layout */
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
  }
  
  /* Footer Sections */
  .footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  
  /* Footer Headings */
  .footer-heading {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-align: center;
  }
  
  .footer-heading::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #8f001d;
  }
  
  /* Footer Links List */
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
  }
  
  .footer-links li {
    margin-bottom: 0.75rem;
  }
  
  /* Footer Link Styling */
  .footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
  }
  
  .footer-link:hover {
    color: white;
  }
  
  .footer-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
  }
  
  .footer-link:hover::after {
    width: 100%;
  }
  
  /* Contact Item */
  .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-icon {
    margin-right: 0.75rem;
    color: #8f001d;
    font-size: 1.1rem;
  }
  
  /* Social Links */
  .social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white !important; /* Forza il colore bianco */
    transition: all 0.3s ease;
    text-decoration: none; /* Rimuove la sottolineatura */
  }
  
  .social-icon {
    width: 18px;
    height: 18px;
    fill: white !important; /* Forza il colore di riempimento bianco */
  }
  
  .social-link:hover {
    background-color: #8f001d;
    transform: translateY(-3px);
  }
  
  /* Assicura che le icone rimangano bianche anche al passaggio del mouse */
  .social-link:hover .social-icon {
    fill: white !important;
  }
  
  /* Footer Divider */
  .footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 1.5rem 0;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
  }
  
  .copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
  
    .contact-item {
      justify-content: center;
    }
  
    .social-links {
      justify-content: center;
    }
  }
  