		

       /* body {
            font-family: 'Georgia', 'Times New Roman', serif;          
            background-color: #f9f7f2;
            color: #4a4a4a;
            margin: 0;
            line-height: 1.6;
        }*/


		/*		
		.main-content {
		    padding-top: 40px;

		}*/

        .container {
            max-width: 800px;
            margin: 0 auto;
            background: #fff;
            padding: 40px;
            box-shadow: 0 0 20px rgba(0,0,0,0.05);
            border: 1px solid #e0e0e0;
        }

		h1.menu-title {
            text-align: center;
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 3px;
            border-bottom: 2px solid #d4af37;
            padding-bottom: 15px;
            display: inline-block;
        }
        
        .center-title { text-align: center; }

        .categoria-section { margin-bottom: 40px; }
        
        h2.categoria-title {
            text-align: center;
            font-size: 1.8rem;
            color: #8b5a2b;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
            position: relative;
        }


        h2.categoria-title::before, h2.categoria-title::after {
            content: "•••"; color: #d4af37; font-size: 12px;
            position: absolute; top: 50%; width: 30%;
        }
        h2.categoria-title::before { left: 0; }
        h2.categoria-title::after { right: 0; }

        /* STILE SCHEDA PIATTO CON IMMAGINE */
        .piatto-card {
            display: flex;
            flex-direction: column; /* Immagine sopra, testo sotto */
            background: #fafafa;
            border: 1px solid #eee;
            border-radius: 8px;
            margin-bottom: 25px;
            overflow: hidden;
            transition: box-shadow 0.3s;
        }

        .piatto-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .piatto-img-container {
            width: 100%;
            height: 200px; /* Altezza fissa per uniformità */
            overflow: hidden;
            background-color: #f0f0f0;
        }
        .piatto-img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Taglia l'immagine per riempire senza deformare */
            display: block;
        }
        .piatto-content {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        .piatto-info {
            flex: 1;
            padding-right: 15px;
        }
        .piatto-nome {
            font-weight: bold;
            font-size: 1.2rem;
            color: #333;
            margin-bottom: 5px;
            display: block;
        }
        .piatto-desc {
            font-size: 0.95rem;
            color: #666;
            font-style: italic;
        }
        .piatto-prezzo {
            font-weight: bold;
            font-size: 1.3rem;
            color: #2c3e50;
            white-space: nowrap;
            margin-left: 15px;
        }

        /* Fallback se non c'è immagine */
        .no-image {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            color: #aaa;
            font-size: 0.9rem;
            background: #f5f5f5;
        }

        /* PRENOTA */

        .btn-prenota {
                padding: 12px 32px; 
                background-color: #a5655f; 
                color: white; 
                border: none; 
                border-radius: 8px; 
                font-weight: 600; 
                font-size: 18px;
                cursor: pointer;
                transition: background-color 0.3s ease, transform 0.2s ease;
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);"
        }


        .btn-prenota:hover {
                    background-color: #ae756f;
                    text-decoration: none !important;
        }
        
 		.containerft {
            font-family: var(--font-body);
            max-width: 1000px;
            margin: 0 auto;
            /* background: #fff; */
            /*padding: 40px;*/
            /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.05); */
            /* border: 1px solid #e0e0e0; */
        }

        /* --- MEDIA QUERY MOBILE --- */

        @media (max-width: 768px) {

            .piatto-content {
                flex-direction: column;
            }

            .piatto-prezzo {
                margin-left: 0;
                margin-top: 10px;
                text-align: right;
                width: 100%;
            }


            h1.menu-title {
                text-align: center;
                font-size: 1.5rem;
                color: #2c3e50;
                margin-bottom: 40px;
                text-transform: uppercase;
                letter-spacing: 3px;
                border-bottom: 2px solid #d4af37;
                padding-bottom: 15px;
                display: inline-block;
            }


            .containerft {
                    text-align: center;
                /*padding: 40px;*/
            }


        }

