        /* RESET */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Titillium Web', sans-serif;
            background: #f5f5f5;
			overflow-x: hidden;
           /*  min-height: 200vh; /Per testare lo scroll */
			    
        }

        /* ===== LIVELLO 1: SLIM HEADER (Blu) ===== */
        .slim-header {
            background: #116534;
            color: white;
            padding: 8px 0;
            font-size: 0.875rem;
          /*  transition: all 0.3s ease;*/
        }

        .slim-header.hidden {
            max-height: 0;
            overflow: hidden;
            padding: 0;
            opacity: 0;
        }

        .slim-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .slim-left a {
            color: white;
            text-decoration: none;
            font-weight: 600;
        }

        .slim-right {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .slim-right a {
            color: white;
            text-decoration: none;
            font-weight: 600;
        }

        .slim-right a:hover {
            text-decoration: underline;
        }

        /* ===== LIVELLO 2: HEADER CENTRALE (Verde con Logo) ===== */
        .main-header {
            background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
            color: white;
            padding: 15px 0;
           /* transition: all 0.3s ease;*/
        }

        .main-header.hidden {
            max-height: 0;
            overflow: hidden;
            padding: 0;
            opacity: 0;
        }

        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
        }

        .logo-section.hidden {
            opacity: 0;
            max-width: 0;
            overflow: hidden;
        }

        .header-logo {
            height: 60px;
            width: auto;
            transition: all 0.3s ease;
        }

        .header-text h1 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .header-text p {
            font-size: 0.875rem;
            opacity: 0.95;
        }

        .header-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
            margin-left: auto;
        }

        .header-actions a {
            color: white;
            font-size: 1.25rem;
            transition: transform 0.2s;
        }

        .header-actions a:hover {
            transform: scale(1.1);
        }

        /* Hamburger Menu Button (Mobile) */
        .menu-toggle {
			 flex: 0!important;
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
        }

        /* ===== LIVELLO 3: NAVIGAZIONE (Bianco) ===== */
        .nav-header {
            background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
            border-bottom: 1px solid #dee2e6;
            position: sticky;
            top: 0;
            z-index: 999;
            /*transition: all 0.3s ease;*/
        }

        /* Quando scroll, il nav-header si posiziona sotto il banner del progetto */
        .nav-header.scrolled {
            top: var(--banner-height, 65px); /* Altezza dinamica del banner progetto sticky */
            box-shadow: 5px 2px 5px rgba(0, 0, 0, 0.1);
			z-index: 10001;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            margin: 0;
        }

        nav li {
            margin: 0;
        }

        nav a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem .75rem;
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.75rem;
            transition: all 0.3s;
            border-bottom: 5px solid transparent;
        }

        nav a:hover {
            background: #f5f6f7;
            color: #27ae60;
            border-bottom-color: #ff9900;
        }

        nav a.active {
            color:  #ffffff;
            border-bottom-color: #ff9900;
        }

        nav a.active:hover {
            color: #ff9900;
        }

        /* Banner Progetto */
		
		.banner {  text-align: center;
		      max-width: 1400px;
            margin: 0 auto;
			padding: 0px 0 0 20px;
			display: flex;
			align-items: center;
			justify-content: left;
 			}
		
        .project-banner {
            background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
            color: white;
            padding: 1rem 0;
            text-align: center;
            position: sticky;
            top: 0;
            z-index: 10001;
            /*  transition: all 0.3s ease;
          box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
        }

        .project-banner h2 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
			display: flex;
			align-items: center;
			justify-content: left;
			gap: 0rem;
        }

        /* Gestione testo banner con due blocchi */
        .banner-text-base {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .banner-text-extra {
            display: inline;
        }

        .banner-icon {
            vertical-align: middle;
        }

        .project-banner p {
            font-size: 0.9rem;
            opacity: 0.95;
        }

        .project-banner a {
            color: white;
            text-decoration: underline;
        }

        /* DEMO Stamp */
        .demo-stamp {
            position: fixed;
            top: 0;
            right: 0;
            background: #ff9800;
            color: white;
            padding: 5px 15px;
            font-weight: bold;
            z-index: 10000;
            border-bottom-left-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        /* CONTENUTO */
        main {
            max-width: 1400px;
            margin: 3rem auto;
            padding: 0 20px;
        }

        .test-box {
            background: white;
            border: 2px dashed #dee2e6;
            border-radius: 8px;
            padding: 3rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        .test-box h3 {
            color: #27ae60;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .content-placeholder {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            min-height: 300px;
        }

        /* FOOTER */
        footer {
            background: #116534;
            color: white;
    padding: 0.2rem 0.2rem;
    margin-top: 0.8rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Footer con Logo */
        .footer-header {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 2rem;
            padding-top: 2rem;
        }

        .footer-logo {
            flex-shrink: 0;
        }

        .footer-logo img {
            height: 120px;
            width: auto;
            display: block;
        }

        .footer-titles {
            flex: 1;
        }

        .footer-titles h1 {
            color: white;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .footer-titles h2 {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: white;
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 0.75rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 0.938rem;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
            text-decoration: underline;
        }

        .footer a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 0.75rem;
            transition: color 0.3s;
        }

        .footer a:hover {
            color: white;
            text-decoration: underline;
        }

        .footer-menu {  font-size: 0.75rem; color: white;
            text-decoration: underline;
              }
        .footer-section p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.938rem;
            margin-bottom: 0.5rem;
        }

        .footer-social {
			display: flex;
			gap: 2.75rem;
			margin-top: 1rem;
			flex-direction: row;
			justify-content: space-around;
		}
        

        .footer-social a {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.85);
            transition: all 0.3s;
        }

        .footer-social a:hover {
            color: #27ae60;
            transform: scale(1.1);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* ===== MENU FOOTER SEMPLIFICATO ===== */
        .footer-nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
            margin: 0 0 1.5rem 0;
            padding: 0;
        }

        .footer-nav li {
            margin: 0;
        }

        .footer-nav a {
            display: inline-block;
            padding: 0.5rem 0.75rem;
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-weight: 400;
            font-size: 0.813rem;
            transition: color 0.2s ease;
            border: none;
            border-bottom: none;
        }

        .footer-nav a:hover {
            color: white;
            background: transparent;
            border-bottom: none;
            text-decoration: underline;
        }

        .footer-nav a.active {
            color: white;
            border-bottom: none;
            font-weight: 600;
        }

        /* RESPONSIVE */

        /* Tablet e dispositivi portrait */
        @media (max-width: 1024px) and (orientation: portrait), (max-width: 900px) {
            /* Nascondi solo il testo extra, mantieni titolo base */
            .banner-text-extra {
                display: none !important;
            }

            .project-banner h2 {
                font-size: 1rem;
            }

            /* Riduci dimensione pulsante menu */
            .menu-toggle {
                padding: 0.5rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 768px) {
            /* Mostra hamburger button */
            .menu-toggle {
                display: block;
            }

            /* Nascondi il menu di default */
            nav ul {
                flex-direction: column;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.1s ease;
            }

            /* Mostra il menu quando è aperto */
            nav ul.open {
                max-height: 1000px;
            }

            nav a {
                border-bottom: 1px solid #dee2e6;
                padding: 1rem;
            }

            .header-text h1 {
                font-size: 1.2rem;
        text-align: center;
            }
	.project-banner h2 {
        font-size: 1rem;
    }

    /* Nascondi solo il testo extra in mobile */
    .banner-text-extra {
        display: none !important;
    }

    /* Allineamento banner in mobile */
    .banner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .banner h2 {
        flex: 1;
        margin-bottom: 0;
    }

    /* Raggruppa i pulsanti a destra nel banner */
    .project-banner .banner-actions,
    .main-header .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* Allinea pulsante menu - ridotto */
    .menu-toggle {
        position: static !important;
        margin: 0;
        padding: 0.4rem 0.5rem !important;
        font-size: 0.9rem !important;
        min-width: auto;
        width: auto;
    }

    /* Sposta header-actions nel banner in mobile */
    .main-header .header-actions {
        position: static;
        margin-left: 0;
        gap: 8px;
    }

    .info-icon {
        background: rgba(39, 174, 96, 0.9);
        padding: 0.4rem 0.5rem;
        border-radius: 6px;
        cursor: pointer;
        color: white;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

    /* Assicura che menu toggle sia visibile e allineato */
    #menuToggle {
        background: rgba(39, 174, 96, 0.9);
        padding: 0.4rem 0.5rem;
        border-radius: 6px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

    #menuToggle i {
        font-size: 1rem;
    }

            .header-text p {
                font-size: 0.75rem;
            }

            .slim-header {
                font-size: 0.75rem;
            }

            .slim-right {
                gap: 0.75rem;
                font-size: 0.875rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            /* Menu footer responsive */
            .footer-nav ul {
                flex-direction: column;
                align-items: center;
                gap: 0.25rem;
            }

            .footer-nav a {
                font-size: 0.75rem;
                padding: 0.4rem 0.5rem;
            }

            /* Footer header responsive */
            .footer-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .footer-logo img {
                height: 80px;
            }

            .footer-titles h1 {
                font-size: 1rem;
            }

            .footer-titles h2 {
                font-size: 0.875rem;
            }
        }
		
		
.logo_santar {
    background-size: contain;
    width: auto;
    height: 100px;
    background-image: url(../img/s_rosalia_white.png);
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    overflow: hidden;
    margin: 0 0 0 0;
    transition: all 0.3s ease;
}		