/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

header {
    background-color: #0056b3;
    color: white;
}

.navbar {
    background-color: #0056b3;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.6rem;
    color: white;
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    height: 40px;
    /* Consistent logo height */
    width: auto;
    margin-right: 10px;
}

.nav-link {
    color: #ffffff;
    font-size: 1rem;
    margin-right: 1.2rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d4e4f4;
}

.btn-login {
    background-color: #17a2b8;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: #138496;
}

/* Footer moderno */
.footer-modern {
    background-color: #002244;
    /* Blu scuro elegante */
    color: #ffffff;
    padding: 2rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-modern a {
    color: #ffc107;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-modern a:hover {
    color: #ffffff;
}

.footer-modern h6 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.footer-modern p {
    margin: 0;
    font-size: 0.85rem;
}

.contact-info {
    text-align: left;
}

.map-container iframe {
    max-width: 100%;
    height: auto;
    border: none;
    border-radius: 8px;
}

.footer-logo {
    max-height: 60px;
    /* Uniforme per i loghi */
    margin: 0 15px;
    display: inline-block;
}

.footer-note {
    margin: 0;
    font-size: 0.8rem;
    color: #ccc;
}

.footer-note a {
    font-weight: bold;
    color: #ffc107;
}

@media (max-width: 768px) {
    .footer-modern .row {
        flex-direction: column;
    }

    .contact-info,
    .map-container {
        text-align: center;
    }

    .footer-logo {
        max-height: 50px;
        /* Adattamento mobile */
    }
}

