/* ======================== */
/*  Hide Scrollbars Globally */
/* ======================== */
html, body {
    overflow: -moz-scrollbars-none; /* Pour Firefox */
    -ms-overflow-style: none; /* Pour IE et Edge */
    scrollbar-width: none; /* Pour Firefox */
}

    body::-webkit-scrollbar {
        width: 0; /* Masquer la barre de défilement pour WebKit */
        height: 0;
    }

/* ======================== */
/*       GLOBAL STYLES     */
/* ======================== */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.container-fluid {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* ======================== */
/*      HERO SECTION        */
/* ======================== */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

    .video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    text-align: center;
}

    .overlay-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .overlay-content .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

.video-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    object-fit: cover; /* permet de remplir sans déformation */
}