/* Styles pour la disposition en grid */
.coordonnees {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    text-align: center;
    padding: 100px;
    justify-content: center;
    align-items: center;
    
}

/* Styles pour les éléments individuels */


.telephone,
.mail,
.site {
    background-color: rgba(45, 19, 197, 0.2);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    max-width: 300px;
    word-wrap: break-word;
    font-size: 20px;
    line-height: 1.6;
}
.telephone strong,
.mail strong,
.site strong{
    color: yellow;
}
/* Styles pour les logos */
.telephone img,
.mail img,
.site img {
    width: 70px;
    height: 70px;
    
}

/* Styles pour les titres */


/* Styles pour les liens */


/* Effet de survol */
.coordonnees .telephone:hover,
.coordonnees .mail:hover,
.coordonnees .site:hover {
    transform: translateY(-5px);
}
p, h2{
    color: white;
   
}
.localisation {
    display: flex;
    align-items: center;
    
    justify-content: space-evenly;
    background-color: rgba(45, 19, 197, 0.2); /* Réglage de l'opacité ici */
    padding: 20px;
    max-width: 100%;
     
}

.localisation-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    
    
}

.image-container {
    flex: 1;
    padding: 10px;
    text-align: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    
}

.text-container {
    flex: 2;
    max-width: 100%;
    background: linear-gradient(to bottom, #434232, #1F1952);
    border-radius: 5%;
    opacity: 0.9;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 24px;
}

.text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px; /* Espace entre les div de texte */
    
}

.information-complementaire {
    margin-top: 20px;
    text-align: center;
    background-color: rgba(243, 242, 247, 0.2);
    padding: 5px;
    border-radius: 31px 31px 31px 31px;
-webkit-border-radius: 31px 31px 31px 31px;
-moz-border-radius: 31px 31px 31px 31px;
line-height: 1.6;
   
}
.telephone h2,
    .mail h2,
    .site h2 {
        font-size: 18px;
    }
    .telephone,
    .mail, .site, .text-container{
        font-size: 18px;
    }
@media screen and (max-width: 1800px) {
    .localisation-content{
        max-width: 50%;
        
    }
    .coordonnees{
        max-width: 50%;
    }
    
    .image-container img {
        max-width: 100%;
        height: auto;
        border: 1px solid #ccc;
        
    }
    .telephone img,
    .mail img,
    .site img {
        width: 44px;
        height: 44px;
        
    }
    
}


/* Media Query pour les écrans de 768px et supérieurs */
@media screen and (max-width: 768px) {
    .localisation-content{
        max-width: 100%;
        
    }
    .image-container img {
        max-width: 100%;
        height: auto;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    .localisation {
        flex-direction: column;
    }

    .localisation-content {
        flex-wrap: nowrap;
    }

    .image-container {
        text-align: center;
    }

    .text-container {
        max-width: 100%;
    }
    .localisation .localisation-content svg{
        min-width: 79px;
        min-height: 79px;
        padding: 0px;
        margin: 0px;
        
    }
}


/*
.map-container {
    width: 100%;  Réduisez la largeur de la carte pour centrer horizontalement
    height: 400px; Ajustez la hauteur selon vos besoins 
  
    margin: 0 auto; Centre horizontalement la carte 
    text-align: center;
    margin-top: 100px;
  }
  
  #map {
    height: 100%; Ajustez la hauteur de la carte pour remplir .map-container
    width: 100%; Ajustez la largeur de la carte pour remplir .map-container 
  }
  @media (max-width: 768px) {
    .map-container {
      width: 80%; /La carte occupe la largeur complète de l'écran 
      height: 300px; /* Ajustez la hauteur pour l'affichage mobile 
      
    }
  }


  
  .animate.visible {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    transform: translateY(0); /* Assurez-vous que l'élément est à sa position d'origine }*/


/* Masquez les éléments initialement 
.animate {
    opacity: 0;
    transform: translateY(20px); /* Déplacez les éléments vers le haut de 20 pixels 
}
*/