* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, sans-serif;
}

body {
    background: #000;
    color: #fff;
}
html {
    scroll-behavior: smooth;
}
/* NAVBAR */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(2,6,23,0.9);
    z-index: 1000;
}

/* LEFT */
.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-left img {
    width: 42px;           
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
}

/* LINKS (DESKTOP) */
nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

/* LINKS */
nav a {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
}

/* HAMBURGER */
.menu-toggle {
    display: none;      
    font-size: 28px;
    cursor: pointer;
    color: #e5e7eb;
}

/* VIDEO SECTIONS */
.video-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-section video {
    position: absolute;
    top: 0;
    left: 0;    
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.overlay h1 {
    font-size: 3rem;
}

.overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.overlay p, .overlay li {
    font-size: 1.1rem;
    line-height: 1.6;
}

.overlay ul {
    list-style: none;
}

.btn {
    margin-top: 20px;
    padding: 10px 22px;
    background: #38bdf8;
    color: black;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 20px;
    background: black;
    opacity: 0.6;
}
.video-section video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4s;
    animation: videoFade 1s ease forwards;
}

@keyframes videoFade {
    to {
        opacity: 1;
    }
}
.hero video {
    opacity: 0;
    transition: opacity 0.4s ease;
}
.hero video.ready {
    opacity: 1;
}
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    nav ul {
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(2,6,23,0.98);
        flex-direction: column;
        width: 100%;
        text-align: center;
        display: none;
        
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        padding: 15px 0;
    }

    .menu-toggle {
        display: block;
    }
}



