.hero-overons {
  position: relative;
  height: 30vh;
  background: url('overons-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 50px; /* ✅ ruimte onder de gouden lijn */
}



.hero-overons .overlay {
  position: absolute;
  inset: 0;
  background: rgba(59, 9, 18, 0.75);
}

.hero-overons .hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 0 10px;
}

.hero-overons h1 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 10px;
}

.hero-overons p {
  font-size: 1.2rem;
  color: #fff;
  }


/* === BASIS RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
  background: linear-gradient(135deg, #4b0d1a 0%, #3a0810 50%, #4b0d1a 100%);
  background-attachment: fixed;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
/* NAVBAR STYLING */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(59, 9, 18, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 8%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.navbar:hover {
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.2);
}

/* Logo */
.navbar .logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #d4af37;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(212, 175, 55, 0.4);
  transition: transform 0.3s ease;
}

.navbar .logo:hover {
  transform: scale(1.05);
}

/* Links desktop */
.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #ffe6a0);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #d4af37;
}

.nav-links a:hover::after {
  width: 100%;
}

/* HAMBURGER (MOBIEL) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #d4af37;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; /* vanaf bovenaan */
    right: -100%;
    width: 100%; /* volledige breedte */
    height: 100vh; /* volledige hoogte van scherm */
    background: #4b0d1a !important; /* vaste bordeauxkleur */
    flex-direction: column;
    align-items: center; /* mooi gecentreerd */
    justify-content: flex-start; /* tekst begint bovenaan */
    padding-top: 100px; /* ruimte onder de navbar */
    gap: 25px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }

  .nav-links.show {
    right: 0; /* menu schuift volledig in beeld */
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 10000; /* boven het menu */
  }

  .hamburger span {
    background-color: #d4af37;
  }
}

/* === FOOTER === */
.footer {
  background: linear-gradient(180deg, #3b0a12 0%, #2a0808 100%);
  text-align: center;
  padding: 20px 0;
  font-size: 0.95rem;
  color: #ffffff;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
}