/* page-menu-completo.css */
/* RESET COMPLETO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: white;
    line-height: 1.6;
    padding: 20px;
}

.menu-completo-container {
    max-width: 1200px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.menu-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.menu-title {
    font-size: 3.5em;
    color: #ffffff;
    margin: 0 0 15px 0;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.menu-subtitle {
    font-size: 1.3em;
    color: #bdc3c7;
    margin: 0;
}

.menu-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.2em;
    color: #ffffff;
    margin: 0 0 40px 0;
    text-align: center;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.menu-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-name {
    font-size: 1.4em;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}

.item-price {
    font-size: 1.3em;
    color: #2ecc71;
    font-weight: 700;
}

.item-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin: 0;
    font-size: 1em;
}

.menu-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.back-home-btn {
    display: inline-block;
    padding: 16px 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .menu-completo-container {
        padding: 40px 30px;
    }
    
    .menu-title {
        font-size: 3em;
    }
    
    .menu-items-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .menu-completo-container {
        padding: 30px 20px;
        border-radius: 15px;
        margin: 20px auto;
    }
    
    .menu-title {
        font-size: 2.5em;
    }
    
    .menu-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-item {
        padding: 20px;
    }
    
    /* 🔧 Correzione allineamento nome-prezzo su mobile */
    .item-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    
    .item-price {
        align-self: auto;
    }
}

@media (max-width: 480px) {
    .menu-title {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.6em;
    }
    
    .item-name {
        font-size: 1.2em;
    }
    
    .back-home-btn {
        padding: 14px 25px;
        font-size: 1em;
    }
}
