/* ========== NAVBAR ALGEMEEN ========== */

html {
    scroll-behavior: smooth;
  }
  
  /* RESET voor consistentie (optioneel, kan weg als je het al in main CSS hebt) */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: "Montserrat", sans-serif;
    background-color: #F7F3EF;
    color: #1C1C1C;
    line-height: 1.6;
    padding-top: 70px; /* voorkomt dat hero achter navbar verdwijnt */
  }

  
  /* ========== HEADER (STICKY NAVBAR) ========== */
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1C1C1C;
    color: #F7F3EF;
    padding: 1.2rem 2rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);

  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  /* LOGO */
.logo {
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    color: #F7F3EF;
    text-decoration: none; /* This line ensures no underline */
}
  
  .logo a:hover {
    color: #6B1E1E;
  }
  
  /* NAV LINKS */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #F7F3EF;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: #6B1E1E;
  }
  

  /* ========== RESPONSIVE NAVBAR ========== */

/* Verberg hamburger standaard */
.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger img {
  width: 26px;
  height: 26px;
}

/* ===== MOBILE STYLING ===== */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px; /* net onder navbar */
    right: 0;
    width: 100%;
    background-color: #1C1C1C;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    transform: translateY(-200%);
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  }

  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
  }

  .hamburger {
    display: block;
  }
}
