body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #1e3549;
  color: #c3b376;
}
header {
  background: url('pictures/banner.jpg') repeat center center;
  background-size: contain;
  color: white;
  padding: 1rem;
  max-height: 200px;
}
.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.nav-logo img {
  height: 150px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.nav-logo img:hover {
  transform: scale(1.1);
}
.order-button {
  background: white;
  color: #1e3549;
  border: 1.5px solid #c3b376;
  box-shadow: 0 0 10px #c3b376;
  font-size: 20px;
  font-weight: bold;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
.order-button:hover {
  transform: scale(1.1);
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
section {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}
h1 {
  font-size: 24px;
  text-align: center;
  margin-top: 1rem;
}
h2 {
  font-size: 20px;
}
p {
  font-size: 16px;
  text-align: center;
}
.price {
  display: none;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-items: center;
  gap: 1rem;
}
.menu-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-item {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 200px;
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  transition: transform 0.3s ease;
}
.menu-item p {
  display: none;
}
.menu-item:hover {
  transform: scale(1.1);
}
.menu-item img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .special {
    width: 150px;
  }
  .schedule {
    height: 150px;
  }
  .menu-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.5rem;
  }
  .menu-item {
  aspect-ratio: auto;
  width: 100%;
  max-width: 150px;
  padding: 0.5rem;
  }
  .menu-item img {
  margin-bottom: 0.5rem;
  }
}
footer {
  background: #c3b376;
  color: #1e3549;
  text-align: center;
  text-shadow: 0 0 10px #1e3549;
  padding: 1rem;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}
.modal-content {
  background-color: #1e3549;
  margin: 1rem auto;
  padding: 1rem;
  border-radius: 10px;
  width: 75%;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  position: relative;
  text-align: center;
}
.close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 28px;
  font-weight: bold;
  color: #c3b376;
  cursor: pointer;
}
iframe {
  border: none;
  width: 100%;
  height: 500px;
}
.special,
.schedule {
  transition: transform 0.3s ease;
}
.special:hover,
.schedule:hover {
  transform: scale(1.5);
}