body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    margin: 0;
    padding: 0;
}


.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-title {
    color: #ff7f50;
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd; /* Scheidingslijn tussen vragen */
    padding-bottom: 20px;
}


.question {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s ease-in-out; /* Kleurovergang bij hover */
}

.question:hover {
    color: #ff7f50; /* Verander de kleur bij hover */
}

.question-icon {
    font-size: 24px;
    margin-right: 10px;
}

.answer {
    font-size: 16px;
    line-height: 1.6;
    display: none;
    padding-left: 34px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out, padding 0.2s ease-out;
}

.answer.active {
    display: block;
    max-height: 200px;
    padding: 20px;
    transition: max-height 0.2s ease-in, padding 0.2s ease-in;
}

.logo {
    margin-right: 20px;
}

.logo img {
    width: 50px;
    height: 50px;
}


.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links li {
    display: inline-block;
    margin-right: 20px;
}
.nav-links ul li a{
    color: white;
    text-decoration: none;

}
.nav-links ul {
    list-style: none;
}

nav {
    text-align: center;
}

nav ul {
    list-style: none;
    display: inline-block;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    font-size: 20px;
    text-decoration: none;
    color: #000000;
    font-weight: 1000;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff6600;
}

.icon-link {
    margin-right: 0;
}

.icon-container {
    font-size: 24px;
    color: #333;
    display: inline;
}
/* Popupcontainer voor wanneer je contact us drukt */

/* Stijlen voor de pop-up container */
.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Voorkom dat er wordt gescrold wanneer de pop-up actief is */
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px); /* Blurren van de achtergrond */
}

.popup-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 10000; /* Zet de z-index hoger dan andere inhoud */
  position: relative;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: #ff7f50; /* Verander de kleur bij hover */
}


.hamburger-menu {
    margin-top: 10px;
    padding-right: 0px!important;
    --x-width: calc(var(--hamburger-height) * 1.41421356237);
    display: flex;
    flex-direction: column;
    gap: var(--hamburger-gap);
    width: max-content;
    position: fixed;
    top: var(--hamburger-margin);
    right: var(--hamburger-margin);
    z-index: 20;
    cursor: pointer;
  }
  
  .hamburger-menu:has(input:checked) {
    --foreground: #000000;
    --background: #481D24;
  }
  
  .hamburger-menu:has(input:focus-visible)::before,
  .hamburger-menu:has(input:focus-visible)::after,
  .hamburger-menu input:focus-visible {
    border: 1px solid var(--background);
    box-shadow: 0 0 0 1px var(--foreground);
  }
  
  .hamburger-menu::before,
  .hamburger-menu::after,
  .hamburger-menu input {
    background-color: var(--background);
    content: "";
    width: var(--bar-width);
    height: var(--bar-height);
    border-radius: 999px;
    transform-origin: right center;
    transition: opacity var(--animation-timing), width var(--animation-timing),
      rotate var(--animation-timing), translate var(--animation-timing),
      background-color var(--animation-timing);
  }
  
  .hamburger-menu input {
    appearance: none;
    padding: 0;
    margin: 0;
    outline: none;
    pointer-events: none;
  }
  
  .hamburger-menu:has(input:checked)::before {
    rotate: -45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / -2);
  }
  
  .hamburger-menu:has(input:checked)::after {
    rotate: 45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / 2);
  }
  
  .hamburger-menu input:checked {
    opacity: 0;
    width: 0;
  }
  
  .sidebar {
    width: 20rem;
    height: 100vh;
    background-color: #f2f2f2;
    position: fixed;
    top: 0;
    right: -20rem;
    transition: right 0.3s ease-in-out;
    z-index: 2;
    border-left: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .hamburger-menu:has(input:checked) ~.sidebar {
    right: 0;
  }
  
  .desktop-nav {
    display: none;
  }
  
  @media (min-width: 768px) {
    .hamburger-menu {
      display: none;
    }
  }
  @media (max-width: 768px) {
    .navbar {
      display: none;
    }
  }
  
  .sidebar-nav {
    margin-top: 50px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .sidebar-nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .sidebar-nav li {
    margin-bottom: 2rem;
    margin-left: 0;
  }
  
  .sidebar-nav a {
    text-decoration: none;
    color: #333;
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
    display: inline-block;
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    position: relative;
    top: -10px; /* lowered the links */
  }
  
  .sidebar-nav a:hover {
    color: #f5871f; /* changed the color to orange */
    transform: translateX(25%);
  }
  
  .sidebar-nav li:hover {
    background-color: transparent;
  }
/*//////////////////////// sectie 1 /////////////////////////*/
.section1 .container {  display: grid;
    height: 100svh;
    grid-template-columns: 1fr 1fr;
    gap: 20px 0px;
    grid-auto-flow: row;
    grid-template-areas:
      "navbar            navbar"
      "weeklySpecialInfo weeklySpecial";
  }
  
  .navbar { grid-area: navbar; 
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 100px;
}

