/* Footer styles */

.footer {
    display: flex;
    justify-content: space-around;
    padding-top: 10px;
    padding-bottom: 15px;
    font-size: 1.2rem;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgb(31, 76, 122);
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.footer-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.footer-item p {
    margin: 0;
}

/* Responsive footer styles */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
        font-size: 1rem;
        padding: 5px 0 10px 0;
    }

    .footer-item {
        margin: 5px 0;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .footer {
        display: none;
    }
    
    /* Add bottom padding to body to compensate for hidden footer */
    body {
        padding-bottom: 20px;
    }
}
