/* -----------------------------------------------------
   Bestaande code (voorbeeld, zoals je in je vraag liet zien)
   ----------------------------------------------------- */

/* Navigation bar */
/* Main Navbar Styling */
.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: 200px;
    margin-right: 20px;
}

.navbar a {
    color: black;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
}

.navbar a:hover {
    background-color: #dbdada;
    border-radius: 5px;
}

/* 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;
    }
}

  
  /* -----------------------------------------------------
     Buttons
     ----------------------------------------------------- */
  .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;
  }
  
  /* -----------------------------------------------------
     Background belly (alleen op de Home-pagina)
     ----------------------------------------------------- */
  .belly {
    width: 100%;
    min-height: 100vh;
    background-image: url("images/PHOTO-2024-11-06-16-21-27.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px; /* Voor de vaste navbar */
  }
  
  .container {
    max-width: 600px;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    position: relative; 
    margin-right: 950px;
    margin-bottom: 100px;
  }
  
  .container2 {
    color: #000;
    max-width: 600px;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .image-row {
    width: 100%;
    height: 200px;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    box-sizing: border-box;
  }
  
  /* -----------------------------------------------------
     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 */
}

  
