/* Container principal */
.event-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: #333;
}

/* Titre */
.event-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1d3557;
}

.events_content_date span {
  padding-right: 10px;
}
/* Meta (dates + adresse) */
.event-meta {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.event-meta i {
  color: #e63946;
  margin-right: .5rem;
}

.event-meta div {
  display: flex;
  align-items: center;
  font-size: 1rem;
}

/* Image principale */
.event-thumb {
  margin-bottom: 1.5rem;
  text-align: center;
}

.event-thumb img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Description */
.event-description {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Galerie */
.event-gallery {
  margin-bottom: 2rem;
}

.event-gallery h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1d3557;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Carte */
.event-map {
  margin-bottom: 2rem;
}

.event-map h3 {
  font-size: 1.3rem;
  margin-bottom: .8rem;
  color: #1d3557;
}

.map-container {
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Bouton */
.btn {
  display: inline-block;
  padding: .6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background .3s ease, transform .2s ease;
}

.btn-primary {
  background: #457b9d;
  color: #fff;
}

.btn-primary:hover {
  background: #1d3557;
  transform: translateY(-2px);
}
