* {
    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;
}

.contact-container {
    max-width: 800px;
    margin: 80px auto 40px auto;  /* 80px om niet onder de fixed navbar te vallen, 40px marge onder */
    padding: 20px;
    background-color: #fff;       /* Of een andere achtergrondkleur */
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Bree Serif', serif;
  }
  
  /* Koptekst in container */
  .contact-container h1 {
    margin-top: 0;
  }
  
  .contact-container p {
    margin-bottom: 1em;
    line-height: 1.6;
  }
  
  /* Het formulier zelf */
  #contactForm {
    display: flex;
    flex-direction: column;
    gap: 15px; /* ruimte tussen formulier-elementen */
    margin-top: 20px;
  }
  
  /* Labels boven de velden */
  #contactForm label {
    font-weight: 600;
  }
  
  /* Invoervelden en select */
  #contactForm input[type="text"],
  #contactForm input[type="email"],
  #contactForm input[type="tel"],
  #contactForm select,
  #contactForm textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Bree Serif', serif;
    font-size: 1rem;
  }
  
  /* Focus-styling bij doorklik in invoervelden */
  #contactForm input[type="text"]:focus,
  #contactForm input[type="email"]:focus,
  #contactForm input[type="tel"]:focus,
  #contactForm select:focus,
  #contactForm textarea:focus {
    border-color: #007bff; /* of een andere accentkleur */
    outline: none;
  }
  
  /* Checkbox + label in één rij */
  .akkoord-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0;
  }
  
  .akkoord-container input[type="checkbox"] {
    margin-top: 4px; /* iets omlaag, zodat het past bij de label-tekst */
  }
  
  /* Cursieve tekst van de label */
  .akkoord-container em {
    font-style: italic;
    font-size: 0.9rem;
  }
  
  /* De verzendknop */
  #contactForm button[type="submit"] {
    padding: 12px 20px;
    font-family: 'Bree Serif', serif;
    border: none;
    border-radius: 24px;
    background-color: #007bff; /* of je eigen thema-kleur */
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    width: 200px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
  }
  
  #contactForm button[type="submit"]:hover {
    background-color: #0056b3; /* iets donkerder */
  }
  
  /* Extra info (telefoon, mail, adres) */
  .extra-info {
    margin-top: 30px;
    line-height: 1.5;
  }
  
  /* Responsiveness - pas naar wens aan */
  @media (max-width: 600px) {
    .contact-container {
      margin: 60px 10px;
      padding: 15px;
    }
  }

  .kopje {
    color: #007bff;
  }