.App {
  text-align: center;
  min-height: 100vh;
  background-color: #f5f5f5;
}

.header-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
  z-index: -1;
}

header {
  padding: 2rem 1rem;
  color: white;
}

h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.menu-section {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.menu-section.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.logo {
  display: block;
  margin: 0 auto;
  max-width: 150px;
  height: auto;
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 2rem;
  }
}

/* Stili per le immagini a larghezza piena */
.full-width-image-container {
  margin-top: 2rem;
  text-align: center;
}

.full-width-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}