/* RESET */
* { margin:0; padding:0; box-sizing:border-box; }
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap');
body {
  font-family: 'Raleway', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* === NAVBAR STYLE - MATCH BRINTERIEUR === */
.navbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem 5%;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 50;
  gap: 2rem;
}

.navbar::after {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0));
  z-index: -1;
}

/* Logo */
.logo {
  flex-shrink: 0;
  margin-right: auto;
}
.logo img {
  height: 50px; /* iets kleiner */
}

/* Navigatie */
.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
  justify-content: center;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #cb9f50;
}

/* Actieknoppen rechts */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
.btn-outline {
  padding: 0.6rem 1.4rem;
  border: 1px solid #cb9f50;
  color: #cb9f50;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  background: transparent;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: #cb9f50;
  color: #fff !important;
}

/* Navigatie gecentreerd */
.nav-links li { position: relative; }
.nav-links li a:hover { color: #cb9f50; }

/* keep parent white when open */
.nav-links li.dropdown:hover > a { color: #fff; }
.nav-links .btn-outline {
  padding: 0.6rem 1.2rem;
  border-radius: 2px;
  letter-spacing: .04em;
}
.btn-outline + .btn-outline { margin-left: 1rem; }
.btn {
  background: #cb9f50;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #a07c3d;
}

/* HERO */
.hero {
  height:100vh; background:url("Pictures/cover-homepage-header.jpg") no-repeat center/cover;
  position:relative; display:flex; align-items:center; justify-content:center; text-align:center; color:white;
}
.hero::before {
  content:""; position:absolute; top:0; left:0; right:0; bottom:0;
  background:linear-gradient(to bottom,rgba(0,0,0,0.8),rgba(0,0,0,0.2));
}
.hero-content { position:relative; z-index:1; max-width:80%; }
.hero h1 { font-size:3rem; margin-bottom:1rem; font-weight: 800; }
.hero p { font-size:1.2rem; margin-bottom:1.5rem; }
.hero .btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.hero .btn:hover {
  background: #fff;
  color: #cb9f50;
}

/* INTRO */
.intro { 
  padding:4rem 5%; 
  background:#fff; 
}
.intro-content {
  position: relative;
  display: flex;
  flex-wrap: nowrap; /* don't wrap image under card on desktop */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: flex-start; /* align content to left */
}
.intro-image {
  flex: 0 0 60%; /* image takes 60% width on desktop */
  position: relative;
}
.intro-image img { 
  width:100%; 
  border-radius:5px; 
  height: auto; 
  object-fit: cover; 
  display: block;
}
.intro-card {
  flex: 0 0 50%; /* card takes about half */
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  margin-left: -150px; /* overlap into the image */
  z-index: 2;
  position: relative;
}

.intro-card p:last-of-type {
  margin-bottom: 1.5rem;
}

/* On larger screens, overlap the card on the image */
@media (min-width: 992px) {
  .intro-content {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .intro-image {
    flex: 0 0 60%;
    min-height: clamp(420px, 60vh, 700px);
  }
  .intro-card {
    flex: 0 0 50%;
    margin-left: -150px; /* overlap the image from the right */
    align-self: center;
  }
}
.intro-card .intro-text {
  flex: none;
  margin: 0;
}
.intro h2 { font-size:2rem; margin-bottom:1rem; color:#333; font-weight: 700; }
.intro p { margin-bottom:1rem; }
.eyebrow {
  color: #cb9f50;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .7rem;
  margin-bottom: .5rem;
  opacity: .85;
}

/* FEATURES */
.features-header {
  background: #111;
  color: white;
  padding: 4rem 5%;
  text-align: center;
}
.features-header img {
  max-width: 120px;
  margin: 0 auto 1rem auto;
  display: block;
}
.features-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.features-header p {
  margin: 0 auto 1rem auto;
  max-width: 700px;
  line-height: 1.6;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin: 2.5rem auto 0 auto;
  max-width: 1100px;
  margin-bottom: 4rem;
}
.feature-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  color: #333;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.feature img {
  height: 32px;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}
.feature p {
  font-weight: 600;
  margin-top: 2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #cb9f50;
  letter-spacing: 0.05em;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  color: #777;
}

/* FOOTER */
/* FOOTER */
.footer {
    background: #111;
    color: #ccc;
    padding: 4rem 5% 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.footer h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.footer p,
.footer a,
.footer li {
  color: #ccc;
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer a:hover {  
    color: #cb9f50;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer ul li {
    margin-bottom: 0.5rem;
}
.footer .contact-item {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: flex-start;
    margin-bottom: 1rem;
    align-items: center;
    gap: 0.5rem;
}
.footer .contact-item img {
    width: 20px;
    /* margin-right: 10px; */
    opacity: 0.85;
    flex-shrink: 0;
}
.footer .contact-item span {
    /* display: inline-block; */
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    line-height: 1.4;
  }
.footer-bottom {
    text-align: center;
}
/*.footer-bottom { text-align:center; margin-top:2rem; font-size:0.9rem; border-top:1px solid #444; padding-top:1rem; }
*/
/* RESPONSIVE */
@media(max-width:768px){
  .hero h1{ font-size:2rem; }
  .hero p{ font-size:1rem; }
  .intro-content{ flex-direction:column; }
  .nav-links{ display:none; }
  .intro-card {
    margin-top: 0;
  }
}

/* === CUSTOM STYLES TO MATCH ORIGINAL SITE === */

/* NAVBAR achtergrond overlay */
.navbar::after {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0));
  z-index: -1;
}

/* DROPDOWNS */
.dropdown-content {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #cb9f50;
  min-width: 200px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  z-index: 999;
  /* removed pointer-events:none */
}

.nav-links li:hover .dropdown-content,
.dropdown-content:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto; /* stays interactive */
  transition-delay: 0s; /* show immediately */
}

/* Add hidden state with delay */
.nav-links li .dropdown-content {
  transition-delay: 0.3s; /* keep visible a bit longer when leaving */
}

.dropdown-content a {
  display: block;
  padding: 0.75rem 1rem;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background: #a07c3d; /* darker gold highlight */
}

/* Hero CTA */
.hero .btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 600;
}
.hero .btn:hover {
  background: #fff;
  color: #cb9f50;
}

/* Extra spacing voor CTA knoppen */
.nav-links .btn-outline {
  padding: 0.6rem 1.2rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
}
.btn-outline + .btn-outline {
  margin-left: 1rem;
}

/* Intro card overlap & positionering */
@media (min-width: 992px) {
  .intro-content {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .intro-image {
    flex: 0 0 60%;
    min-height: clamp(420px, 60vh, 700px);
  }
  .intro-card {
    flex: 0 0 50%;
    margin-left: -150px; /* overlap the image from the right */
    align-self: center;
  }
}

/* Eyebrow style */
.eyebrow {
  color: #cb9f50;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .7rem;
  margin-bottom: .5rem;
  opacity: .85;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.intro-card .btn {
  margin-top: 4.5rem;
}


/* /////////////////////////trapmodellen html/////////////////////////// */
/* Hero */
.hero-trap {
    position: relative;
    height: 80vh;
    background: url("cover-trap-1-header.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.1));
  }
  
  .hero-content {
    position: relative;
    color: white;
    z-index: 2;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    font-weight: 300;
  }
  
  .hero-content strong {
    font-weight: 500;
  }
  
  .hero-content .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    border: 1px solid white;
    color: white;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .hero-content .btn:hover {
    background: white;
    color: #cb9e50;
  }
  
  /* Trapmodellen */
  .trapmodellen {
    background: #111;
    padding: 50px 5%;
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .trap-box {
    background: #222;
    padding: 20px;
    max-width: 500px;
    flex: 1 1 45%;
  }
  
  .trap-box h2 {
    text-transform: uppercase;
    color: #cb9e50;
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .trap-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
  }
  
  .trap-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .trap-grid img:nth-child(1),
  .trap-grid img:nth-child(2) {
    grid-column: span 3;
    max-height: 220px;
  }
  
  .trap-grid img:nth-child(3),
  .trap-grid img:nth-child(4),
  .trap-grid img:nth-child(5) {
    grid-column: span 2;
    max-height: 150px;
  }


  /* /////////////////persoonlijkaanpak///////////////// */

  /* HERO */
.hero-aanpak {
    position: relative;
    height: 80vh;
    background: url("images/cover-trap-2-header.jpg") no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hero-overlay {
    position: absolute;
    top:0;left:0;right:0;bottom:0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.1));
  }
  .hero-content {
    position: relative;
    z-index: 2;
    color: white;
  }
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .hero-content .btn {
    border: 1px solid white;
    color: white;
    padding: 12px 24px;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
  }
  .hero-content .btn:hover {
    background: white;
    color: #cb9f50;
  }
  
  /* INFO */
  .aanpak-info {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 5%;
    align-items: center;
    gap: 40px;
  }
  .info-image {
    flex: 1 1 40%;
  }
  .info-image img {
    width: 100%;
    border-radius: 5px;
  }
  .info-text {
    flex: 1 1 50%;
  }
  .info-text .subtitle {
    color: #cb9f50;
    text-transform: uppercase;
    font-size: 0.7rem;
    opacity: 0.8;
  }
  .info-text h2 {
    margin: 10px 0;
    font-size: 1.5rem;
    color: #333;
  }
  .info-text p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .btn-outline {
    display: inline-block;
    border: 1px solid #cb9f50;
    color: #cb9f50;
    padding: 10px 20px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
  }
  .btn-outline:hover {
    background: #cb9f50;
    color: white;
  }
  
  /* DIENSTEN */
  .diensten {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 50px 5%;
    gap: 20px;
    background: #f9f9f9;
  }
  .dienst-card {
    background: white;
    text-align: center;
    padding: 20px;
    flex: 1 1 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .dienst-card img {
    max-width: 80px;
    margin-bottom: 10px;
  }
  .dienst-card h3 {
    color: #cb9f50;
    text-transform: uppercase;
    font-size: 0.9rem;
  }
  
/* ////////////////////brandweerdeuren////////////// */
/* HERO */
.hero-brand {
    position: relative;
    height: 80vh;
    background: url("images/branddeuren-cover.jpg") no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    color: white;
  }
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .btn {
    border: 1px solid white;
    color: white;
    padding: 12px 24px;
    text-transform: uppercase;
    text-decoration: none;
  }
  .btn:hover {
    background: white;
    color: #cb9f50;
  }
  
  /* DIENSTEN */
  .diensten {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 50px 5%;
  }
  .dienst-card {
    background: white;
    text-align: center;
    padding: 20px;
    flex: 1 1 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .dienst-card img {
    max-width: 80px;
    margin-bottom: 10px;
  }
  .dienst-card h3 {
    color: #cb9f50;
    text-transform: uppercase;
    font-size: 0.9rem;
  }
  
  /* INFO */
  .info {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 5%;
    gap: 40px;
    align-items: center;
  }
  .info-image {
    flex: 1 1 40%;
  }
  .info-image img {
    width: 100%;
    border-radius: 5px;
  }
  .info-text {
    flex: 1 1 50%;
  }
  .info-text .subtitle {
    color: #cb9f50;
    text-transform: uppercase;
    font-size: 0.7rem;
  }
  .info-text h2 {
    margin: 10px 0;
    font-size: 1.5rem;
    color: #333;
  }
  .info-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  .btn-outline {
    border: 1px solid #cb9f50;
    color: #cb9f50;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
  }
  .btn-outline:hover {
    background: #cb9f50;
    color: white;
  }
  
  /* EXTRA INFO */
  .extra-info {
    background: #f3f3f3;
    padding: 60px 5%;
    text-align: center;
  }
  .extra-info h2 {
    margin-bottom: 20px;
  }
  .extra-info p {
    margin-bottom: 20px;
    color: #333;
  }
  
/* ///////////////binnendeuren////////////// */
/* HERO */
.hero-binnen {
    position: relative;
    height: 80vh;
    background: url("images/cover-binnendeuren-header.jpg") no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    color: white;
  }
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .btn {
    border: 1px solid white;
    color: white;
    padding: 12px 24px;
    text-transform: uppercase;
    text-decoration: none;
  }
  .btn:hover {
    background: white;
    color: #cb9f50;
  }
  
  /* INFO */
  .info {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 5%;
    gap: 40px;
    align-items: center;
  }
  .info-image {
    flex: 1 1 40%;
  }
  .info-image img {
    width: 100%;
    border-radius: 5px;
  }
  .info-text {
    flex: 1 1 50%;
  }
  .info-text h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .info-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  .btn-outline {
    border: 1px solid #cb9f50;
    color: #cb9f50;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
  }
  .btn-outline:hover {
    background: #cb9f50;
    color: white;
  }
  
  /* DIENSTEN */
  .diensten {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 5%;
    gap: 20px;
    background: #f9f9f9;
  }
  .dienst-card {
    background: white;
    text-align: center;
    padding: 20px;
    flex: 1 1 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .dienst-card img {
    max-width: 80px;
    margin-bottom: 10px;
  }
  .dienst-card h3 {
    color: #cb9f50;
    text-transform: uppercase;
    font-size: 0.9rem;
  }
  
/* ///////////////nieuwbouwrenovatie/////////////// */

/* HERO */
.hero-nieuwbouw {
    position: relative;
    height: 80vh;
    background: url("images/nieuwbouwrenovatie-header.jpg") no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    color: white;
  }
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .btn {
    border: 1px solid white;
    color: white;
    padding: 12px 24px;
    text-transform: uppercase;
    text-decoration: none;
  }
  .btn:hover {
    background: white;
    color: #cb9f50;
  }
  
  /* INFO */
  .info {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 5%;
    gap: 40px;
    align-items: center;
  }
  .info-image {
    flex: 1 1 40%;
  }
  .info-image img {
    width: 100%;
    border-radius: 5px;
  }
  .info-text {
    flex: 1 1 50%;
  }
  .info-text h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .info-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  .btn-outline {
    border: 1px solid #cb9f50;
    color: #cb9f50;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
  }
  .btn-outline:hover {
    background: #cb9f50;
    color: white;
  }
  
  /* DIENSTEN */
  .diensten {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 5%;
    gap: 20px;
    background: #f9f9f9;
  }
  .dienst-card {
    background: white;
    text-align: center;
    padding: 20px;
    flex: 1 1 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .dienst-card img {
    max-width: 80px;
    margin-bottom: 10px;
  }
  .dienst-card h3 {
    color: #cb9f50;
    text-transform: uppercase;
    font-size: 0.9rem;
  }
  

/* Voor schermen kleiner dan 768px (mobiele apparaten) */
@media (max-width: 768px) {
    .navbar {
      flex-direction: column; /* Stapel de navigatie-items onder elkaar */
      align-items: flex-start;
    }
  
    .nav-links {
      display: none; /* Verberg de navigatie op mobiel */
    }
  
    .nav-actions {
      margin-left: 0;
    }
  
    .hero {
      height: 60vh; /* Maak de hero-sectie kleiner op mobiel */
      text-align: center;
    }
  
    .intro-content {
      flex-direction: column; /* Stapel de afbeelding en tekst onder elkaar */
      text-align: center;
    }
  
    .intro-image {
      flex: 0 0 100%; /* Laat de afbeelding de volledige breedte innemen */
    }
  
    .intro-card {
      margin-left: 0; /* Verwijder de overlap op mobiel */
      margin-top: 1rem;
    }
  
    .feature-grid {
      grid-template-columns: 1fr; /* Toon één kolom op mobiel */
    }
  
    .gallery {
      flex-direction: column; /* Stapel de galerij-items onder elkaar */
    }
  
    .card {
      width: 100%; /* Laat de kaarten de volledige breedte innemen */
      height: auto; /* Pas de hoogte aan de inhoud aan */
    }
  }

  /* Hamburger Menu Styling */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  .hamburger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
  }
  
  /* Verberg navigatie standaard op mobiel */
  .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111;
    padding: 1rem;
    z-index: 100;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #cb9f50;
  }
  
  /* Toon hamburger-menu op mobiele apparaten */
  @media (max-width: 768px) {
    .hamburger-menu {
      display: flex;
    }
  
    .nav-links {
      display: none;
    }
  
    .nav-actions {
      display: none;
    }
  }
  /* Hamburger Menu Styling */
.hamburger-menu {
    display: none; /* Verberg standaard op grotere schermen */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    top: 20px; /* Zorg ervoor dat het icoon rechtsboven staat */
    right: 20px; /* Zorg ervoor dat het icoon rechtsboven staat */
    z-index: 100; /* Zorg ervoor dat het boven andere elementen staat */
  }
  
  .hamburger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
  }
  
  /* Toon hamburger-menu op mobiele apparaten */
  @media (max-width: 768px) {
    .hamburger-menu {
      display: flex; /* Toon het icoon op mobiele schermen */
    }
  
    .nav-links {
      display: none; /* Verberg de navigatielinks standaard */
    }
  
    .nav-links.active {
      display: flex; /* Toon de navigatielinks wanneer het menu actief is */
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      background: #111;
      width: 100%;
      padding: 1rem;
      z-index: 99;
    }
  }

  /* Toon de nav-actions in mobiele weergave */
@media (max-width: 768px) {
    .nav-actions {
      display: flex; /* Zorg ervoor dat de knoppen zichtbaar zijn */
      flex-direction: column; /* Stapel de knoppen onder elkaar */
      gap: 1rem; /* Voeg ruimte tussen de knoppen toe */
      position: absolute;
      top: 60px; /* Plaats de knoppen onder de navigatie */
      right: 10px; /* Zorg ervoor dat ze rechts uitgelijnd zijn */
      z-index: 100;
    }
  
    .nav-actions a {
      background: #cb9f50; /* Gouden achtergrondkleur */
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      text-align: center;
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      transition: background-color 0.3s ease;
    }
  
    .nav-actions a:hover {
      background: #b88a40; /* Donkerdere gouden kleur bij hover */
    }
  }

/* Standaard styling voor de knoppen in de lijst */
.nav-links .btn-outline {
    padding: 0.6rem 1.4rem;
    border: 1px solid #cb9f50;
    color: #cb9f50;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    background: transparent;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
  }
  
  .nav-links .btn-outline:hover {
    background: #cb9f50;
    color: #fff;
  }
  
  /* Mobiele weergave */
  @media (max-width: 768px) {
    .nav-links {
      display: none; /* Verberg standaard */
      flex-direction: column; /* Stapel de items onder elkaar */
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: #111;
      padding: 1rem;
      z-index: 100;
    }
  
    /* .nav-links.active {
      display: flex; /* Toon de lijst wanneer actief
    }
   */
    .nav-links .btn-outline {
      width: 100%; /* Laat de knoppen de volledige breedte innemen */
      text-align: center;
      margin: 0.5rem 0; /* Voeg ruimte tussen de knoppen toe */
    }
  }
  /* Zorg ervoor dat de navigatie links uitgelijnd blijft in het hamburger menu */
.nav-links {
    text-align: left; /* Zorg ervoor dat de tekst links uitgelijnd is */
    padding-left: 1rem; /* Voeg wat ruimte toe aan de linkerkant */
  }
  
  .nav-links li {
    justify-content: flex-start; /* Zorg ervoor dat de items links uitgelijnd zijn */
  }
  
  .nav-links a {
    text-align: left; /* Zorg ervoor dat de links links uitgelijnd zijn */
  }
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column; /* Stapel de items onder elkaar */
      text-align: left; /* Zorg ervoor dat de tekst links uitgelijnd blijft */
      padding-left: 1rem; /* Voeg ruimte toe aan de linkerkant */
    }
  
    .nav-links li {
      justify-content: flex-start; /* Zorg ervoor dat de items links uitgelijnd zijn */
    }
  
    .nav-links a {
      text-align: left; /* Zorg ervoor dat de links links uitgelijnd zijn */
    }
  }