/* Logo Enhanced Styles */
.logo img {
    height: 80px !important; /* Più grande del normale */
    width: auto;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.logo a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.1);
}

.logo a:hover img {
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.6);
    filter: brightness(1.1);
}

/* Footer Navigation Styles */
.footer-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 20px 0;
    gap: 2rem;
}

.footer-nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #4CAF50;
}

footer {
    background-color: #1a1a1a;
    border-top: 1px solid #333;
}

@media (max-width: 768px) {
    .footer-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo img {
        height: 60px !important;
    }
}

