@font-face {
  font-family: 'Maratre';
  src: url('../../../fonts/Maratre.otf') format('opentype');
}

html {
  font-size: clamp(14px, 1.5vw, 18px);
  color:1C1F33;
}

.footer {
  background-color: #F5D0E1;
  width: 95%;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 25px;
  font-family: Arial, sans-serif;
  color: #1C1F33;
  box-shadow:
    inset 0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 -4px 12px rgba(0, 0, 0, 0.15),
    inset 6px 0 12px rgba(0, 0, 0, 0.15),
    inset -6px 0 12px rgba(0, 0, 0, 0.15);
}

.footer-line-horizontal {
  width: 100%;
  height: 1px;
  background-color: black;
  margin: clamp(1rem, 3vw, 2rem) 0;
  display: none; /* Solo mobile */
}

.footer-line-vertical {
  width: 1px;
  background-color: black;
  align-self: stretch;
  display: block;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: clamp(1rem, 5vw, 4rem);
}

.footer-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  flex-wrap: wrap;
}

.footer-logo {
  width: clamp(100px, 20vw, 260px);
  height: auto;
  margin-right: clamp(1rem, 5vw, 3.5rem);
}

.footer-info {
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  text-align: left;
}

.footer-info p {
  display: flex;
  align-items: center;
  margin: 0;
}

.footer-info img {
  width: clamp(20px, 2.5vw, 32px);
  margin-right: clamp(0.5rem, 1.5vw, 1.75rem);
  height: auto;
}

.footer-info a {
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.footer-info a:hover {
  cursor: pointer;
}

.footer-info a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  background-color: #e06699;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-info a:hover::after {
  transform: scaleX(1);
}

.footer-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-quote {
  font-family: 'Maratre', cursive;
  font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: 1.5;
  margin: 0;
  letter-spacing: 3px;
  padding: 0 clamp(0.5rem, 2vw, 2rem);
}

.footer-link-content {
  display: flex;
  align-items: center;
}

.footer-icon {
  width: clamp(20px, 2.5vw, 32px);
  margin-right: clamp(0.5rem, 1.5vw, 1rem);
  height: auto;
}

.footer-line-horizontal {
  width: 100%;
  height: 1px;
  background-color: black;
  margin-bottom: clamp(1rem, 2vw, 2rem);
  display: block; /* Sempre visibile */
}
.footer-line-mobile-separator {
  width: 100%;
  height: 1px;
  background-color: black;
  margin: clamp(0.2rem, 2vw, 1rem) 0;
  display: none;
}

.footer-copyright {
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  color: #777; /* grigio chiaro */
  text-align: center;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0;
  opacity: 0.9;
}

/* === RESPONSIVE PER MOBILE === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-left {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    margin: 0 0 1rem 0;
    width: clamp(100px, 30vw, 180px);
  }

  .footer-info {
    align-items: center;
    text-align: center;
  }

  .footer-line-vertical {
    display: none;
  }

  .footer-line-horizontal {
    display: block;
  }

  .footer-right {
    margin-top: 0;
  }

  .footer-quote {
    padding-top: 1rem;
	font-weight: bold;
	font-size: clamp(2.4rem, 3vw, 3.5rem);
  }
  
  .footer-line-mobile-separator {
    display: block;
  }
}

@media (max-width: 2048px) and (min-width: 769px) {
  .footer {
    padding: clamp(1rem, 2vw, 2rem);
  }

  .footer-logo {
    width: clamp(80px, 15vw, 180px);
    margin-right: clamp(1rem, 2vw, 2rem);
  }

  .footer-info {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    gap: clamp(0.5rem, 1vw, 1rem);
  }

  .footer-info img,
  .footer-icon {
    width: clamp(20px, 2vw, 28px);
    margin-right: clamp(0.5rem, 1vw, 1rem);
  }

  .footer-quote {
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    line-height: 1.4;
    padding: 0 clamp(0.5rem, 1.5vw, 1rem);
  }

  .footer-container {
    gap: clamp(1rem, 3vw, 2rem);
  }
}