/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background-color: var(--tertiary-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 8px 0;
    width: 20%;
    font-size: 0.7rem;
}

.mobile-nav-item i {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.mobile-nav-item:hover, .mobile-nav-item:active {
    color: var(--light-color);
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    body {
        padding-bottom: 65px;
    }
    
    footer {
        margin-bottom: 65px;
    }
}

