/* ==================== STYLE.CSS ==================== */
/* Algemene stijlen + Hero + Buttons + Cards */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 800;
}

/* ==================== HERO ==================== */
.hero {
  background: linear-gradient(rgba(30, 64, 175, 0.75), rgba(30, 64, 175, 0.85)), url('banner.jpg') center/cover no-repeat;
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 200px;     /* Dit bepaalt de hoogte */
  display: flex;
  align-items: center;
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
    min-height: 200px;   /* Kleinere hoogte op mobiel */
  }
  .typing-title {
    font-size: 2.4rem;
  }
}

.typing-title {
  font-size: 3.5rem;
  min-height: 160px;
  font-weight: 900;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.8rem;
  margin-bottom: 16px;
  opacity: 0.95;
}

.description {
  font-size: 1.35rem;
  max-width: 720px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-block;
  padding: 16px 36px;
  background: #3b82f6;
  color: white;
  text-decoration: none;
  border-radius: 9999px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.5);
}

.btn-big {
  padding: 20px 48px;
  font-size: 1.4rem;
}

/* ==================== CARDS & GRID ==================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.icon {
  font-size: 3.5rem;
  color: #3b82f6;
  margin-bottom: 24px;
}

/* ==================== CURSOR & OVERIGE ==================== */
.cursor {
  color: white;
  font-size: 0.75em;
  vertical-align: middle;
  animation: blink 0.6s step-end infinite;
  margin-left: 3px;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
  .typing-title {
    font-size: 2.4rem;
  }
  .hero {
    padding: 40px 0 30px;
  }
}