/* Réinitialisation de base */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Supprime les barres de défilement */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    
}

/* Vidéo en arrière-plan */
.background-video {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: -1; 
}

.overlay {
    position: fixed;      /* Reste fixe dans la fenêtre */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;  /* Couleur de l’overlay */
    opacity: 0.80;             /* Transparence : ajustez selon vos besoins */
    z-index: 0;               /* Entre la vidéo (z-index: -1) et le contenu (z-index: 1) */
}

/* Conteneur principal du contenu (logo, vidéo, texte) */
.content-container {
    position: relative; 
    text-align: center; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 90%; 
    z-index: 1;
}

/* Logo */
.logo-container img {
    width: 150px; 
    height: auto;
    margin-bottom: 20px;
    transition: width 0.3s ease;
}

/* Conteneur Vimeo (ratio 9:16) */
.vimeo-container {
    width: 70%;           
    max-width: 900px;     
    aspect-ratio: 9 / 16; 
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.vimeo-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Texte */
.text-container {
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
}

.text-container p {
    margin: 10px 0;
}

.text-container a {
    color: #00aced;
    text-decoration: none;
}

/* --- Icônes Font Awesome : un peu de style --- */
.text-container i {
    margin-right: 8px; /* Espace entre l'icône et le texte */
    color: #ffffff;    /* Couleur blanche */
    font-size: 1.2rem; /* Taille icône */
}

.text-container a i {
    /* Si vous voulez un style différent pour l'icône Instagram, on peut changer la couleur : */
    color: #e1306c; /* Couleur d’Instagram */
    margin-right: 0; /* Pas de texte, donc pas besoin de marge droite */
}

/* --- Responsive Design --- */

/* Sur écrans desktop intermédiaires (>= 768px) */
@media screen and (min-width: 768px) {
    .logo-container img {
        width: 300px;
    }
    .vimeo-container {
        width: 100%;
        max-width: 700px;
    }
}

/* Sur mobiles (< 768px) */
@media screen and (max-width: 767px) {
    .logo-container img {
        width: 100px;
    }
    .vimeo-container {
        width: 80%;
        max-width: 90%;
    }
    .text-container p {
        font-size: 0.9rem;
    }
}

.icon {
    width: 24px; /* Ajustez la taille */
    height: auto;
    margin-right: 8px; /* Espace entre l’icône et le texte */
    color: #ffffff; 
    vertical-align: middle;
}


.icon_insta {
    width: 40px; /* Ajustez la taille */
    height: auto;
    margin-right: 8px; /* Espace entre l’icône et le texte */
    color: #ffffff; 
    vertical-align: middle;
}
