@keyframes blink {
    0% {
        color: white;
    }
    50% {
        color: black;
    }
    100% {
        color: white;
    }
}

*{
    padding: 0;
    margin: 0;
}

body {
    background: url('Images/background.jpeg')
    no-repeat
    center 
    center 
    fixed;
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(10px); /*flou du background*/ 
    font-family: 'Hind Madurai', sans-serif;
    /*font-family: 'Lora', serif;*/
}

body::-webkit-scrollbar {
    display: none; /* Masque la scrollbar */
}


/*ZONE HEADER*/
header {
    background-color: #c41414;
    color: white;
    padding: 1%;
    font-family: 'Montserrat', sans-serif; 
}

.header-container {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo-container {
    display: flex;
    align-items: center;
    margin-left: 20px;
    /* animation: blink 1s infinite; /*1s pour la durée de l'animation */
}

.logo {
    text-decoration: none;
    color: #FFF;
    font-weight: 900;
    font-size: xx-large;
}

nav {
    display: flex; 
    align-items: center; 
}

.menu {
    display: flex; 
    align-items: center; 
    margin-right: 1%;
}

.menu a {
    display: flex;
    margin: 0 10px; 
    text-decoration: none;
    border: none; 
    color: #FFF;
    padding: 10px 20px; 
    font-weight: 700;
}

.menu a:hover {
    color: #7a7a7a;
    background-color: #971010;
}


/* Section Accueil */
.title-container {
    margin-top: 140px;
    margin-left: 11%;
}

.title {
    color: #FFF;
    font-size: 3rem;
    font-family: 'Lora', serif;
}

.accueil-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -110px;
}

.accueil-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 20px 0;
}

.text-container {
    flex: 1;
    margin-right: 20px;
    text-align: left;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(30px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    border-radius: 20px;
    padding: 2%;
}

.text-container h2 {
    font-size: 2rem;
    color: #ffffff;
}

.text-container p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: white;
}

.image-container {
    flex: 1;
    text-align: center;
    background-size: 75%; 
    height: 500px; 
    width: 500px; 
    border-radius: 20px; 
    background-position: center; 
    background-repeat: no-repeat; 
}

/* Définir les images par défaut à l'accueil*/
#EPA_Image {
    background-image: url('Images/Vehicle/MEA_BMPM.png'); /* Image par défaut pour EPA */
}

#VSAV_Image {
    background-image: url('Images/Vehicle/VSAV_BMPM.png'); /* Image par défaut pour VSAV */
}

#DEP_Image {
    background-image: url('Images/Vehicle/DEPanimated.png'); /* Image par défaut pour Gyrophares */
}

.title-second {
    font-family: 'Montserrat', sans-serif;
}


/* Section Footer */
.footer-container {
    background-color: #c41414;
    color: white;
    font-family: 'Montserrat', sans-serif; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    width: 100%; 
    flex-wrap: wrap; 
}

.copyrights-container {
    display: flex;
    align-items: center;
    margin: 0 -28px; 
}

.copyrights {
    width: 40%;
}

nav {
    display: flex; 
    align-items: center; 
}

.footer-nav {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-wrap: wrap; 
}

.footer-nav a {
    display: flex;
    text-decoration: none;
    border: none; 
    color: #FFF;
    font-size: small;
    padding: 8px 2px; 
}

.footer-nav p {
    display: flex;
    text-decoration: none;
    border: none; 
    color: #FFF;
    font-size: small;
    padding: 8px 2px; 
}

.footer-nav a:hover {
    text-decoration: underline;
}

