/* ============================================================
   FILE: contact.css
   DESTO — Sezione Contatti (versione ottimizzata)
============================================================ */

/* ------------------------------------------------------------
   BLOCCO PRINCIPALE
------------------------------------------------------------ */
.contact-section {
  width: 90%;
  background: var(--secondary);
  color: var(--primary);
  padding: 40px 0 40px;
  margin: auto;
  margin-bottom: 70px;
  text-align: center;

  border-radius: 0px;
  border: 2px solid var(--primary);

  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.contact-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ------------------------------------------------------------
   TITOLO
------------------------------------------------------------ */
.contact-title {
  font-family: 'Chopard', serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: -0.27rem;        /* niente spacing */
  margin-bottom: 60px;
}


/* ------------------------------------------------------------
   COLONNE SINISTRA / DESTRA
------------------------------------------------------------ */

/* Struttura a float */
.contact-left,
.contact-right {
  width: 50%;
  float: left;
  text-align: left;
  margin-bottom: 25px;
}

.contact-right {
  text-align: right;
}

/* Testi */
.contact-left p,
.contact-right p {
  margin: 5px 0;
  font-size: 1.5rem;
  line-height: 1.5rem;
}

/* Link */
.contact-left a,
.contact-right a {
  color: var(--primary);
  text-decoration: none;
  transition: color .4s ease;
}

.contact-left a:hover,
.contact-right a:hover {
  color: var(--hover-light);
}

.contact-hours-title {
  font-weight: 700;
  margin-bottom: 6px;
}


/* ------------------------------------------------------------
   SOCIAL
------------------------------------------------------------ */
.contact-social a {
  color: var(--primary);
  transition: opacity .3s ease, color .3s ease;
  text-decoration: none;
}

.contact-social a:hover {
  opacity: 0.8;
  color: var(--hover-light);
}


/* ------------------------------------------------------------
   COPYRIGHT CENTRALE
------------------------------------------------------------ */
.contact-bottom {
  clear: both;
  margin-top: 70px;
  font-size: 1.4rem;
  opacity: 0.95;
}


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
    
.contact-section {
  padding: 20px 0 20px;
    }

  .contact-left,
  .contact-right,
  .contact-left p,
.contact-right p {
    width: 100%;
    float: none;
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.3rem;
  }
  
  .contact-bottom {
  font-size: 1.1rem;
  opacity: 0.90;
}

  .contact-title {
    font-size: 1.5rem;
  }
}

/* ============================================================
   MAPPA — Contenitore, bordo, desaturazione (IDENTICA ALLA TUA)
============================================================ */
.map-wrapper {
  width: 90vw;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0,0,0,0.12);
}

/* Mappa */
#map {
  width: 100%;
  height: 430px;
  filter: grayscale(100%) sepia(25%) brightness(0.9);
}

/* Etichetta DESTO */
.map-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary); /* sabbia */
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 2px;
  font-size: 1.3rem;
  text-align: center;
  backdrop-filter: blur(3px);
  font-family: "Cormorant", serif;
}

/* ============================================================
   PLACEHOLDER — FONT DESTO
============================================================ */

input::placeholder,
textarea::placeholder {
  font-family: 'Chopard', serif;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: rgba(114, 35, 39, 0.55);
}

/* Safari / iOS */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-family: 'Chopard', serif;
  letter-spacing: 0.02em;
}

/* Firefox */
input::-moz-placeholder,
textarea::-moz-placeholder {
  font-family: 'Chopard', serif;
  letter-spacing: 0.02em;
}

/* ============================================================
   MAP LABEL — DESTO
============================================================ */

.map-label {
  text-align: center;
  margin-top: 14px;
  font-family: 'Cormorant', serif;
  color: var(--primary);
}

.map-title {
  font-family: 'Chopard', serif;
  letter-spacing: -0.11em;
  font-size: 1.2rem;
  display: inline-block;
}

/* Mobile: iframe più basso */
@media (max-width: 768px) {
  .map-container iframe {
    height: 300px;
  }
}