/* Styles responsive pour la section hero */
.mil-video-hero {
    position: relative;
    height: 100vh; /* Utilisation de la hauteur de la fenêtre */
    overflow: hidden;
}

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

.mil-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.mil-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 2;
}

.mil-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.mil-video-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
    padding-bottom: 80px; /* Espace pour les partenaires en bas */
}

.mil-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mil-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 90%;
}

.mil-hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.mil-partners-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    overflow: hidden;
    padding: 20px 0;
    z-index: 4;
}

/* Animation pour le contenu */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styles responsive */
@media screen and (max-width: 1200px) {
    .mil-hero-title {
        font-size: 42px;
    }
}

@media screen and (max-width: 992px) {
    .mil-video-hero {
        height: 90vh;
    }
    
    .mil-hero-title {
        font-size: 36px;
    }
    
    .mil-hero-subtitle {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .mil-video-hero {
        height: auto;
        min-height: 80vh;
    }
    
    .mil-hero-title {
        font-size: 32px;
    }
    
    .mil-video-content {
        padding: 100px 0;
    }
    
    .mil-hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mil-hero-cta .mil-button {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .mil-hero-title {
        font-size: 28px;
    }
    
    .mil-hero-subtitle {
        font-size: 14px;
    }
    
    .mil-video-content {
        padding: 80px 0;
    }
}
