/* Start custom CSS for html, class: .elementor-element-d71e328 *//* Style de la section cinéma principale */
.cinema-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Playfair Display', 'Georgia', serif; /* À adapter selon vos polices */
}

/* Container de la vidéo en arrière-plan */
.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

/* Filtre sombre pour l'immersion et la lisibilité */
.cinema-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

/* Alignement du texte */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: 1px;
    animation: fadeIn 2s ease-out;
}

/* Styles des Boutons Premium */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeIn 2.5s ease-out;
}

.btn-primary, .btn-secondary {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    padding: 15px 35px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    border-radius: 0px; /* Look carré plus moderne/luxe */
}

.btn-primary {
    background-color: #ffffff;
    color: #111111;
}

.btn-primary:hover {
    background-color: transparent;
    color: #ffffff;
    box-shadow: inset 0 0 0 1px #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #111111;
}

/* Animation de la souris en bas de page */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 15px;
    display: block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnimation 1.6s infinite;
}

/* Animations CSS */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollAnimation {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 22px; }
}

/* Adaptation Mobile */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; }
}
/* Définition de l'effet d'apparition (Cinematic Fade In Up) */
@keyframes cinemaFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px); /* L'élément part de 30px plus bas */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* L'élément reprend sa place */
    }
}

/* On applique l'animation de base aux trois éléments */
.anim-1, .anim-2, .anim-3 {
    opacity: 0; /* Invisibles au départ */
    animation-name: cinemaFadeInUp;
    animation-duration: 1.2s; /* Durée de l'effet (assez lent pour faire luxe) */
    animation-cubic-bezier: (0.25, 1, 0.5, 1); /* Transition ultra fluide */
    animation-fill-mode: forwards; /* Reste visible une fois l'animation finie */
}

/* Décalage temporel (Le rythme du générique) */
.anim-1 {
    animation-delay: 0.2s; /* Le nom apparaît presque tout de suite */
}

.anim-2 {
    animation-delay: 0.6s; /* Le titre arrive 0.4s après */
}

.anim-3 {
    animation-delay: 1s; /* Les boutons arrivent en dernier pour clore la séquence */
}/* End custom CSS */