/* ============================================================
   PRIVACY-POLICY-TERMINI-CONDIZIONI.CSS
   Gestisce la pagina privacy-policy.html e termini-condizioni.html
   ============================================================ */

/* Reset di base */
body {
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
}

/* ================= HERO ================= */
.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%);
}

.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: #e8f0ff;
}

/* Colore specifico Privacy Policy */
.hero-privacy {
  background-color: #3f51b5; /* Blu/indigo */
}

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

@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; }
}