﻿.site-footer {
  position: relative;
  background-image: url("../assets/strappo-sopra-largo.png");
  background-position-y: 20%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: clamp(2.5rem, 6vw, 8.5rem) 0 clamp(2rem, 5vw, 3rem);
  color: var(--white);
  z-index: 1;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.site-footer__logo {
  width: clamp(80px, 9vw, 120px);
}

.site-footer__links {
  font-family: "MAIAN", "Trebuchet MS", sans-serif;
  font-size: 0.95rem;
  text-align: center;
}

.site-footer__links a {
  margin: 0 0.6rem;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.site-footer__social {
  display: flex;
  gap: 0.8rem;
}

.site-footer__social a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer__social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__copy {
  margin-top: 0.6rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.75;
  font-family: "Nexa Extra Light";
}

@media (min-width: 1200px) {
  .site-footer__links {
    transform: translateX(10%) translateY(10%);
  }
}

@media (max-width: 768px) {
  
  .site-footer__social {
    margin-bottom: 20px;
  }

  .site-footer__inner {
    flex-direction: column;
  }

  .site-footer {
    padding-bottom: 10px;
    background-position: center top;
    background-size: 120% auto;
  }
}



