@font-face {
    font-family: delux;
    src: url(/fonts/Deluxe.ttf);
}
.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
    padding: 10px;
}

/* استایل معمولی نویگیشن */
.navigation {
    padding: 10px;
    top: 0;
    position: sticky;
    z-index: 1000;
    background-color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.navigation a {
    color: white;
    padding: 10px;
    font-family: delux;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
}

.navigation a:hover {
    background-color: rgb(29, 29, 29);
    border-radius: 4px;
    transition: all 0.1s ease;
}

/* ریسپانسیو برای تبلت و موبایل */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: black;
        padding: 20px 0;
        gap: 15px;
        text-align: center;
    }

    .nav-links.show {
        display: flex;
    }

    .navigation a {
        display: block;
        padding: 12px;
    }
}
