/* Home-specifieke stijlen */
.intro-section {
  text-align: center;
  margin-bottom: 60px;
}

.intro-section img[src="img/ringen.jpg"] {
  width: 150px;
  margin: 20px auto;
}

.fun-section {
  background-color: var(--light-bg);
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 60px;
}

.fun-section img {
  max-width: 80%;
  margin: 40px auto;
  border-radius: 8px;
}

.newsletter {
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.newsletter h3 {
  color: var(--accent-color);
  margin-top: 0;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
}

/* Responsieve aanpassingen */
@media (max-width: 768px) {
  .fun-section img {
    max-width: 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}