* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bree Serif', serif;
    background-color: #f9f9f9; /* soft gray background */
    color: #333;
    line-height: 1.6;
}

/* Vaste (sticky) navigatie */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: black;
    padding: 10px 0;
    font-family: 'Bree Serif', serif;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Space between items */
}



.navbar img {
    width: 150px; /* Adjust width for better fit */
    height: 1; /* Maintain aspect ratio */
    margin: 10px; /* Center and add spacing */
    display: block; /* Center within container */
}

.navbar a {
    color: black;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
}

/* Dropdown Menu */
.menu-container {
    position: relative;
    display: inline-block;
}

.menu-header {
    padding: 15px;
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

.menu-categories {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    padding: 20px;
}

.menu-container:hover .menu-categories {
    display: block;
}

.category {
    font-size: 16px;
    margin-right: 40px;
}

.category-header {
    font-weight: bold;
    margin-bottom: 10px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin: 5px 0;
}

.category-list li a {
    text-decoration: none;
    color: #007bff;
}

.category-list li a:hover {
    text-decoration: underline;
}

/* Button Styles */
.zoek1,
.zoek2 {
    border: none;
    padding: 10px 15px;
    color: black;
    cursor: pointer;
    border-radius: 20px;
    font-family: 'Bree Serif', serif;
    width: 150px;
    text-align: center;
    box-sizing: border-box;
    background-color: #f8f4f4;
}

/* Media Query for Small Screens */
@media (max-width: 768px) {
    /* Stack navbar items vertically on small screens */
    .navbar {
        flex-direction: column;
        align-items: flex-start; /* Align to the left */
        padding: 20px;
    }

    .navbar a {
        padding: 10px;
        width: 100%; /* Make links full width on small screens */
        text-align: left;
    }

    .navbar img {
        width: 150px; /* Reduce logo size */
        margin-right: 0;
        margin-bottom: 10px;
    }

    .menu-container {
        width: 100%; /* Ensure dropdown is full width on mobile */
    }
    
    /* Dropdown Menu */
    .menu-categories {
        width: 100%; /* Dropdown expands full width */
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .navbar img {
        width: 120px; /* Further reduce logo size */
    }

    .navbar a {
        padding: 8px;
    }
}

/* Hero-sectie bovenaan */
.hero-section {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.2em;
    margin-bottom: 15px;
}

.hero-section p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.download-button {
    display: inline-block;
    background-color: #fff;
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 24px;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #f1f1f1;
}

/* Tabbed Navigation Styles */
.tabs {
    display: flex;
    border-bottom: 2px solid #007BFF;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    background-color: #f1f1f1;
    transition: background-color 0.3s ease;
}

.tab:hover {
    background-color: #e1e1e1;
}

.tab.active {
    background-color: #007BFF;
    color: #fff;
}

.tab-content {
    display: none;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.tab-content.active {
    display: block;
}

/* Container for the terms */
.voorwaarden-content {
    max-width: 900px;
    margin: 40px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 30px 20px;
}

.voorwaarden-content h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.4em;
    color: #007BFF;
}

.voorwaarden-content h3 {
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 1.2em;
    color: #0056b3;
}

.voorwaarden-content p {
    margin-bottom: 1em;
    line-height: 1.5;
}

.voorwaarden-content strong {
    color: #000;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 30px 0;
    font-family: 'Bree Serif', serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;
    gap: 20px;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    max-width: 300px;
}

.footer-left {
    text-align: left;
}

.footer-center {
    text-align: left;
}

.footer-right {
    text-align: left;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer h2,
.footer h3 {
    margin: 0;
    padding-bottom: 10px;
    font-weight: normal;
}

.footer h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.footer h3 {
    font-size: 1em;
    line-height: 1.5;
}

/* Footer logo specific styling */
.footer-logo {
    width: 150px; /* Adjust width for better fit */
    height: auto; /* Maintain aspect ratio */
    margin: 10px auto; /* Center and add spacing */
    display: block; /* Center within container */
}

/* Responsiveness */
@media (max-width: 768px) {
    .voorwaarden-content {
        margin: 20px 10px;
        padding: 20px;
    }
    .navbar nav a {
        margin-left: 10px;
    }
    .hero-section h1 {
        font-size: 1.8em;
    }
}

/* Tab Container */
.menu-container {
    position: relative;
    display: inline-block;
}

.menu-header {
    padding: 15px;
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

.menu-categories {
    display: none;
    position: absolute;
    top: 100%; /* direct onder de knop */
    left: 0;
    background-color: #fff;
    z-index: 9999;
    padding: 20px;
}

.menu-container:hover .menu-categories {
    display: block;
}

.menu-categories {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category {
    font-size: 16px;
}

.category-header {
    font-weight: bold;
    margin-bottom: 10px;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin: 5px 0;
}

.category-list li a {
    text-decoration: none;
    color: #007bff;
}

.category-list li a:hover {
    text-decoration: underline;
}
  /* Reset basisstyling */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Bree Serif', serif;
    background-color: #f9f9f9; /* zachtgrijze achtergrond */
    color: #333;
    line-height: 1.6;
  }

  /* Navigation bar */
  /* Hero-sectie bovenaan */
  .hero-section {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  .hero-section h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
  }
  .hero-section p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px auto;
  }
  .download-button {
    display: inline-block;
    background-color: #fff;
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 24px;
    transition: background-color 0.3s ease;
  }
  .download-button:hover {
    background-color: #f1f1f1;
  }

  /* Container voor de privacytekst */
  .privacy-content {
    max-width: 900px;
    margin: 40px auto;
    border-radius: 8px;
    padding: 30px 20px;
  }
  .privacy-content p, 
  .privacy-content ul, 
  .privacy-content li {
    margin-bottom: 1em;
    line-height: 1.5;
  }
  .privacy-content li {
    list-style: disc;
    margin-left: 20px;
  }
  .privacy-content strong {
    color: #000;
  }

  /* Responsiveness */
  @media (max-width: 768px) {
    .privacy-content {
      margin: 20px 10px;
      padding: 20px;
    }
    .navbar nav a {
      margin-left: 10px;
    }
    .hero-section h1 {
      font-size: 2em;
    }
  }

  /* Dropdown menu */
.menu-container {
  position: relative;
  display: inline-block;
}

.menu-header {
  padding: 15px;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

.menu-categories {
  display: none;
  position: absolute;
  top: 100%; 
  left: 0;
  background-color: #fff;
  z-index: 9999;
  padding: 20px;
}

.menu-container:hover .menu-categories {
  display: block;
}

.category {
  font-size: 16px;
  margin-right: 40px;
}

.category-header {
  font-weight: bold;
  margin-bottom: 10px;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin: 5px 0;
}

.category-list li a {
  text-decoration: none;
  color: #007bff;
}

.category-list li a:hover {
  text-decoration: underline;
}

.privacy-container {
    max-width: 900px;
    margin: 80px auto 40px auto; /* rekening houden met vaste navbar */
    padding: 30px;
    font-family: 'Bree Serif', serif;
    background-color: #fff;
    border-radius: 8px;
    line-height: 1.6;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.privacy-container h2 {
    font-size: 1.8em;
    color: #007BFF;
    margin-bottom: 15px;
}

.privacy-container h3 {
    font-size: 1.4em;
    color: #0056b3;
    margin-top: 20px;
    margin-bottom: 10px;
}

.privacy-container a {
    color: #007BFF;
    text-decoration: none;
}

.privacy-container a:hover {
    text-decoration: underline;
}
