h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;

}

h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;

}

p {
    font-family: 'Montserrat', sans-serif;
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #0f0f0f;
    color: white;
    line-height: 1.6;
}

header {
    display: flex;
    background-color: #1c1c1c;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px; /* Ajoute de l'espace en haut, en bas, à gauche et à droite */
}

header .logo h1 {
    color: #00ccff;
    font-size: 2rem;
    font-weight: bold;
}

header nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    
}
header nav ul li {
    margin-left: 20px; /* Espacement entre les éléments du menu */
    
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;

    
}

header nav ul li a:hover {
    color: #00ccff;
}






header h1 {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(90deg, #00ffcc, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* marge intérieure pour aérer */
}


.hero-video {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0px 0; /* pour espacer verticalement */
}

.hero-video .video-background {
    width: 100%;
    margin: 0 auto;
    height: 1080px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
}

.hero-video .video-background iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2); /* ← le zoom ! */
    transform-origin: center; /* garde le zoom centré */
    pointer-events: none;
}

.hero-video .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
    display: flex;
    flex-direction: column; /* Ajouté : aligne verticalement */
    align-items: center;     /* Centre horizontalement */
    justify-content: center; /* Centre verticalement */
    padding: 20px;
    gap: 20px;               /* Espace entre les éléments */
}

.hero-title {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
}

.logo-slider-container {
    max-width: 440px;
    overflow-x: scroll !important;
    overflow-y: hidden;
    margin-top: 20px;
    padding-bottom: 10px;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #00ccff #1c1c1c; /* Firefox */
    display: block;
}


.logo-slider-container::-webkit-scrollbar {
    height: 8px;
}

.logo-slider-container::-webkit-scrollbar-thumb {
    background-color: #00ccff;
    border-radius: 10px;
}

.logo-slider-container::-webkit-scrollbar-track {
    background-color: #1c1c1c;
}

.logo-slider-track {
    display: flex;
    gap: 10px;
    width: max-content;
}


.logo-slider-track img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.logo-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 460px;
    margin: 0 auto;
}

.scroll-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #00ccff;
    cursor: pointer;
    z-index: 3;
    padding: 10px;
    transition: color 0.2s ease;
}

.scroll-btn:hover {
    color: #00ffee;
}

.scroll-btn.left {
    margin-right: 5px;
}

.scroll-btn.right {
    margin-left: 5px;
}



.stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box {
    background: linear-gradient(to bottom, #23102A, #000000);
    border: 2px solid #00ffcc;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 255, 204, 0.2);
}

.small-box {
    flex: 1;
}

.large-box {
    flex: 2;
}


.pricing {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    flex-wrap: wrap;
}

.pricing-card {
    background: linear-gradient(to bottom, #23102A, #000000);
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    border: 2px solid #00ffcc;
    min-height: 520px; /* Assure que toutes aient la même taille */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.pricing-card.starter {
    background: linear-gradient(to bottom, #23102A, #00ffcc);
    border-color: #00ffcc;
}
.pricing-card.starter h3 {
    color: #00ffcc;
}


.pricing-card.essential {
    background: linear-gradient(to bottom, #23102A, #00ccff);
    border-color: #00ccff;
}
.pricing-card.essential h3 {
    color: #00ccff;
}

.pricing-card.signature {
    background: linear-gradient(to bottom, #23102A, #a770ff);
    border-color: #a770ff;
}
.pricing-card.signature h3 {
    color: #a770ff;
}


.pricing-card h3 {
    color: #00ffcc;
}

.price-starter {
    font-weight: bold;
    margin-top: auto;
    font-size: 1.3rem;
    color: #00ffcc;
    background-color: #1c1c1c;
    border: 2px solid #00ffcc;
    border-radius: 8px;
    padding: 8px 12px;
    display: inline-block;
    margin-top: 20px;
}

.price-essential {
    font-weight: bold;
    margin-top: auto;
    font-size: 1.3rem;
    color: #00ccff;
    background-color: #1c1c1c;
    border: 2px solid #00ccff;
    border-radius: 8px;
    padding: 8px 12px;
    display: inline-block;
    margin-top: 20px;
}

.price-signature {
    font-weight: bold;
    margin-top: auto;
    font-size: 1.3rem;
    color: #a770ff;
    background-color: #1c1c1c;
    border: 2px solid #a770ff;
    border-radius: 8px;
    padding: 8px 12px;
    display: inline-block;
    margin-top: 20px;
}

a .price-starter:hover,
a .price-essential:hover,
a .price-signature:hover {
    transform: scale(1.05);
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
    cursor: pointer;
}


.badge-offre {
    background-color: #a770ff;
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 0 auto 10px auto;
    box-shadow: 0 0 10px rgba(167, 112, 255, 0.4);
    width: fit-content;
}


.btn {
    background: #00ffcc;
    padding: 10px 20px;
    border: none;
    color: rgb(0, 0, 0);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 255, 204, 0.2);
    font-family: 'Montserrat' , sans-serif;

}

.btn:hover {
    background: #00CCFF;
    box-shadow: 0 6px 14px rgba(0, 255, 204, 0.4);
    transform: scale(1.05);
    transition: all 0.2s ease;
}


footer {
    text-align: center;
    padding: 40px 0;
    background-color: #111;
}

a.text-white:hover {
    color: #00ccff !important ;  
    transition: color 0.3s ease !important;
}

/* LIGHT MOD */

body.light-mode {
    background-color: #f5f5f5;
    color: #000;
}

body.light-mode header {
    background-color: #ffffff;
}

body.light-mode header .logo h1 {
    color: #0077b6;
}

body.light-mode header nav ul li a {
    color: #000;
}

body.light-mode header nav ul li a:hover {
    color: #0077b6;
}

body.light-mode .stat-box,
body.light-mode .pricing-card {
    background: #fff;
    border-color: #00b4d8;
    color: #000;
}

body.light-mode .btn {
    background: #0077b6;
    color: white;
}

body.light-mode .btn:hover {
    background: #0096c7;
    box-shadow: 0 6px 14px rgba(0, 150, 199, 0.4);
}

body.light-mode footer {
    background-color: #e0e0e0;
    color: #000;
}

body.light-mode .overlay {
    background-color: rgba(255, 255, 255, 0.6);
    color: #000;
}

/* Prix encadrés */
body.light-mode .price-starter {
    color: #00bfa6;
    background-color: #ffffff;
    border-color: #00bfa6;
}

body.light-mode .price-essential {
    color: #00aaff;
    background-color: #ffffff;
    border-color: #00aaff;
}

body.light-mode .price-signature {
    color: #a770ff;
    background-color: #ffffff;
    border-color: #a770ff;
}

/* Badge “le plus complet” */
body.light-mode .badge-offre {
    background-color: #a770ff;
    color: #fff;
    box-shadow: 0 0 10px rgba(167, 112, 255, 0.3);
}


/* ===================== */
/* 🎯 RESPONSIVE DESIGN */
/* ===================== */
@media screen and (max-width: 991px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    /* Nav en colonne et masqué par défaut */
    header nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #1c1c1c;
        padding: 10px 0;
    }

    /* Nav visible si on ajoute la classe "show" */
    header nav.show {
        display: flex;
    }

    /* Bouton burger visible */
    .burger {
        display: block;
        font-size: 1.8rem;
        color: #00ccff;  /* Garde la couleur que tu préfères pour ton bouton burger */
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
    }



    /* Stats en colonne */
    .stats {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }

    /* Cartes verticales */
    .pricing {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 90%;
    }

    /* Slider logos = 3 gros logos */
    .logo-slider-container {
        max-width: 360px;
    }

    .logo-slider-track img {
        width: 120px;
        height: 120px;
    }

    .scroll-btn {
        display: none;
    }

    footer {
        padding: 30px 15px;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .logo-slider-track img {
        width: 110px;
        height: 110px;
    }

    .price-starter,
    .price-essential,
    .price-signature {
        font-size: 1.1rem;
        padding: 6px 10px;
    }

    .badge-offre {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

/* Styles du Burger Menu */
.burger-menu {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    background-color: #1c1c1c; /* Garder la couleur de fond de ton menu */
    padding: 20px;
    z-index: 9999;
    font-family: 'Montserrat', sans-serif; /* Garder la police Montserrat */
}

.burger-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.burger-menu ul li {
    margin: 20px 0;
}

.burger-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif; /* Garder la police Montserrat */
    font-size: 1.2rem; /* Ajuster la taille si nécessaire */
}

.burger-menu ul li a:hover {
    color: #00ccff; /* Ton bleu signature pour le hover */
}

/* Afficher le burger menu quand activé */
.burger-menu.show {
    display: block;
}

/* Bouton de fermeture (croix) */
.close-btn {
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Masquer le bouton burger quand le menu est ouvert */
.burger {
    display: none;
}

@media (max-width: 768px) {
    header nav {
        display: none;
    }
    header .burger {
        display: block;
    }
    .video-background iframe {
        display: none; /* Désactiver la vidéo sur mobile */
    }
}
