body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    flex-direction: column;
    background-color: #f4f4f4;
    color: #333;
}
/* Stijlen voor <p> */
p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300; /* Light variant */
    font-size: 18px;
    color: #182838;
    line-height: 1.5; /* Letterhoogte (regelafstand) */
}

/* Stijlen voor <h1> */
h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 900; /* Black variant */
    font-size: 25px;
    color: #182838; /* Donkerblauw */
}

/* Stijlen voor <h2> */
h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700; /* Bold variant */
    font-size: 20px;
    color: #182838;
}

/* Stijlen voor <h3> */
h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 200; /* Thin variant */
    font-size: 32px;
    color: #FF6600;
}
/* Stijlen voor <h4> */
h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300; /* bold variant */
    font-size: 40px;
    color: white;
}

/* Stijlen voor <h5> */
h5 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300; /* bold variant */
    font-size: 16px;
    color: #FF6600;
}
header {
    text-align: center;
    background-color: #d8e3f1;
    padding: 10px;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

header p {
    margin: 5px 0 0;
    color: #555;
}

.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.categories-dropdown {
    display: none; /* Verberg dropdown op desktop */
}

.search-container {
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

#search-form {
    display: flex;
    width: 100%;
    max-width: 600px;
}

#search-field {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

#search-button {
    padding: 10px;
    border: 1px solid #ccc;
    border-left: none;
    border-radius: 0 4px 4px 0;
    background-color: #FF6000;
    color: white;
    cursor: pointer;
}

#search-button:hover {
    background-color: #e65500;
}

.container {
    display: grid;
    grid-template-columns: 300px 1fr 200px; /* Eerste kolom 300px, middelste flexibel, laatste kolom 200px */
    gap: 20px;
    background-color: white;
    padding: 20px;
    box-sizing: border-box;
}

.categories {
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ddd;
}

.content {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolommen in het midden */
    gap: 20px;
}

.content-item {
    background-color: white;
    padding: 15px;
    border: 1px solid #ddd;
    text-align: center;
}

.product-image {
    width: 100%;
    max-width: 300px;
    max-height: 500px;
    object-fit: contain;
    margin: 0 auto;
}

.ads {
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
    position: sticky;
    top: 0;
}
/* Footer  styling */
    Footer {
    background-color: #d8e3f1;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

   .footer-bottom p {
   margin: 0;
   font-size: 14px;
}

/* Responsiviteit voor kleinere schermen */
@media (max-width: 768px) {
    .footer-container {
    flex-direction: column;
    text-align: center;
  }

    .footer-section {
    margin-bottom: 30px;
  }

@media (max-width: 1024px) {
    .content {
        grid-template-columns: repeat(2, 1fr); /* Bij kleinere schermen: 2 kolommen */
    }
}

@media (max-width: 768px) {
    .content {
        grid-template-columns: 1fr; /* Bij nog kleinere schermen: 1 kolom */
    }

    .container {
        grid-template-columns: 1fr; /* Alle kolommen worden onder elkaar */
    }

    .categories-dropdown {
        display: block; /* Toon dropdown op mobiel */
    }

    .categories {
        display: none; /* Verberg sidebar op mobiel */
    }


}