/* Homepage - Full-screen video with centered logo and links */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    overflow: hidden;
    background: #000;
}


/* Full-screen video background */
#bgVideo {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
}

/* Centered content container */
.content-center {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    z-index: 1;
}

/* Logo styling */
.logo {
    margin-bottom: 3rem;
    transform: rotate(-10deg);
    animation: stickerSlap 0.3s ease-out;
}

.logo img {
    height: 140px;
    width: auto;
    display: block;
}

/* Sticker slap animation */
@keyframes stickerSlap {
    0% {
        opacity: 0;
        transform: scale(5) rotate(20deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(-10deg);
    }
}

/* Navigation links */
.home-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 600px;
    max-width: 90%;
}




/* Responsive */
@media (max-width: 768px) {
    .logo img {
        height: 150px;
    }

    .logo {
        margin-bottom: 2rem;
    }

    .home-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}
