﻿html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

.video-background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

    .video-background-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

#slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    pointer-events: none;
}

.logo-wrapper {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1001;
    pointer-events: auto;
}

    .logo-wrapper img {
        width: 120px;
        height: auto;
        margin-bottom: 10px;
    }

.menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 1001;
    pointer-events: auto;
}

.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 25%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1000;
    pointer-events: none;
}

    .side-menu.active {
        transform: translateX(0);
        pointer-events: auto;
    }

    .side-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

        .side-menu ul li {
            margin: 15px 0;
        }

            .side-menu ul li a {
                color: white;
                text-decoration: none;
                font-size: 20px;
            }

                .side-menu ul li a:hover {
                    color: #ffd700;
                }

.menu-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

@media (max-width: 768px) {
    .side-menu {
        width: 100% !important;
    }

    .logo-wrapper img {
        width: 100px;
    }

    .menu-toggle {
        font-size: 22px;
    }
}
