/*  Used an LLM TO help me with styling 
warning */
.bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 2rem;
}

.bottom-nav .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
}

.bottom-nav a, .bottom-nav .logout-btn {
    color: white;
    font-size: 1rem;
    font-family: IBM Plex Mono;
    font-weight: 400;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-right: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.bottom-nav a:hover, .bottom-nav .logout-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.bottom-nav a.active, .bottom-nav .logout-btn:active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.bottom-nav form {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 35px;
        height: 25px;
        position: fixed;
        top: 25px;
        right: 25px;
        z-index: 2000;
        cursor: pointer;
    }
    .hamburger-line {
        width: 100%;
        height: 3px;
        background-color: white;
        transition: all 0.3s ease;
        border-radius: 10px;
    }
    .mobile-menu-btn.active .hamburger-line:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }
    .mobile-menu-btn.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active .hamburger-line:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .bottom-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(4, 3, 3, 0.98);
        border-radius: 0;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        padding: 0;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .bottom-nav.active {
        transform: translateY(0);
    }

    .bottom-nav .nav-links {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }

    .bottom-nav a, .bottom-nav .logout-btn {
        font-size: 2rem;
        padding: 1rem 2rem;
        text-align: center;
        display: block;
        width: auto;
    }
}

