.hero {
  height: 100vh;
  background-color: #121417;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  color: #e2e8f0;
  padding-top: 120px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* voor mobiel */
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 20px;
  color: #94a3b8;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: #4c8eda;
  color: #ffffff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #3b75c0;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.hero-image img {
  width: 400px;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    padding-right: 0;
  }

  .hero-image {
    margin-top: 40px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 18px;
  }
}

