/* Hero met icoon en animatie */
.hero {
  position: relative;
  z-index: 0;
  background-color: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../afbeeldingen/hero-background.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: -1;
}
.hero-icon {
  font-size: 50px;
  color: #ff6b6b;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.hero .button {
  background-color: #ff6b6b;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s;
}

.hero .button:hover {
  background-color: #e85a5a;
}

/* Animatie */
@keyframes fadeInUpA {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUpB {
  from {
    opacity: 0;
    transform: translateY(70px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUpC {
  from {
    opacity: 0;
    transform: translateY(110px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-a {
  animation: fadeInUpA 1.2s ease-out;
}
.fade-in-b {
  animation: fadeInUpB 1.2s ease-out;
}
.fade-in-c {
  animation: fadeInUpC 1.2s ease-out;
}
