@font-face {
    font-family: 'SF Mono';
    src: url('fonts/SFMono-Regular.otf') format('opentype');
    font-weight: normal;
}

@font-face {
    font-family: 'SF Mono';
    src: url('fonts/SFMono-Bold.otf') format('opentype');
    font-weight: bold;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

/* Floating Navigation Bar */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'SF Mono', monospace;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #aaa;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .floating-nav {
        gap: 15px;
        padding: 12px 20px;
        top: 10px;
    }

    .nav-logo {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-link {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .floating-nav {
        gap: 10px;
        padding: 10px 12px;
        top: 10px;
        left: 10px;
        right: 10px;
        flex-direction: column;
        justify-content: center;
    }

    .nav-logo {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .nav-links {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .nav-link {
        font-size: 0.7rem;
    }
}

/* Het geheim voor het effect: clip-path knipt de vaststaande video af */
.video-window {
    position: relative;
    width: 100%;
    height: 100vh;
    clip-path: inset(0); 
}

/* Video staat nu ALTIJD stil ten opzichte van je beeldscherm */
.video-window video {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}

/* Overlay vastzetten zodat deze meewerkt met de video */
.overlay {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    text-align: center;
    width: 100%;
}

.hero-title.reveal {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 30px));
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.hero-title.reveal.active {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.hero-title h1 {
    font-size: 75px;
    letter-spacing: 25px;
    text-transform: uppercase;
    font-family: 'SF Mono', monospace;
}
/* Zwarte balken die over het "venster" glijden */
.info-bar {
    position: relative;
    z-index: 10;
    background-color: #050505; /* De basiskleur van je balk */
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 10vh 10vw;
    /* Verwijder eventueel de borders als je een naadloze gradient wilt */
    border-top: none;
    border-bottom: none;
}

/* De gradient aan de bovenkant: zeer kort en krachtig */
.info-bar::before {
    content: '';
    position: absolute;
    top: -10px; 
    left: 0;
    right: 0;
    height: 10px; 
    background: linear-gradient(to bottom, transparent, #050505);
    pointer-events: none;
}

/* De gradient aan de onderkant: zeer kort en krachtig */
.info-bar::after {
    content: '';
    position: absolute;
    bottom: -10px; 
    left: 0;
    right: 0;
    height: 10px; 
    background: linear-gradient(to top, transparent, #050505);
    pointer-events: none;
}

.footer-bar {
    min-height: 100vh;
    border-bottom: none;
}

.content {
    max-width: 900px;
}

.content h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #888;
}

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animatie */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design untuk Mobile */
@media (max-width: 768px) {
    .hero-title h1 {
        font-size: clamp(3rem, 12vw, 5rem);
        letter-spacing: 8px;
    }

    .hero-title p {
        font-size: clamp(1rem, 4vw, 1.5rem);
        margin-top: 15px;
    }

    .info-bar {
        min-height: auto;
        padding: 8vh 5vw;
    }

    .content h2 {
        font-size: clamp(1.5rem, 6vw, 3rem);
        margin-bottom: 15px;
    }

    .content p {
        font-size: clamp(0.95rem, 2.5vw, 1.2rem);
        line-height: 1.5;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .footer-bar {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .hero-title h1 {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

    .hero-title p {
        font-size: 1rem;
    }

    .info-bar {
        padding: 6vh 4vw;
    }

    .content h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}