/* Esempio di CSS per contatti */
body {
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff9f0;
}

.contact-form-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.form-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.form-image {
  max-width: 200px;
  margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.privacy-label {
  font-size: 0.95rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 20px auto;
  text-align: left;
}

.privacy-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #ff9800;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  box-sizing: border-box; /* molto importante */
}

.contact-form button {
  background-color: #ff9800;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #e68900;
}

.testimonials-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.testimonials-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.testimonials-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #fffdf7;
  border: 2px dashed #ffc107;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.testimonial-text {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-style: italic;
  color: #555;
}

.testimonial-author {
  font-weight: bold;
  color: #222;
  font-size: 0.95rem;
}

@media (min-width: 600px) {
  .testimonials-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .testimonials-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- STILI PER IL TITOLO E LA DESCRIZIONE DEL FORM CONTATTI --- */
.contact-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
  background: linear-gradient(to right, #ff9800, #f57c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-description {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.info-contatti {
  background-color: #fffdf7;
  padding: 60px 20px;
  text-align: center;
}

.info-container {
  max-width: 1000px;
  margin: 0 auto;
}

.info-contatti h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #2c3e50;
}

.info-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.info-box {
  flex: 1 1 300px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.info-box h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #f9b233;
}

.info-box p {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #333;
}

.orari-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.05rem;
  color: #555;
}

.orari-lista li {
  margin-bottom: 8px;
}

.info-contatti a {
  color: #2c3e50; /* oppure #f9b233 per giallo */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-contatti a:hover {
  color: #f9b233;
  text-decoration: underline;
}

/* ========================================
   HERO - Contatti (come Gallery, colore arancione)
   ======================================== */

.hero {
  padding: 120px 20px 100px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  font-family: 'Quicksand', sans-serif;
}

.hero .hero-decor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: url('../images/hero-wave.svg') no-repeat center bottom / cover;
  z-index: 1;
}

.hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #fff3e0;
}

.hero-contact {
  background-color: #ff9800; /* 🔁 cambia colore se vuoi diverso */
}

.hero-contact h1,
.hero-contact p {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-contact .hero-btn {
  background-color: #ffffff;
  color: #ff9800;
}

.hero-contact .hero-btn:hover {
  background-color: #f3f3f3;
}

/* Animazione */
@keyframes fadeInUp {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  .hero { padding: 90px 20px 80px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
}