/* STYLE PER INCLUSIVE SPORT */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.header-container {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 4px solid #1a365d; /* Blu Navy Sportivo */
}

/* Header & Logos - Sistemazione per evitare testo allungato */
.logo-ue { 
    height: 50px; /* Altezza fissa per stabilità */
    width: auto;  /* Impedisce lo schiacciamento */
    margin-right: 15px; 
}

.project-info-container {
    min-width: 250px; /* Garantisce uno spazio minimo al testo */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-info {
    font-size: 0.85rem;
    margin: 0;
    color: #555;
    font-weight: bold;
    line-height: 1.2; /* Compatta le righe senza stringere le lettere */
    white-space: nowrap; /* Impedisce al testo di andare a capo in modo strano */
}

.social-icons { text-align: right; }
.social-icon { width: 30px; margin-left: 10px; transition: 0.3s; }
.social-icon:hover { transform: scale(1.2); }

.email-top {
    font-size: 0.85rem;
    color: #1a365d;
    font-weight: bold;
    text-decoration: none;
}

.sfondonav { background-color: #1a365d !important; } /* Sfondo Navbar Blu Navy */
.nav-link { color: white !important; font-weight: 500; text-transform: uppercase; font-size: 0.9rem; }
.nav-link:hover { color: #63b3ed !important; } /* Hover Azzurro Sportivo */

.hero-section { padding: 60px 0; text-align: center; background-color: #fff; }
.main-logo-progetto { max-width: 250px; margin-bottom: 20px; }

.about-section {
    background-color: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* BACKGROUND CON NUOVO FILE */
.bg-about {
    background-image: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)), url('figure/Sfondo.png');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
}

.footer-container { background-color: #0f172a; color: #fff; padding: 50px 0; margin-top: 60px; } /* Footer scuro neutro */
.partner-logo { max-height: 55px; background: white; padding: 5px; border-radius: 5px; margin: 10px; }
.disclaimer-text { font-size: 0.75rem; max-width: 900px; margin: 20px auto; opacity: 0.8; }

/* Regola per rendere uniforme la griglia delle foto dei meeting */
.meeting-photo-grid .col img {
    width: 100%;
    height: 200px; /* Forza un'altezza fissa per tutte le foto */
    object-fit: cover; /* Riempie lo spazio ritagliando l'eccesso, senza deformare */
    border-radius: 8px; /* Mantiene i bordi arrotondati */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Un'ombra leggera per estetica */
    transition: transform 0.3s ease; /* Effetto zoom al passaggio del mouse */
}

/* Effetto zoom al passaggio del mouse */
.meeting-photo-grid .col img:hover {
    transform: scale(1.05);
}