body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fffdf9;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* --- Hero section --- */
.hero {
  position: relative;
  height: 90vh;
  background: url('assets/bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}


.scroll-hint {
  font-size: 2rem;
  margin-top: 15px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.events a {
  text-decoration: none;
  color: inherit;
}

.cta {
  background-color: #b30000;
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.cta:hover {
  background-color: #d60000;
}

.secondary {
  background-color: #555;
}
.secondary:hover {
  background-color: #777;
}

/* --- Sections --- */
main section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

h2 {
  font-family: 'Playfair Display', serif;
  color: #b30000;
  margin-bottom: 1rem;
}

.events {
  list-style: none;
  padding: 0;
}

.events li {
  margin-bottom: 12px;
  font-size: 1.1em;
}


/* --- Programme détaillé --- */
.programme-details {
  padding: 60px 20px;
  background: #fdf4f4;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.event-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.event-info {
  padding: 15px;
}

/* --- Footer --- */
footer {
  text-align: center;
  background-color: #f9f3ef;
  padding: 30px 15px;
  font-size: 0.95em;
}

footer .insta {
  display: inline-block;
  margin: 8px 0;
  text-decoration: none;
  color: #b30000;
  font-weight: 600;
}

footer .insta:hover {
  text-decoration: underline;
}

.assoc {
  color: #777;
  font-size: 0.85em;
  margin-top: 10px;
}

.map-container {
  position: relative;
  width: 75%;
  padding-bottom: 45%; 
  margin-bottom: 5%; 
  height: 0;
  overflow: hidden;
  border-radius: 12px; /* optionnel pour un rendu plus doux */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* optionnel aussi */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

figcaption {
  font-size: 0.85rem;
  color: rgba(150,150,150,0.7);
  text-align: center;
  margin-top: 0.5em;
  font-style: italic;
}