/* ============================================
   STYLES PAGE PRIVACY POLICY
   ============================================ */

.privacy-section {
  min-height: 600px;
  background-color: #F5F5F5;
  padding: 40px 0px;
}
/* Le bandeau vert foncé spécifique à cette page */
.privacy-banner {
  background-image:
    linear-gradient(to right, rgba(150, 220, 2, 0.85), rgba(0, 0, 0, 0.9)),
    url("./assets/homepage/0.png");
  background-position: center 30%; /* Dégradé vert sombre */
  border-radius: 20px;
  height: 230px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  overflow: hidden;
}
.privacy-banner::before{
    background-color: red;
}
.privacy-banner h1 {
  font-family: 'Inter-bold';
  font-size: 36px;
  color: #FFFFFF;
  z-index: 2;
  text-transform: capitalize;
}

/* Conteneur du texte */
.privacy-content {
  background-color: white;
  border-radius: 10px; /* Fond blanc */
  padding: 50px;
  font-family: 'Inter-regular';
  color: #000;
  line-height: 1.6;
}

.privacy-intro {
  font-size: 16px;
  font-family: Inter-regular;
  margin-bottom: 30px;
  color: #000;
}

/* Titres des sections (1, 2, 3...) */
.privacy-content h2 {
  font-family: 'Inter-semibold';
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 2px;
  color: #000;
}

/* Sous-titres (a, b, c...) */
.privacy-content h3 {
    font-family: 'Inter-semiregular';
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 1px;
    font-weight: 600;
}
.privacy-content p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #000;
    text-align: justify;
    font-family: 'Inter-semiregular';
}
/* Listes à puces */
.privacy-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.privacy-content ul li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #000000;
    font-family: 'Inter-semiregular';
}

/* Liens de contact (Email/Tel) */
.contact-link {
  color: var(--green-light);
  font-weight: bold;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
  color: var(--green-dark);
}

/* --- RESPONSIVE SPECIFIQUE PRIVACY --- */

@media (max-width: 1024px) {
  .privacy-section {
    padding: 40px;
}
}

@media (max-width:767px){
  .taste-the-essence {
    padding: 30px 15px 30px;
}
}

@media (max-width: 600px) {
 .privacy-section {
    padding: 30px 15px !important;
}
.privacy-content {
    padding: 20px;
}
  
  .privacy-banner {
    height: 100px;
    margin-bottom: 25px;
  }
  
  .privacy-banner h1 {
    font-size: 24px;
  }
  
  .privacy-content h2 {
    font-size: 18px;
  }
  
  .privacy-content p, 
  .privacy-content ul li {
    font-size: 14px;
  }
}
/* ============================================
   ANIMATIONS SCROLL (AJOUT)
   ============================================ */

/* État initial (Caché et décalé vers le bas) */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    visibility: hidden;
}

/* État Final (Visible et à sa place) */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Optionnel : Délai si vous voulez enchaîner des éléments */
.delay-200 { transition-delay: 0.2s; }