
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5e0c4;
    color: #3b2a16;
    text-align: center;
}
.main-container {
    padding: 20px;
}
.logo-container img {
    width: 80%;
    max-width: 300px;
    border-radius: 10px;
}
h1 {
    margin: 20px 0;
    font-size: 3em;
    color: #3b2a16;
}
.buttons {
    margin-top: 20px;
}
.menu-button {
    display: block;
    margin: 15px auto;
    padding: 20px 40px;
    font-size: 1.5em;
    background-color: #8b1e1e;
    color: #f5e0c4;
    text-decoration: none;
    border-radius: 12px;
    width: 80%;
    max-width: 400px;
    transition: 0.3s;
}
.menu-button:hover {
    background-color: #4b2e17;
    color: #fff8f0;
}
.menu-container {
    padding: 20px;
}
.menu-item {
    margin: 20px auto;
    padding: 15px;
    background: #fff8f0;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
}
.menu-item img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}
.menu-section {
    margin-top: 20px;
}
.menu-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}
.menu-item h3 {
    margin: 0;
}
.menu-item p {
    margin: 5px 0;
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fff; /* il colore resta bianco */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.main-container {
    text-align: center;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo {
    max-width: 140px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.title {
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #000; /* colore originale */
}

.subtitle {
    font-size: 1rem;
    color: #333; /* leggermente scuro ma neutro */
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.menu-button {
    display: inline-block;
    padding: 10px 18px;
    background: #333; /* colore originale */
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: transform 0.2s ease, background 0.3s ease;
}

.menu-button:hover {
    background: #555;
    transform: scale(1.05);
}
:root {
    --primary: #b32025;   /* rosso principale dal logo */
    --secondary: #f6c700; /* giallo dal logo */
    --text-dark: #222;    /* testo scuro */
    --text-light: #fff;   /* testo chiaro */
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.main-container {
    text-align: center;
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.logo {
    max-width: 140px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.menu-button {
    display: inline-block;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: transform 0.2s ease, background 0.3s ease;
}

.menu-button:hover {
    background: #8e1a1e; /* più scuro per hover */
    transform: translateY(-3px);
}
:root {
    --bg: #c89c5f;
    --bg-light: #c19355;
    --primary: #6d2e0b;
    --primary-dark: #88220c;
    --text-dark: #2a1b0f;
    --text-light: #fff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.main-container {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
}

.logo {
    max-width: 150px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.subtitle {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-button {
    background: var(--primary);
    color: var(--text-light);
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
    font-weight: bold;
}

.menu-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fdf9f4; /* beige chiarissimo per dare respiro */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.main-container {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 90%;
}

.logo {
    width: 120px;
    border-radius: 10px;
    margin-bottom: 15px;
}

h1 {
    font-size: 2rem;
    color: #6d2e0b;
    margin: 10px 0;
}

.subtitle {
    color: #88220c;
    font-weight: 500;
    margin-bottom: 25px;
}

.menu-button {
    display: block;
    padding: 12px;
    background: linear-gradient(135deg, #6d2e0b, #88220c);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    margin: 10px 0;
    font-weight: 600;
    transition: transform 0.2s;
}

.menu-button:hover {
    transform: scale(1.05);
}
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #2a1b0f; /* scuro preso dal logo */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.main-container {
    background: #3b2313; /* marrone scuro */
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    max-width: 400px;
    width: 90%;
}

.logo {
    width: 120px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

h1 {
    font-size: 2rem;
    color: #c89c5f; /* beige dal logo */
    margin: 10px 0;
}

.subtitle {
    color: #c19355;
    font-weight: 500;
    margin-bottom: 25px;
}

.menu-button {
    display: block;
    padding: 12px;
    background: linear-gradient(135deg, #6d2e0b, #88220c);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    margin: 10px 0;
    font-weight: 600;
    transition: transform 0.2s, background 0.3s;
}

.menu-button:hover {
    background: linear-gradient(135deg, #88220c, #6d2e0b);
    transform: scale(1.05);
}
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f2e2c4; /* beige chiaro derivato dal logo */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.main-container {
    background: #fff8f0; /* beige molto chiaro */
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 90%;
}

.logo {
    width: 130px;
    border-radius: 10px;
    margin-bottom: 15px;
}

h1 {
    font-size: 2rem;
    color: #6d2e0b; /* marrone scuro dal logo */
    margin: 10px 0 5px 0;
}

.subtitle {
    color: #88220c; /* rosso caldo del logo */
    margin-bottom: 20px;
}

.menu-button {
    display: block;
    padding: 12px;
    background: #6d2e0b;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    margin: 10px 0;
    font-weight: 600;
    transition: transform 0.2s, background 0.3s;
}

.menu-button:hover {
    background: #88220c;
    transform: translateY(-2px);
}
.menu-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    background: #fff8f0; /* beige chiaro */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
}

.menu-header {
    text-align: center;
    margin-bottom: 20px;
}

.menu-header h1 {
    font-size: 2.2rem;
    color: #6d2e0b;
    margin: 10px 0 5px 0;
}

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

.menu-section h2 {
    background: #6d2e0b;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.menu-item p {
    margin: 3px 0;
    font-size: 0.9rem;
    color: #555;
}

.menu-item strong {
    color: #6d2e0b;
}

.menu-back {
    display: block;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    text-decoration: none;
    background: #6d2e0b;
    color: #fff;
    border-radius: 6px;
    transition: background 0.3s;
}

.menu-back:hover {
    background: #88220c;
}
.menu-page {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: #fff8f0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
}

.menu-header {
    text-align: center;
    margin-bottom: 25px;
}

.menu-header h1 {
    font-size: 2.4rem;
    color: #6d2e0b;
    margin: 10px 0 5px 0;
}

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

.menu-section h2 {
    background: #6d2e0b;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
}

.menu-item {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 5px 0;
    text-align: left;
}

.menu-item p {
    font-size: 0.9rem;
    color: #555;
    margin: 0 0 5px 0;
    text-align: left;
}

.menu-item strong {
    display: block;
    text-align: right;
    color: #6d2e0b;
    font-size: 1rem;
}

.menu-back {
    display: block;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    text-decoration: none;
    background: #6d2e0b;
    color: #fff;
    border-radius: 6px;
    transition: background 0.3s;
}

.menu-back:hover {
    background: #88220c;
}
/* Reset e base */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #f2e2c4; /* beige chiaro */
    color: #333;
    height: auto;
    min-height: 100%;
    overflow-y: auto;
}

/* Contenitore principale della pagina del menu */
.menu-page {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: #fff8f0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Header */
.menu-header {
    text-align: center;
    margin-bottom: 20px;
}

.menu-header h1 {
    font-size: 2rem;
    color: #6d2e0b; /* marrone scuro */
    margin: 10px 0;
}

/* Sezioni del menu */
.menu-section {
    margin-bottom: 25px;
}

.menu-section h2 {
    background: #6d2e0b;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
}

/* Elementi del menu */
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item .menu-text {
    flex: 1;
}

.menu-item h3 {
    font-size: 1.1rem;
    margin: 0 0 4px 0;
    color: #333;
}

.menu-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}

.menu-item strong {
    color: #6d2e0b;
    font-size: 1rem;
    margin-left: 10px;
    white-space: nowrap;
}

/* Pulsante "Torna Indietro" */
.menu-back {
    display: block;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    text-decoration: none;
    background: #6d2e0b;
    color: #fff;
    border-radius: 6px;
    transition: background 0.3s;
}

.menu-back:hover {
    background: #88220c;
}
body {
  font-family: Arial, sans-serif;
  
  margin: 0;
  padding: 0;
}

.menu-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.menu-header {
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  max-width: 150px;
  margin-bottom: 10px;
}

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

.menu-section h2 {
  font-size: 1.8rem;
  border-bottom: 2px solid #ccc;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.menu-item {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.menu-item-img {
  width: 180px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}

.menu-item h3 {
  margin: 10px 0 5px;
  font-size: 1.4rem;
}

.menu-back {
  display: inline-block;
  text-decoration: none;
  
  margin-top: 20px;
  font-size: 1rem;
}
.menu-item img {
  width: 100%;
  height: auto;
  max-height: 200px; /* altezza massima */
  object-fit: contain;
}

