/**
 * Hero Section - Fullscreen met subtiele overlay
 */

.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.1) 40%,
      rgba(37,37,37,0.7) 75%,
      rgba(37,37,37,0.85) 100%
    );
  z-index: 1;
}

/* Subtiele rode accent lijn onderaan */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #cf2e28 0%, #cf2e28 30%, transparent 100%);
  z-index: 3;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 0;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 100px 0 60px;
  }
}

/* ==========================================================================
   Homepage Hero Variant - Meer contrast, gecentreerde content
   ========================================================================== */

.hero--home::before {
  background:
    radial-gradient(ellipse at center,
      rgba(0,0,0,0.5) 0%,
      rgba(37,37,37,0.75) 70%,
      rgba(37,37,37,0.9) 100%
    );
}

/* Subtiele rode accent in de hoek voor homepage */
.hero--home::after {
  height: 100%;
  width: 6px;
  right: auto;
  background: linear-gradient(to bottom, #cf2e28 0%, #cf2e28 40%, transparent 100%);
}
