/* Reset standaard marges en paddings */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Algemene stijl voor body */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    overflow-x: hidden;
}

/* Navigatiebalk stijl */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: #2c3f38;
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Logo en zoekbalk stijl */
.logo-search {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    height: 30px;
}

.search-bar {
    padding: 8px 12px;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 250px;
}

.search-bar::placeholder {
    color: #aaa;
}

/* Hoofdmenu stijl */
.main-menu {
    list-style: none;
    display: flex;
    flex: 1;
    justify-content: center;
    gap: 30px;
    margin: 0 20px;
}

.main-menu li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.main-menu li a:hover {
    color: #00aaff;
}

/* Account en Winkelmand menu stijl */
.account-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.account-menu li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.account-menu li a:hover {
    color: #00aaff;
}

.account-menu img {
    height: 18px;
    width: 18px;
}

.cart-count {
    background-color: #ff0000;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.8rem;
    position: relative;
    top: -10px;
    left: -5px;
}

/* Hero sectie aangepast voor een lagere hoogte */
.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    /* Verkleind naar 70% van de viewport-hoogte */
    overflow: hidden;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 1;
    padding: 0 20px;
}

.hero-overlay h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    padding: 12px 24px;
    background-color: #00aaff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #0077cc;
}

/* Thema kaarten onderaan */
.themes {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 10%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.theme-card {
    width: 220px;
    text-align: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.3s;
}

.theme-card img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
}

.theme-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-top: 10px;
}

.theme-card:hover {
    transform: scale(1.05);
}

/* Responsief ontwerp */
@media screen and (max-width: 768px) {
    .navbar nav {
        flex-direction: column;
        align-items: center;
    }

    .main-menu,
    .account-menu {
        flex-direction: column;
        align-items: center;
    }

    .themes {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .hero-overlay h2 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }
}