/* General Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fffaf6;
  color: #333;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 1.5rem 1rem;
}

.logo {
  max-width: 200px;
  height: auto;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
}

nav a {
  text-decoration: none;
  color: #444;
  font-weight: bold;
}

/* Main Carousel */
.main-carousel {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem;
  scroll-behavior: smooth;
}

.main-carousel img {
  flex-shrink: 0;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
}

/* Section Styles */
section {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid #eee;
  text-align: center;
}

section h2 {
  margin-bottom: 1rem;
  color: #222;
}

/* Menu Layout */
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  text-align: left;
}

.menu-list li {
  margin-bottom: 0.5rem;
  color: #666;
  font-size: 1rem;
}

.menu-list li strong {
  color: #444;
}

/* Buttons */
.order-online,
.find-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.order-online a,
.find-us a {
  padding: 0.75rem 1.5rem;
  background-color: #444;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.order-online a:hover,
.find-us a:hover {
  background-color: #222;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .main-carousel img {
    max-width: 100%;
  }

  nav {
    flex-direction: column;
    gap: 1rem;
  }
}