/* Algemene Stijlen */
body {
    background-color: #000000; /* Zwarte achtergrond */
    color: #ff00ff; /* Neon roze tekst */
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden; /* Voorkom horizontale scrollbar door scanlines */
    position: relative; /* Nodig voor de scanlines overlay */
}

/* Scanlines Overlay */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Zorgt ervoor dat je nog steeds kunt klikken op elementen eronder */
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%,
        rgba(0, 0, 0, 0.25) 50%
    );
    background-size: 100% 4px; /* Dikte van de lijnen */
    z-index: 1000; /* Zorg dat het bovenop andere content ligt */
    opacity: 0.2; /* Subtiel effect */
}


/* Header Stijlen */
header {
    background-color: #1a001a; /* Donker paars */
    padding: 20px 0;
    text-align: center;
    border-bottom: 3px solid #ff00ff; /* Neon roze onderlijn */
    box-shadow: 0 0 15px #ff00ff, 0 0 25px #ff00ff, inset 0 0 10px #1a001a;
    position: relative;
    z-index: 10; /* Zorg dat header boven scanlines komt indien nodig */
}

header h1 {
    margin: 0;
    font-family: 'Audiowide', cursive;
    font-size: 3em;
    color: #ffffff; /* Wit voor contrast */
    text-shadow:
        0 0 5px #ff00ff,
        0 0 10px #ff00ff,
        0 0 15px #ff00ff,
        0 0 20px #e60073,
        0 0 35px #e60073,
        0 0 40px #e60073,
        0 0 50px #e60073,
        0 0 75px #e60073;
    animation: flicker 1.5s infinite alternate, glow 2s infinite ease-in-out;
}

/* Hoofdinhoud Stijlen */
main {
    flex-grow: 1; /* Zorgt ervoor dat de main content de beschikbare ruimte vult */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    z-index: 5; /* Onder de header, boven de body achtergrond */
}

.hero {
    background-color: rgba(10, 0, 10, 0.6); /* Zeer donkerpaars, semi-transparant */
    padding: 30px 40px;
    border-radius: 10px;
    border: 2px solid #ff00ff;
    box-shadow: 0 0 20px #ff00ff, inset 0 0 15px rgba(255, 0, 255, 0.3);
    text-align: center;
    max-width: 800px; /* Maximale breedte voor de tekstcontainer */
    margin: 0 auto;
}

.hero h2 {
    font-family: 'Audiowide', cursive;
    font-size: 2.5em;
    color: #00ffff; /* Neon cyaan */
    margin-bottom: 20px;
    text-shadow:
        0 0 3px #00ffff,
        0 0 6px #00ffff,
        0 0 10px #00ffff;
}

.hero p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #f0f0f0; /* Lichtgrijs/wit voor leesbaarheid */
    text-shadow: 0 0 3px rgba(255, 0, 255, 0.5);
}

.hero a {
    color: #00ffff; /* Neon cyaan */
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 5px #00ffff;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hero a:hover,
.hero a:focus {
    color: #ffffff;
    text-shadow:
        0 0 5px #ffffff,
        0 0 10px #00ffff,
        0 0 15px #00ffff;
}

/* Optionele Footer Stijlen */
/*
footer {
    background-color: #1a001a;
    color: #ff00ff;
    text-align: center;
    padding: 15px 0;
    border-top: 2px solid #ff00ff;
    box-shadow: 0 0 10px #ff00ff;
    position: relative;
    z-index: 10;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}
*/

/* Animatie voor neon flikkering */
@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow:
            0 0 4px #ff00ff,
            0 0 10px #ff00ff,
            0 0 18px #ff00ff,
            0 0 38px #e60073,
            0 0 73px #e60073;
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

/* Animatie voor tekst gloed */
@keyframes glow {
    0% {
        text-shadow:
            0 0 5px #ff00ff,
            0 0 10px #ff00ff,
            0 0 15px #ff00ff,
            0 0 20px #e60073;
    }
    50% {
        text-shadow:
            0 0 10px #ff00ff,
            0 0 20px #ff00ff,
            0 0 30px #e60073,
            0 0 40px #e60073;
    }
    100% {
        text-shadow:
            0 0 5px #ff00ff,
            0 0 10px #ff00ff,
            0 0 15px #ff00ff,
            0 0 20px #e60073;
    }
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2em;
    }

    .hero h2 {
        font-size: 1.8em;
    }

    .hero {
        padding: 20px;
        margin: 20px; /* Voeg wat marge toe op kleinere schermen */
    }

    .hero p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8em;
    }

    .hero h2 {
        font-size: 1.5em;
    }

    .hero p {
        font-size: 0.9em;
    }
}