/* CSS Document */

    .info {position: relative;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px; /* espace entre les divs */
	  z-index: 20;
    }

.box {
  width: 500px;
  height: 400px;
  background-color: #000;
  border: 2px solid #333;
  box-sizing: border-box;
border-radius: 24px; /* ou 12px, 24px selon ton style */

}

    /* Responsive : empile les divs sur petits écrans */
    @media (max-width: 1024px) {
      .box {
        width: 100%; /* pleine largeur sur petits écrans */
        max-width: 500px;
      }
    }





.box h2 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #ffffff;
}
.content-centered {
  display: flex;
  flex-direction: column;
  align-items: center; /* centre les titres/adresse */
	  /* centrage du contenu */
  display: flex;
  align-items: center;
  justify-content: center;
}
.horaires {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.horaires li {
  margin-bottom: 6px;
  font-size: 16px;
  color: #ffffff;
}

.horaires strong {
  display: inline-block;
  width: 100px;
  color: #ffffff;
}

.adresse, .tel{
  font-size: 16px;
  color: #ffffff;
  font-weight: bold;
}






























.address {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 20px;
}
.map {
    position: relative; /* Ajouté pour positionner l'icône */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.map iframe {
    width: 100%;
    height: 300px;
    display: block;
}
.map .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    pointer-events: none;
    width: 40px;
    height: 40px;
    background-image: url('https://cdn-icons-png.flaticon.com/512/684/684908.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
}
.link-buttons {
    text-align: center;
}
.link-buttons a {
    display: block;
    text-decoration: none;
    padding: 12px;
    font-size: 1rem;
    color: #fff;
    border-radius: 6px;
    margin: 5px 0;
}
.link-buttons .waze {
    background-color: #33ccff;
}
.link-buttons .google {
    background-color: #4285F4;
}
.link-buttons a:hover {
    opacity: 0.9;
}

