
/* Section Veille Technologique */
#veille {
    position: relative;
    padding: 35px 0;
}

#veille .section-background {
    position: absolute; 
    top: 0;
    /* left: 0; */
    width: 100%;
    height: 100%;
    z-index: 1; 
    background-size: cover;
    background-position: center;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    background-image: url(../IMAGES/fondSpatial.jpg);
}

#veille .overlay {
    position: absolute;
    top: 0;
    /* left: 0; */
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Ombre noire avec opacité */
}

#veille .container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0 20px;
    text-align: center;
    color: white;
    gap: 20px;
}

#veille .text-content {
    max-width: 100%;
    padding: 0 20px; /* Pour laisser de l'espace et éviter que le texte ne touche le bord */
}  

#veille .text-content h2 {
    font-size: xx-large;
    margin-bottom: 5px;
}

#veille .text-content p {
    font-size: large;
    line-height: 1.2;
    margin-bottom: 10px;
}

a.btn {
    background-color: transparent;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    padding: 5px;
    margin: 0;
    /* background-color: #333; */
    color: white;
    text-decoration: none;
    border: solid 2px white;
    border-radius: 5px 0 0 5;
    transition: 0.6s;
}
span.linkBonus{
    display: flex;
    flex-direction: column;
    justify-content: center; gap: 5px;
    padding: 0;
    margin-top: 15px;
}

#veille .topics{
    margin-bottom: 6vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#veille .topics .btn:hover {
    color: #555;
    background-color: white;
}

.veille-images {
    display: flex;
    flex-direction: column;
    gap:13%;
    width:100%;
    /* padding-left: 10%;
    padding-right: 10%; */
}

.veille-images img {
    /* display: flex; */
    /* flex-direction: column; */
    width: 30%;
    border-radius: 5px;
    border : 2px solid white;
}
/* ----------------------------------------- ANIMATION clic image ----------------------------------------- */
#veille .veille-images a.btn:hover {
    transform: scale(1.05);
    transition: 0.3s;
}
#veille .veille-images a.btn {
    border-top: 0px;
}
#veille .veille-images .btn {
    border-top: 0px;
    /* width: 50vh; */
    display: flex;
    justify-content: center;
    align-items: center;
}
/* ----------------- DEBUG image border -----------------*/
img {
    max-width: 100%;
  }

/* Responsive */
@media (max-width: 768px) {
    .veille-images {
        display: flex;
        justify-content: space-around center;
        /* gap:15%;
        width:100%; */
        /* padding-left: 10%;
        padding-right: 10%; */
        align-items: center;
    }
    /* .topics{
        
    } */

    .topics img {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 50vh;
        /* margin-bottom: 20px; */
        border-radius: 5px;
        border : 2px solid white;

    }


}

