/* =============================== */
/* 🏠 HOMEPAGE – INTRO             */
/* =============================== */

.intro {
  text-align: center;
  padding: 30px 20px;
}


/* =============================== */
/* 🖼️ GALLERY                      */
/* =============================== */

.gallery {
  padding: 20px;
  text-align: center;
}

.photos {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.photos img {
  width: 200px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

/* =============================== */
/* 📅 ROOSTER BLOK  onderstaande staat in stijlen.css maar lijkt nergens te worden gebruikt*/
/* =============================== */

/*.rooster {
  background-color: #fff8dc;
  padding: 20px;
  margin: 20px auto;
  max-width: 600px;
  border-left: 5px solid #ffa500;
}

.rooster ul {
  list-style: none;
  padding: 0;
}

.rooster li {
  margin: 10px 0;
  font-size: 1.1em;
}*/

/* =============================== */
/* 🐾 MASCOTTE                     */
/* =============================== */

.mascotte {
  width: 120px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;  
}

.mascotte:hover {
  transform: scale(1.1) rotate(6deg);
  filter: drop-shadow(0 0 10px #7871B7);
}

/* =============================== */
/* 📱 RESPONSIVE HOMEPAGE          */
/* =============================== */

@media (max-width: 600px) {
  .photos img {
    width: 150px;
  }  
}
