/* === GLOBALE RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #e60014;
    --bg-dark: #0d0d0d;
    --bg-card: rgba(30, 30, 30, 0.85);
    --text-light: #fff;
    --border-light: #333;
    --bg-header: #000;
    --accent-blue: #1e90ff;
    --accent-green: #32cd32;
    --accent-purple: #9370db;
    --accent-orange: #ffa500;
    --accent-pink: #ff69b4;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    padding-top: 80px;
    padding-bottom: 40px;
    min-height: 100vh;
}

/* === HEADER === */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    padding: 0 24px;
    z-index: 10000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
    border-bottom: 2px solid var(--primary-red);
}

.topbar a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    height: 100%;
    padding: 0;
}

.topbar a .logo {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    margin-right: 16px;
    transition: transform 0.3s ease;
}

.topbar a:hover .logo {
    transform: scale(1.05);
}

.topbar h1 {
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* === BANNER === */
.banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    margin: 20px auto 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.banner:hover img {
    transform: scale(1.03);
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    text-align: center;
}

.banner-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

.banner-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.banner-content .cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.banner-content .cta-button:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

/* === CATEGORIE MENU === */
.category-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 auto 30px;
    max-width: 1200px;
    padding: 0 24px;
}

.category-menu a {
    display: inline-block;
    padding: 10px 20px;
    background: var(--bg-card);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.category-menu a:hover,
.category-menu a.active {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

/* === ZOEKBALK === */
.zoekbalk {
    max-width: 700px;
    height: 56px;
    margin: 0 auto 48px;
    background: rgba(26, 26, 26, 0.7);
    border-radius: 32px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    border: 2px solid #333;
    transition: all 0.35s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.zoekbalk::before {
    content: "🔍";
    font-size: 20px;
    margin-right: 12px;
    color: #aaa;
    transition: color 0.3s;
}

.zoekbalk:focus-within {
    border-color: var(--primary-red);
    box-shadow: 0 4px 20px rgba(230, 0, 20, 0.3);
    background: rgba(30, 30, 30, 0.9);
}

.zoekbalk:focus-within::before {
    color: var(--primary-red);
}

.zoekbalk input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 18px;
    padding: 12px 0;
    caret-color: var(--primary-red);
}

.zoekbalk input::placeholder {
    color: #888;
    opacity: 1;
    transition: color 0.3s;
}

.zoekbalk:focus-within input::placeholder {
    color: #aaa;
}

/* === GRID INDEX === */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.item {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s;
}

.item:hover {
    transform: translateY(-6px);
}

.foto {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    background: #111;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
}

.foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.item:hover .foto img {
    transform: scale(1.05);
}

.beschrijving {
    margin-top: 14px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* === MOST POPULAR === */
.most-popular {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 24px;
}

.most-popular h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.most-popular h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.popular-item {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: inherit;
    display: block;
}

.popular-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-red);
    box-shadow: 0 6px 16px rgba(230, 0, 20, 0.25);
}

.popular-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: transform 0.5s ease;
}

.popular-item:hover img {
    transform: scale(1.03);
}

.popular-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.7);
}

.popular-item p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.4;
}

/* === ALINEA BALKJES (voor detailpagina's) === */
.news-alinea {
    background: rgba(40, 40, 40, 0.6);
    border-left: 4px solid var(--primary-red);
    padding: 16px 20px;
    margin: 16px 0;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.news-alinea:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(230, 0, 20, 0.15);
}

.news-alinea p {
    margin: 0;
    line-height: 1.6;
    color: #fff;
    font-size: 16px;
}

/* === KLEURRIJKE ALINEA-BALKJES === */
.news-alinea--red {
    border-left-color: var(--primary-red);
    background: rgba(230, 0, 20, 0.2);
}

.news-alinea--blue {
    border-left-color: var(--accent-blue);
    background: rgba(30, 144, 255, 0.2);
}

.news-alinea--green {
    border-left-color: var(--accent-green);
    background: rgba(50, 205, 50, 0.2);
}

.news-alinea--purple {
    border-left-color: var(--accent-purple);
    background: rgba(147, 112, 219, 0.2);
}

.news-alinea--orange {
    border-left-color: var(--accent-orange);
    background: rgba(255, 165, 0, 0.2);
}

.news-alinea--pink {
    border-left-color: var(--accent-pink);
    background: rgba(255, 105, 180, 0.2);
}

/* === MOBILE === */
@media (max-width: 768px) {
    .topbar {
        padding: 0 16px;
        height: 60px;
    }

    .topbar h1 {
        font-size: 22px;
    }

    .container {
        padding: 0 16px;
    }

    .banner {
        height: 200px;
    }

    .banner-content h2 {
        font-size: 24px;
    }

    .category-menu {
        flex-direction: column;
        align-items: center;
    }

    .zoekbalk {
        margin-bottom: 32px;
        height: 52px;
        padding: 0 20px;
    }

    .zoekbalk input {
        font-size: 16px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .popular-grid {
        grid-template-columns: 1fr;
    }
}/* === OVER ONS LINK NAAST LOGO === */
.over-ons-link {
    margin-left: 24px;
    padding: 8px 16px;
    background: var(--bg-card);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.over-ons-link:hover {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    transform: translateY(-2px);
}/* === INTRO ANIMATIE === */
#intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    pointer-events: none;
    transition: opacity 1s ease 1.8s;
}

#intro-overlay.hidden {
    opacity: 0;
}

.intro-logo-container {
    position: relative;
    animation: logoMove 1.8s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

.intro-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.3));
    animation: logoPulse 2s ease-in-out infinite;
}

/* Tekst die later verschijnt */
.intro-text {
    position: absolute;
    left: 110px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    color: white;
    animation: textReveal 0.8s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
    animation-delay: 1.2s;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

/* ANIMATIES */
@keyframes logoMove {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: translateX(-45vw) scale(0.75);
    }
}

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6)); }
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(-20px);
        letter-spacing: -2px;
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
        letter-spacing: 1px;
    }
}