/* ============================================
   STYLES PAGE SHIPPING POLICY
   ============================================ */

body {
    background-color: #F9F9F9;
}

.shipping-section {
    min-height: 600px;
}

/* --- BANDEAU SUPERIEUR --- */
.shipping-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;
}

.shipping-banner h1 {
    font-family: 'Inter-bold';
    font-size: 36px;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-align: center;
}

/* --- CONTENU TEXTE --- */
.shipping-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;
}

.shipping-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #000;
    text-align: justify;
     font-family: 'Inter-semiregular';
}

/* Mise en valeur du nom Zhilki */
.brand-name {
    font-weight: bold;
    color: #000;
}

/* Liens de contact (Email/Tel) en vert */
.contact-link {
    color: #96DC02;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
    color: #273A00;
}

/* --- RESPONSIVE --- */

@media (max-width: 600px) {
    .shipping-banner {
        height: 100px;
        margin-bottom: 25px;
    }
    
    .shipping-banner h1 {
        font-size: 24px;
    }

    .shipping-content {
        padding: 20px;
    }

    .shipping-content p {
        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; }