/* ========== Base / Reset ========== */
* { box-sizing: border-box; }
html, body { height: 100%; }

body{
  margin: 0;
  padding-top: 56px;                 /* ruimte voor de fixed navbar */
  background: #ffffff;
  color: #1f1f1f;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== Navbar (fixed) ========== */
.navbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;                      /* vaste hoogte */
  background: transparent;               /* normale, niet-transparante bar */
  border-bottom: 0.5px solid rgba(0,0,0,.08);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Brand / logo (tekst of beeld) */
.navbar-logo{
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .6rem;
  height: 100%;
  color: #1f1f1f;
  font-family: 'satoshi', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
}


/* Menu rechts (desktop) */
.navbar-menu{
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-menu a{
  text-decoration: none;
  color: #0b1215;
  font-family: 'supreme', system-ui, sans-serif;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  line-height: 1;
}
.navbar-menu a::after{
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: currentColor;
  transition: width .25s ease;
}
.navbar-menu a:hover::after{ width: 100%; }

/* Hamburger (mobiel) */
.navbar-toggle{
  display: none;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: transparent; border: 0; padding: 0;
  cursor: pointer;
}
.hamburger{
  position: relative;
  width: 22px; height: 2px;
  background: #0b1215;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger::before, .hamburger::after{
  content: '';
  position: absolute; left: 0;
  width: 22px; height: 2px; background: #0b1215;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger::before{ top: -6px; }
.hamburger::after { top:  6px; }

.navbar.open .hamburger{ background: transparent; }
.navbar.open .hamburger::before{ transform: translateY(6px) rotate(45deg); }
.navbar.open .hamburger::after { transform: translateY(-6px) rotate(-45deg); }

/* ========== Hero (zonder achtergrondafbeelding) ========== */
.hero{
  /* geen achtergrondfoto: strak wit vlak */
  background: none !important;
  min-height: calc(100vh - 56px);    /* vult rest van het scherm onder navbar */
  display: flex; align-items: center; justify-content: center;
  position: relative;
  padding: 24px;
}

.hero-content{
  position: relative; z-index: 1;
  max-width: 680px;
  text-align: center;
}
.hero-content p{
  margin: .25rem 0;
  font-family: 'switzer', system-ui, sans-serif;
  font-size: .95rem;
  line-height: 1.6;
  font-weight: 300;
  color: #0b1215;
}
.hero-content a{
  color: #0b1215;
  text-decoration: underline;
  font-family: 'switzer', system-ui, sans-serif;
  font-weight: 500;
}

/* ========== Responsive ========== */
@media (max-width: 768px){
  /* toon hamburger, klap menu uit */
  .navbar{
    padding: 0 20px;           /* consistent padding */
    height: 56px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
  }
  
  .navbar-toggle{ 
    display: inline-flex;
    margin-left: auto;         /* ensure hamburger is pushed to the right */
  }
  .navbar-menu{
    position: absolute;
    top: 56px; left: 0; right: 0;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    display: none;               /* standaard dicht */
    flex-direction: column;
    gap: 10px;
  }

    .navbar-toggle:hover {
      background: transparent;
    }
  .navbar.open .navbar-menu{ display: flex; }

  .hero-content{ max-width: 100%; }
  .hero-content p{ font-size: .9rem; }
}

/* ========== Motion preference ========== */
@media (prefers-reduced-motion: reduce){
  * { animation: none !important; transition: none !important; }
}
