/* La section conteneur */

.accueil {
    position: relative;
    width: 100%;
    height: 100vh; /* hauteur plein écran */
    overflow: hidden;
}

/* La vidéo en fond */
.accueil video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* couvre tout sans déformer */
    z-index: 0;
}

/* Overlay sombre optionnel pour lisibilité */
.home_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Le contenu (images, texte...) par-dessus */
.home_content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.lol_logo {
    width: 250px;
}

.logos_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.VSeparator {
    width: 2px;
    height: 75px;
    background-color: #e6d6ae;
}

.HSeparator {
    width: 300px;
    height: 3px;
    background: black;
}

.HSeparator {
    width: 300px;
    height: 3px;
    background: black;
}

.main-push-button {
    margin-top: 20px;
    padding: 10px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    text-transform: uppercase;
    border: thick double var(--push-button-color);
}

.equipe {
    width: 100px;
    height: 100px;
}

.equipe1 {
    background: red;
}

.equipe2 {
    background: blue;
}

.affrontement {
    display: flex;
    align-items: center;
}

.affrontements_section,
.teams_section {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.infosContainers {
    background: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.titleContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .logos_container {
        flex-direction: column;
        gap: 50px;
        position: relative;
    }

    /* La ligne verticale devient invisible sur mobile */

    .logos_container::after {
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 3.5rem;
        font-weight: 900;
        font-family: 'Arial Black', sans-serif;
        color: #e6d6ae;
        text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.7); /* L'effet 'hombre' */
        z-index: 3;
    }

    .lol_logo {
        width: 180px;
    }

    .main-push-button {
        width: 80%;
        font-size: 1.2rem;
    }

    .affrontement {
        flex-direction: column;
        gap: 10px;
    }
}
