/* style.css – extra animaties en logo-aanpassing */

body {
  font-family: sans-serif;
  margin: 0;
  background-color: #f5f1e8;
  color: #4a3f35;
  overflow-x: hidden;
}

/* PETALS */
.petal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1000;
}

.petal {
  position: absolute;
  top: -50px;
  width: 30px;
  height: 30px;
  background: rgba(255,182,193,0.8);
  border-radius: 50%;
  animation: fall linear infinite;
}

.petal:nth-child(1) { left: 10%; animation-duration: 7s; animation-delay: 0s; }
.petal:nth-child(2) { left: 30%; animation-duration: 5s; animation-delay: 1s; }
.petal:nth-child(3) { left: 50%; animation-duration: 6s; animation-delay: 2s; }
.petal:nth-child(4) { left: 70%; animation-duration: 8s; animation-delay: 0.5s; }
.petal:nth-child(5) { left: 90%; animation-duration: 4s; animation-delay: 1.5s; }

@keyframes fall {
  to {
    transform: translateY(110vh) rotate(360deg);
  }
}

/* HEADER */
header {
  background: #e7e1d4;
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  width: 60px;
  height: 60px;
  animation: spin 5s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

header h1 {
  margin: 0;
  font-size: 3rem;
  color: #a67c52;
  position: relative;
  overflow: hidden;
}

/* Flash animatie: glans */
.flash::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.7), transparent);
  transform: skewX(-25deg);
  animation: flash 2s ease-in-out infinite;
}

@keyframes flash {
  0%   { left: -100%; }
  50%  { left: 100%; }
  100% { left: 100%; }
}

/* Bounce animatie voor titel */
.bounce {
  animation: bounce 3s infinite;
}

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

header p {
  font-size: 1.25rem;
  color: #b59268;
}

/* CTA pulse */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* SECTIES */
section {
  padding: 3rem 1rem;
  text-align: center;
}

/* DIENSTEN HOVER EFFECT */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 300px;
  flex: 1 1 250px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.10);
}

/* GALERIJ: fade-in + hover */
.fotos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.fotos img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 1rem;
  opacity: 1;
  transition: transform 0.3s;
}

.fotos img:hover {
  transform: scale(1.05);
}
.logo-img {
    width: 80px;
    /* stel hier de gewenste breedte in */
    height: auto;
    /* behoud de verhoudingen */
    max-width: 100%;
    /* voorkom dat hij ooit groter wordt dan zijn container */
}

/* CTA BUTTON & CONTACT remain */
.button:hover, .contact button:hover { transform: scale(1.05); }

/* FOOTER & RESPONSIVE remain */
