@font-face {
    font-family: 'Reospec';
    src: url('../ASSETS/font/Reospec.otp') format('opentype');
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {

    /* Hide default nav links */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
        text-align: center;
        padding: 10px 0;
        gap: 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        font-size: 20px;
        padding: 10px;
        display: block;
    }

    .logo-container {
        font-family: "Reospec", sans-serif;
    }

    .login-btn {
        display: block;
        width: 80%;
        margin: 10px auto;
        text-align: center;
    }

    /* Show nav when active */
    .nav-container.show .nav-links {
        display: flex;
    }

    /* Adjust the size of the burger menu bars */
    .burger-menu .bar {
        width: 30px;
        /* Set the desired width */
        height: 3px;
        /* Set the desired height */
        background-color: white;
        /* Set the desired color */
        margin: 4px 0;
        /* Space between bars */
        transition: 0.4s;
        /* Smooth transition for animations */
    }

    /* Show burger menu */
    .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        /* Change cursor to pointer on hover */
    }

    /* Burger Menu Animation */
    .burger-menu.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(11px, 9px);
    }

    .burger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .footer {
        padding: 15px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        position: static;
        transform: none;
        margin-bottom: 10px;
        font-family: "Reospec", sans-serif;
    }

    .team,
    .copyright {
        position: static;
        margin-bottom: 5px;
    }

    .floating_logo {
        display: none;
    }
}