/* Responsive Design - Enfance Heureuse */

body, html {
  font-family: 'Poppins', 'Comic Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #fff;
  color: #222;
}
img, .img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}
.container, .container-fluid {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}
.card {
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}
header, .navbar {
  width: 100%;
  background: #f8f9fa;
  padding: 0.5rem 0;
  position: relative;
  z-index: 10;
}
footer {
  background: #f8f9fa;
  padding: 2rem 0 1rem 0;
  text-align: center;
  font-size: 0.95rem;
}
.list-group {
  padding: 0;
  margin: 0;
  list-style: none;
}
.list-group-item {
  padding: 0.75rem 1rem;
  border: none;
  border-bottom: 1px solid #eee;
  background: transparent;
}
.list-group-item:last-child {
  border-bottom: none;
}
.whatsapp-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1000;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  font-size: 2rem;
  transition: background 0.2s, box-shadow 0.2s;
}
.whatsapp-btn:hover, .whatsapp-btn:focus {
  background: #128c7e;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}

/* Hide WhatsApp on small screens */
@media (max-width: 480px) {
  .whatsapp-btn { display: none; }
}

/* Suppression des styles burger et navbar-nav.active */
/* Header Burger */
/* .burger { ... } */
/* .burger span { ... } */
/* @media (max-width: 991.98px) { .burger { ... } .navbar-nav { ... } .navbar-nav.active { ... } } */

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Comic Neue', Arial, sans-serif;
  font-weight: 600;
  margin-top: 0;
}

/* Gallery */
.galerie {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.galerie img {
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.galerie img:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}

/* Lightbox overlay */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 1rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}

/* Filter select/buttons */
.filtre-categories {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.filtre-categories select, .filtre-categories button {
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}
.filtre-categories button.active, .filtre-categories select:focus {
  background: #f8f9fa;
  border-color: #25d366;
}

/* Responsive breakpoints */
@media (max-width: 767.98px) {
  .container, .container-fluid { padding-left: 0.5rem; padding-right: 0.5rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .galerie { gap: 0.5rem; }
}
@media (max-width: 575.98px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.1rem; }
  .card { border-radius: 0.5rem; }
  .galerie img { border-radius: 0.3rem; }
}
