* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    user-select: none;
}
body {
    background: linear-gradient(180deg, #000000 0%, #110a06 100%);
    color: white;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(12, 12, 12, 0.9);
    box-shadow: rgba(12, 12, 12, 0.9);
    position: sticky;
    top: 0;
    width: 100%;
    transition: 0.3s;
    z-index: 1000;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: white;
    cursor: pointer;
    padding: 10px;
}

/* Style du menu mobile */
@media (max-width: 800px) {
    .menu-btn {
        display: flex;
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 18px;
        background: none;
        border: 2px solid white;
        padding: 8px 15px;
        border-radius: 5px;
    }

    .nav-links {
        position: absolute;
        top: 75px; /* Juste en dessous de la navbar */
        left: 0;
        width: 100%;
        background: rgba(12, 12, 12, 0.9);
        padding: 10px 0;
        text-align: center;
        align-items: center; /* Centre les éléments horizontalement */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
        display: flex;
        flex-direction: column; /* Met les éléments en colonne */
        gap: 10px; /* Espacement entre les liens */
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%; /* Les liens prennent toute la largeur */
        text-align: center; /* Texte centré */
        padding: 10px 0;
    }

    .nav-links li:last-child {
        border-bottom: none; /* Supprime le séparateur pour le dernier élément */
    }
}


.logo {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(90deg, #ff8800, #ff6a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff8800;
    text-shadow: 0 0 10px #ff8800;
}

.container {
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 50px 0;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeIn 1s forwards 0.5s;
}

@media (max-width: 800px) {
    .container {
        width: 90%;
        padding: 20px 0;
    }
}

h1 {
    color: white;
    font-size: 2.5rem;
    transition: color 0.3s;
}

h1:hover {
    color: #ff8800;
    text-shadow: 0 0 10px #ff8800;
}

p {
    font-size: 1.2rem;
    margin-top: 5px;
    color: #bbb;
}

/* CTA */
.cta {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeIn 1s forwards 0.5s;
}

.cta button {
    background: rgba(255, 136, 0, 0.8);
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.cta button:hover {
    background: rgba(255, 136, 0, 1);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 136, 0, 0.8);
}

@media (max-width: 800px) {
    .cta button {
        width: 100%;
        max-width: 300px;
        font-size: 1rem;
        padding: 12px;
    }
}

/* Animation de fade in */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    background: #000000;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeIn 1s forwards 2s;
}

.footer p {
    transition: color 0.3s;
}

.footer p:hover {
    color: #ff8800;
    text-shadow: 0 0 10px #ff8800;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-button {
    background: rgba(255, 136, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, transform 0.3s;
}

.footer-button:hover {
    background: rgba(255, 136, 0, 1);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 136, 0, 0.8);
}

/* Section fonctionnalités */
.features-section {
    padding: 50px 0;
    opacity: 0;
    transform: translateY(200px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.features-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.features-subtitle{
    text-align: center;
}

.hero-logo {
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 136, 0, 0.3);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.features-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 50px auto;
}

.feature-item {
    background: rgb(31, 32, 37);
    border: 1px solid rgba(238, 238, 238, 0.2);
    padding: 20px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    border-radius: 12px;
    width: 100%;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    background: rgba(110, 110, 110, 0.2);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgb(0, 0, 0);
}

.feature-icon {
    font-size: 24px;
    margin-right: 15px;
    color: #000000;
}

.feature-text {
    font-weight: bold;
    flex-grow: 1;
    text-align: left;
    font-size: 18px;
}

/* Cards */
.cards {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeIn 1s forwards 1s;
}

.card {
    background: rgb(31, 31, 32);
    border: 1px solid rgba(238, 238, 238, 0.301);
    padding: 20px;
    border-radius: 12px;
    width: 30%;
    text-align: center;
    box-shadow: 0 4px 10px rgb(0, 0, 0);
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.card:hover {
    background: rgba(110, 110, 110, 0.2);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgb(0, 0, 0);
}

.card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 10px;
}

@media (max-width: 800px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%; /* Évite que les cartes soient trop petites */
        margin-bottom: 20px;
    }
}

@media (max-width: 800px) {
    .video-section {
        flex-direction: column;
        text-align: center;
    }

    .video-text, .video-wrapper {
        max-width: 100%;
    }
}

.video-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; /* Espacement entre le texte et la vidéo */
    margin: 50px auto;
    padding: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.video-text {
    flex: 1;
    max-width: 400px;
    text-align: left;
}

.video-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.video-wrapper {
    flex: 1;
    margin: 0;
    padding: 0;
    max-width: 360px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.video-wrapper video {
    width: 100%;
    height: 640px;
    border: none;
    border-radius: 12px;
    display: block; /* Évite tout espace sous la vidéo */
}

/* Pour adapter sur mobile */
@media (max-width: 800px) {
    .video-section {
        flex-direction: column;
        text-align: center;
    }

    .video-text, .video-wrapper {
        max-width: 100%;
    }
}

.reviews-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; /* Espacement entre le texte et le carousel */
    margin: 50px auto;
    padding: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reviews-text {
    flex: 1;
    max-width: 400px;
    text-align: left;
}

.reviews-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.reviews-carousel {
    position: relative;
    width: 300px;
    overflow: hidden;
    border-radius: 10px;
}

.carousel-container {
    display: flex;
    width: calc(300px * 3);
    transition: transform 0.5s ease-in-out;
}

.review {
    background: white;
    color: black;
    padding: 15px;
    border-radius: 10px;
    min-width: 300px; 
    max-width: 300px; 
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.stars {
    font-size: 20px;
    color: gold;
}


@media (max-width: 800px) {
    .reviews-section {
        flex-direction: column;
        text-align: center;
    }

    .reviews-text {
        max-width: 100%;
        text-align: center;
    }

    .reviews-carousel {
        max-width: 100%;
    }
}


