/* ======================
   LOGO BINNEN MOBIEL MENU
====================== */
#logo-menu {
   display: none;
   margin-bottom: 30px;
 }
 
 #logo-menu img {
   width: 120px;
 }
 
 /* ===================
    MENU-KNOP (HAMBURGER)
 =================== */
 .menu-btn {
   display: none;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 6px;
   width: 28px;
   height: 28px;
   cursor: pointer;
   position: absolute;
   right: 20px;
   top: 20px;
   z-index: 1001;
 }
 
 .menu-btn span {
   display: block;
   width: 100%;
   height: 2px;
   background-color: var(--primary);
   transition: transform 0.3s ease, opacity 0.3s ease;
   transform-origin: center;
 }
 
 .menu-btn.active span:nth-child(1) {
   transform: rotate(45deg);
 }
 
 .menu-btn.active span:nth-child(2) {
   opacity: 0;
 }
 
 .menu-btn.active span:nth-child(3) {
   transform: rotate(-45deg);
 }
 
 /* ========================
    DESKTOP LAYOUT
 ======================== */
 @media (min-width: 769px) {
   .menu-btn {
     display: none;
   }
 }
 
 /* ========================
    MOBIELE LAYOUT
 ======================== */
 @media (max-width: 768px) {
   .menu-btn {
     display: flex;
   }

   #header {
      background-color: #fff;
      height: 70px;
      padding: 0 20px;
   }

   #header #logo img {
      height: 50px;
      margin: 10px 0;
   }
 
   #menu {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: flex-start;
     background: white;
     position: fixed;
     top: 70px;
     padding-top: 50px;
     left: 0;
     width: 100%;
     height: 100vh;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.4s ease-in-out;
     z-index: 1000;
   }
 
   #menu.show {
     opacity: 1;
     pointer-events: auto;
   }
 
   #menu ul {
     display: flex;
     flex-direction: column;
     align-items: center;
     list-style: none;
     padding: 0;
     margin: 0;
     width: 100%;
   }
 
   #header #menu ul li {
     margin: 0;
     width: 100%;
     text-align: center;
     height: 50px;
     line-height: 50px;
     border: none;
   }
 
   #header #menu ul li a {
     display: block;
     font-size: 20px;
     text-decoration: none;
     color: var(--primary);
     width: 100%;
     padding: 0;
     height: 50px;
     line-height: 50px;
     border: none !important;
   }
 
   #menu ul.dropdown-horizontal {
     flex-direction: column;
   }
 }