/* ===== EDSEC SLIDE BASE ===== */
.edsec-slide {
    position: relative;
    width: 100%;
    height: 100vh; /* plein écran */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Vidéo en fond */
.edsec-bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

/* Overlay sombre */
.edsec-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Effet sombre */
    z-index: 2;
}

/* Contenu centré */
.edsec-slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1s ease-out both;
}

.edsec-slide-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.edsec-slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*fond en noir ou gris */

body.theme-noir {
    background-color: #111;
    color: #eee;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

body.theme-gris {
    background-color: #444;
    color: white;
}

/* Couleur des titres (h1 à h6) */
body.theme-noir h1,
body.theme-noir h2,
body.theme-noir h3,
body.theme-noir h4,
body.theme-noir h5,
body.theme-noir h6 {
  color: #C8102E; /* Rouge Edify */
}

/* Couleur du texte général */
body.theme-noir,
body.theme-noir p{
    color: white;
},
body.theme-noir li,
body.theme-noir span,
body.theme-noir a {
    color: white;
}

.titre-blanc {
    color: white !important;
}
