/* ===============================
   CONTATTI PAGE STYLES
   =============================== */

.contacts-wrapper {
  background: linear-gradient(135deg, #ffffff 0%, #ede8e2 100%);
}

.contacts-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.25rem;
}

.contacts-intro {
  text-align: center;
  margin-bottom: 50px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  width: 100%;
  max-width: 500px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.contact-item:hover {
  background-color: rgba(140, 140, 110, 0.05);
}

.contact-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  stroke: var(--color-olive);
  fill: none;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info {
  min-width: 0;
  flex: 1;
  max-width: max-content;
}

.contact-info a {
  color: var(--color-ink);
  font-size: clamp(0.9rem, 1.25rem, 1.25rem);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.tel {
  letter-spacing: 3px;
}

.mobile-break {
  display: none;
}

.contact-info a:hover {
  border-bottom-color: var(--color-ink);
}

.contacts-response {
  text-align: center;
  margin-bottom: 40px;
}

.contacts-closing {
  text-align: center;
  font-style: italic;
  color: var(--color-olive);
  font-size: 1.5rem;
}

.contacts-deco1 {
  position: absolute;
  top: calc(100vh - 187px);
  right: 0;
  width: 200px;
  height: auto;
  z-index: 1;
  transform: scaleY(-1);
}

.contacts-deco2 {
  position: absolute;
  top: 60px;
  left: 0;
  width: 35vw;
  height: auto;
  transform: scaleY(1);
  rotate: 50deg;
}

@media (min-width: 1024px) {
  .contacts-deco2 {
    width: 15vw;
    top: 30vh;
  }
}

/* ===============================
   RESPONSIVE STYLES - CONTATTI
   =============================== */

@media (max-width: 480px) {
  .contact-item {
    padding: 10px;
    gap: 9px;
  }

  .mobile-break {
    display: block;
  }

  .contact-icon {
    width: clamp(24px, 28px, 32px);
    height: clamp(24px, 28px, 32px);
  }

  .contact-info a {
    font-size: min(4.4vw, 1.25rem);
  }
}
