main{
    min-height: 100vh; 
}
/* Titre de la vidéo */
.video-container .title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    z-index: 2;
    margin-top: 40px;
}

/* Vidéo et conteneur */
.video-container {
    position: relative;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1; /* Permet au conteneur de prendre l'espace restant */
}

.video-container video {
    width: 70%;
}

/* Flèches de navigation */
.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    z-index: 10;
    transition: top 0.3s ease;
    padding: 0 20px;
}

.navigation a {
    text-decoration: none;
    font-size: 1.5rem;
    color: #555;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 0.3s, transform 0.3s;
}

.navigation a span {
    display: inline-block;
}

#prevArrow {
    position: absolute;
    left: 10px;
    transform: translateX(-10px);
}

#nextArrow {
    position: absolute;
    right: 10px;
    transform: translateX(10px);
}

#prevArrow:hover {
    color: #000;
    transform: translateX(-5px);
}

#nextArrow:hover {
    color: #000;
    transform: translateX(5px);
}

.indicators {
    display: flex;
    justify-content: center;
    gap: 20px; 
    margin-top: 20px;
}

.indicator {
    width: 20px; 
    height: 20px; 
    background-color: #ccc;
    border-radius: 50%;
    transition: transform 0.3s, background-color 0.3s;
}

.indicator:hover {
    transform: scale(1.4); 
    background-color: #000; 
}

.indicator.active {
    background-color: #333;
}

/* Header */
header {
    position: relative;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-icon img {
    width: 200px;
    height: 150px;
}

.logo-icon span {
    width: 100%;
    height: 2px;
    background: rgb(29, 29, 29);
    background: linear-gradient(90deg, rgba(29, 29, 29, 0.999019676229867) 62%, rgba(174, 174, 174, 1) 100%);
}

.logo-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
}

.logo-icon NAV {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    font-size: 20px;
}

.fa-brands {
    font-size: 20px;
    padding: 10px;
}

.footer-nav {
    display: flex;
    flex-direction: row;
    padding-top: 40px;
    width: 70%;
}

.footer-nav nav {
    width: 100%;
}

.VETEMENT {
    width: 20%;
}

.page {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 50px;
}

.page li {
    height: 30px;
    text-align: start;
    font-size: 16px;
}

.sous-page {
    padding-top: 20px;
}

.sous-page li {
    height: 50px;
    width: 50px;
    font-size: 10px;
}

@media (max-width: 800px) {
    .page li {
        font-size: 12px;
    }

    .sous-page li {
        font-size: 9px;
    }

    .logo-icon img {
        width: 120px;
        height: 120px;
    }
}

@media screen and (max-width: 768px) {
    .video-container {
        max-width: 95%;
        padding-top: 15px;
    }

    .video-container .title {
        font-size: 2.5rem;
    }

    .navigation a {
        font-size: 1.2rem;
    }

    .indicators {
        gap: 15px;
    }

    .indicator {
        width: 18px;
        height: 18px;
    }

    .navigation {
        position: relative;
        top: 0;
        transform: none;
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        margin-top: 10px;
    }

    .navigation .left {
        transform: translateX(-5px);
    }

    .navigation .right {
        transform: translateX(5px);
    }
}

@media screen and (max-width: 480px) {
    .video-container {
        max-width: 100%;
        padding-top: 10px;
    }

    .video-container .title {
        font-size: 2rem;
    }

    .navigation a {
        font-size: 1rem;
    }

    .indicators {
        gap: 10px;
    }

    .indicator {
        width: 14px;
        height: 14px;
    }

    footer {
        margin-top: auto;
    }
}
