body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #ffd700;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
h1 {
  text-align: center;
  margin-bottom: 30px;
}
h2 {
  border-bottom: 1px solid #ffd700;
  padding-bottom: 5px;
  margin-top: 30px;
}
ul {
  list-style-type: none;
  padding: 0;
}
li {
  margin-bottom: 20px;
}
.item-name {
  font-size: 1.2em;
}
.item-description {
  margin-top: 5px;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 40px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.menu-item {
  background-color: #ffd700;
  color: #000;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
}

.menu-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.item-name {
  font-size: 1.5em;
  font-weight: bold;
}

.item-price {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 10px;
}

.item-description {
  opacity: 0.8;
  margin-top: 20px;
}

.important {
  background-color: #ffd700;
  color: #000;
  padding: 20px 30px;
  border-radius: 5px;
  border: 2px solid #000;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
  text-decoration: none;
}

.important:hover {
  background-color: #e6be00;
  box-shadow: 0 15px 25px rgba(0,0,0,0.4);
  transform: scale(1.02);
}

.logo-container--centered {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.logo-container--centered:hover {
  background-color: transparent;
  animation: spin 0.36s ease-in-out forwards;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.menu-item img {
  width: 100%;
  height: 225px;
  object-fit: cover;
}


