/* Achtergrondfoto */
body {
    margin: 0;
    padding: 0;
    background: url("../afbeeldingen/Logo_website.jpg") no-repeat center center fixed;
    background-size: cover;
    font-family: 'League Spartan', sans-serif;
    color: #ffffff;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Donkere overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}

/* Content in het midden */
.center-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Logo */
.logo img {
    width: 260px;
    max-width: 80%;
    margin-bottom: 20px;
}

/* Titels */
h1 {
    font-size: 3rem;
    margin: 10px 0;
}

p {
    font-size: 1.3rem;
    max-width: 600px;
}

/* Footer-strook onderaan */
.footer {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.85);
    padding: 20px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
}

/* Links */
a {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* 📱 Mobielvriendelijk */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    p {
        font-size: 1.1rem;
    }

    .logo img {
        width: 200px;
    }
}
