:root {
  --color1: #D4E2D4;
  --color2: #709078;
  --color3: #333333; /* Grigio molto scuro per contrasto */
  --color4: #E9DAC1;
  --color5: #F9F7F2;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--color5);
  color: var(--color3); /* Applicato a tutto il body */
  line-height: 1.6;
}

h1, h2, h3, .font-serif {
  font-family: 'Playfair Display', serif;
  color: var(--color2); /* Colore predominante per i titoli */
}

/* Forzatura Italic globale */
.italic {
  font-style: italic;
}

/* Notification Toast */
.notification-toast {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: var(--color2);
  color: white;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 1000;
  transform: translateY(200%);
  transition: transform 0.5s ease-in-out;
}

.notification-toast.show {
  transform: translateY(0);
}

/* Cookie Popup Styling */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 20px;
  z-index: 9999;
  border-top: 1px solid var(--color1);
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.cookie-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-popup-title {
  font-weight: bold;
  font-size: 1.2rem;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.cookie-btn-accept {
  background: var(--color2);
  color: white;
}

.cookie-btn-decline {
  border: 1px solid var(--color3);
}

/* Override per i testi nelle sezioni scure */
.text-white, .text-white h2, .text-white p {
  color: #ffffff !important;
}

/* Rimosse classi reveal-element per evitare animazioni */