body {
  font-family: 'Algerian', 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0fff4;
  color: #2e4d2c;
}

header {
  background-color: #b9fbc0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 4px 10px rgba(0, 80, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #2e7d32;
}

nav a {
  margin: 10px;
  text-decoration: none;
  color: #2e7d32;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #1b5e20;
}

section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

h1, h2 {
  color: #1b5e20;
  font-family: 'Algerian', 'Poppins', sans-serif;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 10px 0;
  font-size: 18px;
  color: #33691e;
}

.glow-button {
  background-color: #66bb6a;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 0 15px #81c784;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  margin-top: 20px;
  cursor: pointer;
}

.glow-button:hover {
  background-color: #43a047;
  box-shadow: 0 0 30px #66bb6a, 0 0 60px #43a047;
}

footer {
  background-color: #d0f0d5;
  padding: 20px;
  text-align: center;
  color: #3e5742;
  margin-top: 40px;
}

/* Galerie photos enfants et activités */
.gallery {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.gallery figure {
  margin: 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  width: 250px;
  background: #f5fff9;
}

.gallery img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 180px;
}

.gallery figcaption {
  padding: 10px 0;
  font-weight: bold;
  color: #2e7d32;
  text-align: center;
}

/* Section À propos image */
#apropos {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
  background-color: #e0ffe4;
  border-radius: 15px;
}

#apropos h1 {
  color: #1b5e20;
  margin-bottom: 20px;
}

#apropos p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #3b3b3b;
}

.apropos-image {
  margin-top: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.apropos-image img {
  width: 100%;
  height: auto;
  display: block;
}

.apropos-image figcaption {
  color: #2e7d32;
  font-weight: bold;
  padding: 10px 0;
}

/* Section photos enfants */
#photos-enfants {
  padding: 40px 20px;
  background-color: #e8ffe9;
  text-align: center;
}

#photos-enfants h2 {
  color: #1b5e20;
  margin-bottom: 30px;
}

/* Responsive nav pour petits écrans */
@media (max-width: 600px) {
  nav {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
  nav a {
    margin: 5px 10px;
    display: inline-block;
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}