/* Style pour l'overlay complet */
#mapOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Assure que l'overlay est au-dessus de la carte */
    display: none; /* Masquée par défaut */
}
/* Style pour le message d'information */
#zoomNotification {
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}
#map{
    height: 200px!important;
}
.event-distance{
    font-size:16px!important;
}
.trainer-box{
    padding-left:11px;
}
/* IMAGES ----------------------------------------------------------------------------*/
/* Initialement caché */
.gallery-container {
    opacity: 0;
    transform: translateY(20px); /* Décalage vers le bas */
    transition: opacity 0.5s ease, transform 0.5s ease;
}
/* Classe visible avec animation */
.gallery-container.show {
    opacity: 1;
    transform: translateY(0);
}
.animator-item{
    min-width: 150px;
    display: flex;
    justify-content: end;
}
.animator-item-name{
    width: 250px;
}
.month{
    font-size: 1.2rem;
}
.blog-standard{
    min-height: 50vh;
}
.animators-infos-link{
    cursor:pointer;
    transition: transform 0.3s ease;
}
.animators-infos-link:hover{
    transform: translateY(-5px);
}
.entry-meta{
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.feature-box-icon{
    margin-top: 12px;
}
.figure-logo{
    height: 80px!important;
}
.category-list-sidebar li {
    opacity: 0.6;
}
.category-list-sidebar li:hover{
    opacity: 1;
}
#importantInfos{
    display: flex;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.95;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.fa-circle-info {
    animation: pulse 1.5s infinite;
}
@media only screen and (max-width: 600px) {
    .animator-item {
        justify-content: start;
    }
    #importantInfos{
        display: block;
    }
}
@media only screen and (min-width: 600px) {
    #main-container{
        padding: 5rem;
    }
    .event-photos{
        width: 222px;
        height: 125px;
    }
    .animator-container{
        justify-content: end;
    }
}
@media only screen and (min-width: 700px) {
    #main-container{
        position:relative;
        border-radius: 75px;
    }
    .blog-details{
        position:relative;
    }

    #logo-container{
        position: absolute;
        top: -115px;
        background-color: white;
        padding: 6px 30px;
        border: 1px solid var(--base-color);
        border-radius: 31px;
        left: -14px;
    }
}
@media only screen and (max-width: 700px) {
    .blog-details{
        position:relative;
    }
    #logo-container{
        position: absolute;
        top: -67px;
        background-color: white;
        padding: 10px;
        border: none;
        border-radius: 31px;
        left: -23px;
    }
    .animator-container{
        position: absolute;
        right: 0;
        /* top: 100px; */
    }
    .top-space-margin{
        background-color: white!important;
        background-image: none!important;
        padding-top: 80px;
    }
    .entry-meta{
        padding-bottom: 35px!important;
    }
}


@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1095px;
    }
}