/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100vh;
  background-image: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
  background-color: rgba(78, 46, 20, 0.95);
  background-repeat: repeat;
  color: white;
  padding: 3rem 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
  transition: transform 0.3s ease;
    font-family: 'Inter', sans-serif !important;  /* Forceer Inter voor ALLES in sidebar */
}

.sidebar nav a {
  display: block;
  color: white;
  padding: 10px;
  margin: 0.5rem 0;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-family: 'Inter', sans-serif !important;  /* Extra zeker */
  font-size: 16px !important;  /* Optioneel: vaste grootte */
  font-weight: 400 !important;  /* Optioneel: vast gewicht */
  line-height: 1.5 !important;  /* Optioneel: vaste regelafstand */
}

.logo {
  display: block;
  max-width: 80%;
  height: auto;
  padding: 10px;
  border-radius: 15%;
}

    nav {
      width: 100%;
      text-align: center;
    }

    nav a {
      display: block;
      color: white;
      padding: 10px;
      margin: 0.5rem 0;
      text-decoration: none;
      border-radius: 5px;
      transition: background-color 0.3s;
    }

    nav a:hover {
      background-color: #3e7f60 ;
    }

        /* Hamburger menu */
    #hamburger {
      display: none;
      position: fixed;
      top: 15px;
      left: 15px;
      z-index: 1100;
      width: 30px;
      height: 25px;
      cursor: pointer;
      flex-direction: column;
      justify-content: space-between;
    }

    #hamburger span {
      display: block;
      height: 4px;
      background-color: #2d8c80;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

/* Responsive */
@media (max-width: 900px) {
  .sidebar {
    transform: translateX(-100%);
    padding: 2rem 1rem;
    width: 200px;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  #hamburger {
    display: flex;
  }
  
  /* Ook op mobiel hetzelfde lettertype */
  .sidebar nav a {
    font-size: 15px !important;
  }
}