/* Footer styles */
.footer {
    background-color: #7FBCAA;
    padding: 10px 0px 14px 0px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.menu-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.menu-link {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-link svg {
    transition: all 0.2s ease;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
}

.menu-link--active {
    background-color: rgba(255, 255, 255, 0.3);
}

.menu-link--active svg {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.15));
}

.menu-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}