.hero{
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  max-width: 100vw;
  display: flex;
  align-items: center;
}

.hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(14, 24, 21, 0.45) 0%,
      rgba(14, 24, 21, 0.30) 40%,
      rgba(14, 24, 21, 0.15) 100%
    );
}

.hero-inner{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100%;
  text-align: left;
  padding-bottom: 12rem;
}

.hero-content {
  max-width: 720px;
  margin: 0;
  text-align: left;
  color: var(--text-on-dark);
}

/* Typografie spacing */
.hero-content h1{
  margin-bottom: var(--space-5);
}

.hero-content p{
  margin-bottom: var(--space-8);
  opacity: 1;
}

.hero-content p.hero-sub{
  margin-bottom: 3rem;
  opacity: 1;
}

/* Button: gebruik jouw tokens */
.hero .btn.btn-gold{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-1);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  background: var(--btn-bg);
  color: var(--btn-text);
  border: 1px solid rgba(0,0,0,0.18);
  box-shadow: var(--shadow-md);
}

.hero .btn.btn-gold:hover{
  background: var(--btn-bg-hover);
  color: var(--text-on-dark);
}

/* =====================================
   HERO MOBILE 
   ===================================== */

/* Grote phones / kleine tablets */
@media (max-width: 767px){

  .hero{
    min-height: calc(100vh - var(--header-height));    
    align-items: stretch;
    background-position: center;
  }

  .hero-inner{
    min-height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: clamp(1rem, 2vh, 1.5rem);
    padding-bottom: clamp(7rem, 16vh, 10rem);
  }

  .hero-content h1{
    margin-bottom: 1rem;
    padding-top: 0;
  }

  .hero-content p{
    margin-bottom: 0.95rem;
  }

  .hero-content p.hero-sub{
    margin-bottom: 1.75rem;
  }
}

  .hero .btn.btn-gold{
    margin-top: 0.25rem;
    padding: 12px 18px;
    min-height: 48px;
  }

  .hero-illustration{
    width: 150%;
  }


/* Echte mobile phones */
@media (max-width: 520px){

  .hero{
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    background-position: bottom;
  }

  .hero-inner{
    min-height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: clamp(3rem, 6vh, 3rem);
    padding-bottom: clamp(6rem, 12vh, 8rem);
    padding-inline: clamp(1.5rem, 6vw, 2rem);
  }

  .hero-content{
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .hero-content h1{
    margin-bottom: 1rem;
    padding-top: 0;
  }

  .hero-content p{
    margin-bottom: 0.95rem;
  }

  .hero-content p.hero-sub{
    margin-bottom: 1.75rem;
  }
}

  .hero .btn.btn-gold{
    font-size: 0.95rem;
    padding: 12px 18px;
  }
