/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

/* BODY */
body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    color: white;
    line-height: 1.6;
    overflow-x: hidden; /* empï¿½che le scroll horizontal */
}
html, body {
    overflow-x: hidden;
}



/* HEADER FIXE */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    width: 100%;
     position: relative;
}
.logo {
    font-size: 39px;
    font-weight: bold;
    color: #00ff88;
    margin: 0;
}

h1 {
    font-size: 18px;
    margin: 0;
    color: #fff;
}

/* NAV */
.nav {
    max-width: 1200px;
    margin: auto;
    padding: 0 25px; /* ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ÂÂï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ÂÂï¿½ ï¿½vite le dï¿½bordement */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ÂÂï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ÂÂï¿½ ï¿½vite que ï¿½a casse */
}

/* LOGO */
.nav h1 {
    flex-shrink: 0; /* ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ÂÂï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ÂÂï¿½ empï¿½che le logo de se compresser */
}

/* MENU */
.nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ÂÂï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ÂÂï¿½ passe ï¿½ la ligne si trop long */
    justify-content: flex-end;
    max-width: 100%;
}

/* LIENS */
.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    padding: 6px 10px; /* ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ÂÂï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ÂÂï¿½ rï¿½duit dï¿½bordement */
}

/* HOVER */
.nav a:hover {
    color: #22c55e;
}

/* MOBILE */
.menu-toggle {
    display: none;
    font-size: 25px;
    cursor: pointer;
}
/* SECTION PROMO */

.promo {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px 25px;
    text-align: center;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(30,41,59,0.95), rgba(2,6,23,0.95));
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

/* EFFET LUMIÈRE */
.promo::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34,197,94,0.15), transparent 60%);
    top: -50%;
    left: -50%;
    animation: glowMove 10s linear infinite;
}

@keyframes glowMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* CONTENU AU DESSUS */
.promo * {
    position: relative;
    z-index: 2;
}

/* TITRE PRINCIPAL */
.promo h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ffffff;
}

/* TITRE CODE */
.promo h2 {
    font-size: 22px;
    color: #facc15;
    margin-bottom: 10px;
}

/* CODE */
.promo .code {
    font-size: 48px;
    font-weight: bold;
    color: #22c55e;
    margin: 20px 0;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(34,197,94,0.8);
    animation: pulse 2s infinite;
}

/* ANIMATION CODE */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* TEXTE */
.promo p {
    font-size: 16px;
    color: #e2e8f0;
    margin-top:21px;
    margin-bottom: 15px;
    line-height: 1.7;
    text-align:justify;
    hyphens:auto;
}


/* BOUTON */
.btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(90deg, #22c55e, #3b82f6);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}
.actualiter {
    max-width: 100%;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.actualiter h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #facc15;
}

/* SCROLL HORIZONTAL */
.scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 15px;
}

/* SCROLLBAR */
.scroll-container::-webkit-scrollbar {
    height: 8px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background: #22c55e;
   
}

/* CARD */
.scroll-container .card {
    flex: 0 0 280px;
    background: rgba(30, 41, 59, 0.85);
    padding: 15px;
    backdrop-filter: blur(8px);
    transition: 0.4s;
    scroll-snap-align: start;
}

.scroll-container .card:hover {
    transform: translateY(-5px) scale(1.03);
}

/* IMAGE (PARFAITE) */
/* IMAGE PARFAITE ET TOUJOURS CENTRÉE */
/* CONTENEUR IMAGE */
.scroll-container .team {
    width: 100%;
    height: 180px;
    overflow: hidden;
   
    position: relative;
}

/* IMAGE TOUJOURS CENTRÉE */
.scroll-container .team img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
transform: translate(-50%, -50%);
   
}
.scroll-container .team img {
    transition: transform 0.5s ease;
}

/* ZOOM HOVER */


/* DETAILS */
.scroll-container .details {
    text-align: left;
}

.scroll-container .details h2.prono {
    font-size: 18px;
    color: #22c55e;
    margin: 10px 0;
}

.scroll-container .details p.cote {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 10px;
}
/* ðÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ¥ BOUTON COPIER (FIX) */
.btn-secondary {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    background: rgba(30,41,59,0.8);
    color: #facc15;
    border: 2px solid #facc15;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

/* HOVER */
.btn-secondary:hover {
    background: #facc15;
    color: #020617;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250,204,21,0.6);
}
.social-section {
      text-align: center;
      padding: 40px 20px;
      background: #fff;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
     .social-section h3 {
      font-size: 24px;
      margin-bottom: 15px;
      color: #333;
      text-align:center;
    }
    .social-links {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }
    .social-links a {
      text-decoration: none;
      color: #fff;
      font-size: 16px;
      padding: 12px 18px;
      border-radius: 8px;
      transition: transform 0.2s ease, opacity 0.2s ease;
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: 160px;
      justify-content: center;
    }
    .social-links a:hover {
      transform: scale(1.05);
      opacity: 0.9;
    }
    .telegram { background: #0088cc; }
    .whatsapp { background: #25D366; }
    .facebook { background: #1877f2; }


    /* âÂÂÂÂ Responsive mobile */
    @media (max-width: 760px) {
      .social-links {
        flex-direction: column;
        align-items: center;
      }
      .social-links a {
        width: 100%;
        max-width: 280px;
        font-size: 15px;
      }
    }
/* CONTENEUR GLOBAL */
.article-container {
    width: 95%;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;
}

/* IMAGE */
.article-container img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    margin-bottom: 20px;
    transition: 0.3s;
}

/* HOVER IMAGE */
.article-container img:hover {
    transform: scale(1.02);
}

/* TEXTE */
.article-container p {
    font-size: clamp(14px, 2vw, 17px);
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 20px;
    text-align: justify;
}

/* TITRE CONSEIL */
.article-container h2 {
    font-size: clamp(18px, 3vw, 24px);
    color: #22c55e;
    margin: 25px 0 10px;
}

/* BLOC CONSEIL */
.article-container strong {
    display: block;
    background: rgba(34,197,94,0.1);
    border-left: 4px solid #22c55e;
    padding: 15px;
    border-radius: 10px;
    font-size: clamp(14px, 2vw, 16px);
}

/* TABLETTE */
@media (max-width: 992px) {
    .article-container {
        margin: 30px auto;
    }

    .article-container img {
        max-height: 300px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .article-container {
        margin: 20px auto;
    }

    .article-container img {
        max-height: 250px;
    }

    .article-container p {
        font-size: 15px;
    }
}

/* PETIT MOBILE */
@media (max-width: 480px) {
    .article-container {
        padding: 0 10px;
    }

    .article-container img {
        max-height: 200px;
        border-radius: 10px;
    }

    .article-container strong {
        padding: 12px;
        font-size: 14px;
    }
}
.carousel {
    max-width: 900px;
    margin: 50px auto;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, #1e293b, #020617);
}

.slide h2 {
    color: #facc15;
}

.slide .code {
    font-size: 35px;
    color: #22c55e;
    margin: 10px 0;
}

/* CONTROLES */
.controls {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.controls span {
    cursor: pointer;
    font-size: 30px;
    padding: 10px;
    color: white;
}