/* ------------------------------ */
/* BASIS */
/* ------------------------------ */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
    background: #000;
    color: #fff;
}

/* ------------------------------ */
/* NAVIGATIE */
/* ------------------------------ */

nav {
    display: flex;
    justify-content: space-between;
    /* BELANGRIJK: menu naast logo */
    align-items: center;
    padding: 15px 20px;
    background: #111;
}

nav .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

nav .logo img {
    height: 40px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    /* BELANGRIJK: horizontaal menu */
    gap: 20px;
    padding: 0;
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* Hamburger knop (mobiel) */
.hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #e0b000;
    cursor: pointer;
}

/* ------------------------------ */
/* HERO */
/* ------------------------------ */

.hero {
    padding: 40px 20px;
    background: #222;
}

.tagline {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* ------------------------------ */
/* CTA BUTTONS */
/* ------------------------------ */

.cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.btn {
    padding: 10px 20px;
    background: #e0b000;
    color: #000;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
}

.btn-outline {
    background: transparent;
    border: 2px solid #e0b000;
    color: #e0b000;
}

/* ------------------------------ */
/* DIENSTEN / KAARTEN */
/* ------------------------------ */

.grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    padding: 15px;
    border: 1px solid #444;
    border-radius: 6px;
    background: #111;
    color: #fff;
}

/* ------------------------------ */
/* KARAOKE */
/* ------------------------------ */

.karaoke-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.set {
    max-width: 600px;
    text-align: center;
    border: 1px solid #444;
    padding: 15px;
    border-radius: 8px;
    background: #111;
    color: #fff;
}

.price-badge {
    display: inline-block;
    background: #e0b000;
    color: #000;
    padding: 5px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* ------------------------------ */
/* MEDIA */
/* ------------------------------ */

.media-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.media-grid .row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.media-grid img {
    max-width: 35%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 3px 6px rgba(255, 255, 255, 0.3);
}

/* ------------------------------ */
/* RESPONSIVE MEDIA */
/* ------------------------------ */

@media (max-width: 768px) {
    .media-grid .row {
        flex-direction: column;
        align-items: center;
    }

    .media-grid img {
        max-width: 80%;
    }
}

/* ------------------------------ */
/* FORMULIER */
/* ------------------------------ */

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

form input,
form textarea {
    width: 80%;
    max-width: 400px;
    padding: 8px;
    border: 1px solid #444;
    border-radius: 4px;
    background: #222;
    color: #fff;
}

/* ------------------------------ */
/* COOKIE BANNER */
/* ------------------------------ */

#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #111;
    padding: 15px;
    text-align: center;
    border-top: 1px solid #444;
    z-index: 9999;
    color: #fff;
}

/* ------------------------------ */
/* SCROLL TO TOP */
/* ------------------------------ */

#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #e0b000;
    color: #000;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.3);
    transition: opacity 0.3s ease;
}

#scrollTopBtn:hover {
    background-color: #c99a00;
}

/* ------------------------------ */
/* GLOW EFFECT */
/* ------------------------------ */

@keyframes glowPulse {
    0% {
        text-shadow: 0 0 8px rgba(224, 176, 0, 0.7),
            0 0 15px rgba(224, 176, 0, 0.5),
            0 0 25px rgba(224, 176, 0, 0.3);
    }

    50% {
        text-shadow: 0 0 12px rgba(224, 176, 0, 1),
            0 0 20px rgba(224, 176, 0, 0.8),
            0 0 30px rgba(224, 176, 0, 0.6);
    }

    100% {
        text-shadow: 0 0 8px rgba(224, 176, 0, 0.7),
            0 0 15px rgba(224, 176, 0, 0.5),
            0 0 25px rgba(224, 176, 0, 0.3);
    }
}

h1,
h2,
h3 {
    animation: glowPulse 3s infinite;
}

/* ------------------------------ */
/* MOBIEL MENU */
/* ------------------------------ */

@media (max-width: 768px) {

    .hamburger {
        display: block;
        margin-left: auto;
        margin-right: 20px;
    }

    nav ul {
        display: none;
        /* VERBORGEN OP MOBIEL */
        flex-direction: column;
        width: 100%;
        background: #111;
        padding: 10px 0;
    }

    nav ul.show {
        display: flex;
        /* TONEN NA KLIK */
    }

    nav ul li {
        margin: 10px 0;
    }
}