/* ============================================
   STYLES PAGE TERMS AND CONDITIONS
   ============================================ */


body{
  background-color: #F5F5F5;
}
/* --- BANDEAU SUPERIEUR (Même style que les autres pages) --- */
.terms-banner {
    /* Dégradé vert sur image de fond */
    background-image:
      linear-gradient(to right, rgba(150, 220, 2, 0.85), rgba(0, 0, 0, 0.9)),
      url("./assets/homepage/0.png"); /* Assurez-vous que l'image existe */
    background-position: center 30%;
    background-size: cover;
    background-repeat: no-repeat;
    
    border-radius: 20px;
    height: 230px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.terms-banner h1 {
    font-family: 'Inter-bold';
    font-size: 40px;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* --- CONTENU TEXTE --- */
.terms-content {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    font-family: 'Inter-regular';
    color: #000;
    line-height: 1.6;
}

/* Titres des sections (1., 2., etc.) */
.terms-content h2 {
    font-family: 'Inter-bold';
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #000;
}




/* --- RESPONSIVE --- */

/* @media (max-width: 1024px) {
    .terms-section {
        margin: 20px 40px;
    }
} */

@media (max-width: 600px) {
    /* .terms-section {
        margin: 20px 15px;
    } */

    .terms-banner {
        height: 100px;
        margin-bottom: 25px;
    }
    .privacy-section {
    padding: 30px 15px;
}
    .terms-banner h1 {
        font-size: 24px !important;
    }

    .terms-content {
        padding: 20px; /* Moins de padding sur mobile */
    }

    .terms-content h2 {
        font-size: 16px;
    }

    .terms-content p, .terms-intro {
        font-size: 13px;
    }
}
/* ============================================
   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; }