html, body {
    height: 100%; /* Zorgt ervoor dat de body de volledige hoogte van het venster beslaat */
    margin: 0; /* Verwijdert standaard marges */
    font-family: 'Baloo', sans-serif;
    overflow-x: hidden; /* Verhindert horizontale scrollbars */
    display: flex;
    flex-direction: column; /* Maakt een flexbox layout voor de body */
}

/* Roze balk gedraaid */
.gedraaide-balk {
    width: 50%;
    height: 50px;
    background-color: rgb(255, 0, 208);
    position: absolute;
    top: 0;
    left: 50px; /* Blijft gelijk */
    transform: rotate(90deg);
    transform-origin: left top;
}

/* Roze balk bovenaan */
.roze-balk {
    width: 100%;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(255, 0, 208);
}

/* Blauwe balk */
.blauwe-balk {
    width: 100%;
    height: 50px;
    position: absolute;
    top: 120px; /* Blijft gelijk */
    left: 50px; /* Blijft gelijk */
    background-color: aqua;
    z-index: 0;
}

/* Hamburger menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 30px;
    position: absolute;
    top: 10px; /* Blijft gelijk */
    left: 10px; /* Blijft gelijk */
    z-index: 7;
    cursor: pointer;
}

/* Hamburger menu streepjes */
.streepje {
    height: 5px;
    background-color: #ffffff;
    border-radius: 2px;
}

/* Logo container */
.logo-container {
    position: absolute;
    top: 50px; /* Blijft gelijk */
    right: 0px; /* Blijft gelijk */
    z-index: 2;
}

.logo-container img {
    max-width: 70px; /* Afbeeldingsgrootte voor het logo */
    height: auto;
}

/* Winkelwagen */
.winkelwagen {
    position: absolute;
    top: 130px; /* Blijft gelijk */
    right: 50px; /* Blijft gelijk */
    z-index: 2;
}

.winkelwagen img {
    max-width: 50px; /* Afbeeldingsgrootte voor winkelwagen */
    height: auto;
}

/* Slogan */
.slogan {
    position: absolute;
    top: 65px; /* Blijft gelijk */
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px; /* Blijft gelijk */
    font-weight: bold;
    color: black;
    text-align: center;
    z-index: 5;
}

/* Gratis verzending tekst */
.verzending {
    position: absolute;
    top: 122px; /* Blijft gelijk */
    left: 60px; /* Blijft gelijk */
    font-size: 30px; /* Blijft gelijk */
    font-weight: bold;
    color: black;
    text-align: left;
    z-index: 5;
}

/* Alle producten titel */
.alle-producten {
    position: absolute;
    top: 200px; /* Blijft gelijk */
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px; /* Blijft gelijk */
    font-weight: bold;
    color: black;
    text-align: center;
    z-index: 5;
}

/* Producten sectie */
.producten {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 320px 0 0 0; /* Blijft gelijk */
    flex: 1; /* Laat de productensectie de beschikbare ruimte innemen */
}

/* Individueel product */
.product {
    background: white;
    border: 1px solid #ddd;
    padding: 20px;
    width: 250px; /* Blijft gelijk */
    text-align: center;
    margin: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s; /* Voor een kleine hover effect */
}

.product:hover {
    transform: scale(1.05); /* Vergroot de productkaart bij hover */
}

.product img {
    width: 150px; /* Blijft gelijk */
    height: auto;
}

.product h3 {
    font-size: 22px; /* Blijft gelijk */
    margin: 10px 0;
}

.product p {
    font-size: 18px; /* Blijft gelijk */
    margin: 5px 0;
}

.product button {
    background-color: #ff00d0;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s; /* Voor een hover effect op de knop */
}

.product button:hover {
    background-color: #e600b3; /* Donkerder roze bij hover */
}

/* Footer */
.footer {
    background: #00bfff;
    padding: 20px;
    min-height: 100px; /* Blijft gelijk */
    text-align: center;
    font-size: 16px; /* Blijft gelijk */
    color: black;
    margin-top: auto; /* Zorgt ervoor dat de footer naar beneden wordt geduwd */
}
