:root {
            --italian-green: #009246;
            --italian-red: #CE2B37;
            --background-white: #f8f9fa;
            --text-dark: #333;
            --text-light: #666;
        }
        html { scroll-behavior: smooth; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Lato', sans-serif; background-color: var(--background-white); color: var(--text-dark); line-height: 1.7; }
        h1, h2, h3, h4, .logo { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: var(--italian-green); transition: color 0.3s ease; }
        a:hover { color: var(--italian-red); }
        .container { max-width: 1100px; margin: 0 auto; padding: 20px; }
        .section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--text-dark); }
        .btn { display: inline-block; padding: 12px 28px; background-color: var(--italian-green); color: #fff; font-weight: 700; border-radius: 5px; text-transform: uppercase; transition: background-color 0.3s, transform 0.3s; border: none; }
        .btn:hover { background-color: #007a3a; transform: translateY(-3px); color: #fff; }

        header { background-color: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
        .main-nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; flex-wrap: wrap; }
        
        
        .logo { 
            font-size: 1.5rem; 
            color: var(--text-dark); 
            display: flex;
            align-items: center;
            gap: 15px; 
        }
        .logo img {
            height: 50px; 
            width: auto;
        }
        

        .logo .school-name { display: block; font-size: 0.8rem; font-family: 'Lato', sans-serif; color: var(--text-light); font-weight: 400; line-height: 1; }
        .nav-links ul { display: flex; list-style: none; flex-wrap: wrap; }
        .nav-links a { padding: 0 15px; font-weight: 700; font-size: 1rem; }
        
        main section { padding: 80px 0; }
        
        #inicio { background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1771&q=80'); background-size: cover; background-position: center; text-align: center; color: #fff; }
        #inicio h1 { font-size: 3rem; }
        #inicio p { font-size: 1.2rem; margin-bottom: 30px; }
        
        .menu-category h3 { text-align: center; font-size: 2rem; margin: 60px 0 30px 0; padding-bottom: 10px; border-bottom: 3px solid var(--italian-green); display: inline-block; }
        .menu-category-wrapper { text-align: center; }
        .menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; text-align: left; }
        .product-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; }
        .product-card:hover { transform: translateY(-8px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
        .product-card img { width: 100%; height: 200px; object-fit: cover; }
        .product-info { padding: 20px; }
        .product-info h4 { font-size: 1.3rem; margin-bottom: 10px; }
        .product-price { font-size: 1.4rem; font-weight: 700; color: var(--italian-green); }
        
        #pranzo, #comentarios { background-color: #fff; }
        #pranzo .container { text-align: center; }
        .download-box p { font-size: 1.1rem; margin-bottom: 25px; }

        .form-container { max-width: 700px; margin: 0 auto; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 5px; font-weight: bold; }
        .form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 5px; font-family: 'Lato', sans-serif; font-size: 1rem; }
        .form-group textarea { resize: vertical; min-height: 120px; }
        .form-note { font-size: 0.9rem; color: var(--text-light); margin-top: 20px; text-align: center; }

        #contacto { background-color: var(--text-dark); color: #e0e0e0; }
        #contacto .section-title { color: #fff; }
        .contact-info-wrapper { text-align: center; font-size: 1.2rem; }
        .contact-info-wrapper p { margin-bottom: 15px; }
        .contact-info-wrapper .icon { color: var(--italian-green); margin-right: 10px; }

        footer { background-color: #222; color: #ccc; padding: 20px 0; text-align: center; font-size: 0.9rem; }

        .modal-backdrop { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); z-index: 2000; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
        .modal-backdrop.visible { opacity: 1; visibility: visible; }
        .modal-content { background: #fff; padding: 30px; border-radius: 10px; max-width: 500px; width: 90%; position: relative; transform: scale(0.9); transition: transform 0.3s ease; }
        .modal-backdrop.visible .modal-content { transform: scale(1); }
        .modal-close { position: absolute; top: 15px; right: 15px; font-size: 1.5rem; color: #888; cursor: pointer; border: none; background: none; }
        .modal-body img { width: 100%; height: 250px; object-fit: cover; border-radius: 5px; margin-bottom: 20px; }
        .modal-body h3 { font-size: 2rem; margin-bottom: 10px; }
        .modal-body p { margin-bottom: 15px; }
        .modal-body .product-price { font-size: 1.8rem; color: var(--italian-green); font-weight: 700; }
        @media (max-width: 768px) {
            .main-nav { flex-direction: column; gap: 15px; }
            #inicio h1 { font-size: 2.2rem; }
            .nav-links a { padding: 5px 10px; }
        }