/* ===================== RESET & BASIS ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    color: #fff;
}

/* ===================== VIDEO BACKGROUND ===================== */
.video-bg-layout {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Fullscreen video */
.fullscreen-video-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -2; /* Achter content */
}

.fullscreen-video-wrap video {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* Altijd scherm vullen, snijdt af waar nodig */
    transform: translate(-50%, -50%);
    z-index: -2;
}

/* Semi-transparante overlay om video leesbaar te maken */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Pas aan voor donkerder/lichtere overlay */
    z-index: -1;
}

/* ===================== HEADER ===================== */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.25); /* Transparant */
    backdrop-filter: blur(10px);
    z-index: 10;
}

.main-nav .logo img {
    height: 50px;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-container ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-container ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-container ul li a:hover {
    color: #ffd700;
}

/* Hamburger menu (voor mobiel) */
.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

#nav-list.show {
    display: block !important;
}

.lang-switch-fixed {
    display: flex;
    gap: 0.5rem;
}

/* ===================== MAIN CONTENT ===================== */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem 6rem 2rem; /* Zorg dat header + footer ruimte hebben */
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 2rem 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    text-align: center;
    color: #fff;
    max-width: 500px;
    width: 100%;
}

.glass-card h1 {
    font-size: 2rem;
}

/* Algemene content styling */
.content-wrapper {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
    color: #fff;
    text-align: center;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

.content-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.content-wrapper ul {
    list-style: disc;
    padding-left: 1.5rem;
    text-align: left;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.content-wrapper ul li {
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #ffd700;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #e6c200;
}

/* Kleine aanpassingen mobiel */
@media (max-width: 768px) {
    .content-wrapper h2 {
        font-size: 1.5rem;
    }
    .content-wrapper p, .content-wrapper ul li {
        font-size: 1rem;
    }
}


/* ===================== FOOTERS ===================== */
/* Desktop footer */
.footer-desktop {
    display: block;
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    text-align: center;
}

.footer-desktop a {
    color: #fff;
    text-decoration: underline;
}

/* Mobile footer */
.footer-mobile {
    display: none;
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    padding: 1rem;
    text-align: center;
}

.footer-mobile a {
    color: #fff;
    text-decoration: underline;
}

/* Social icons */
.socials_voetnoot {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.socialvoet {
    width: 25px;
    height: 25px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    /* Hamburger menu tonen en navigatie verbergen */
    .nav-container ul {
        display: none;
        flex-direction: column;
        background: rgba(0,0,0,0.4);
        position: absolute;
        top: 100%;
        right: 0;
        width: 200px;
        padding: 1rem;
        border-radius: 0 0 10px 10px;
    }

    .hamburger {
        display: block;
    }

    main {
        padding: 8rem 1rem 6rem 1rem;
    }

    .glass-card {
        padding: 1.5rem 2rem;
    }

    .glass-card h1 {
        font-size: 1.5rem;
    }

    /* Footer switch */
    .footer-desktop {
        display: none;
    }
    .footer-mobile {
        display: block;
    }
}
