/* Stili per il footer */
footer {
  background-color: var(--solid_dark_anthracite_41);
  color: var(--solid_ultralight_grey_248);
  padding: 3rem 0;
  margin-top: 3rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-logo {
  flex: 0 0 100%;
  text-align: center;
  margin-bottom: 2rem;
}

.footer-logo-img {
  max-width: 150px;
}

.footer-info {
  flex: 1 0 100%;
  text-align: center;
  margin-bottom: 1.5rem;
}

.footer-social {
  flex: 1 0 100%;
  text-align: center;
}

footer p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

footer a {
  color: var(--solid_light_red);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--solid_red);
  text-decoration: underline;
}

.social-link {
  display: inline-block;
  margin: 0 10px;
  color: var(--solid_ultralight_grey_248);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--solid_red);
  transform: translateY(-3px);
}

@media screen and (min-width: 768px) {
  .footer-logo {
    flex: 0 0 30%;
    text-align: left;
    margin-bottom: 0;
  }
  
  .footer-info {
    flex: 0 0 40%;
    text-align: center;
    margin-bottom: 0;
  }
  
  .footer-social {
    flex: 0 0 30%;
    text-align: right;
  }
}

/* Stili per la sezione di contatto */
.contact-email {
  margin-top: 1rem;
}

.mailto-link {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--solid_red);
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--solid_red);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.mailto-link:hover {
  background-color: var(--solid_red);
  color: white;
}

.contact-intro {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hidden {
  display: none;
}
