* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fffdf8;
}

h1, h2 {
  color: #b22222;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  font-size: 2rem;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #b22222;
  margin: 0.5rem auto 0;
  border-radius: 3px;
}

section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-in-out;
}

section.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  background: linear-gradient(to bottom, #fff5e6, #ffebd6);
  color: #b22222;
  text-align: center;
  padding: 6rem 2rem 7rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  width: 96%;
  max-width: 400px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.03);
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.85rem 1.7rem;
  background: #ff6347;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button::before {
  content: "📖 ";
  margin-right: 5px;
}

.cta-button:hover {
  background: linear-gradient(to right, #e5533d, #d8472d);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px) scale(1.03);
}

.about, .testimonials, .menu, .location {
  background: #f9f9f9;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.dishes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.dish {
  width: 300px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  text-align: center;
  padding-bottom: 1rem;
  transition: transform 0.3s ease;
}

.dish:hover {
  transform: translateY(-5px);
}

.dish img {
  width: 100%;
  height: auto;
  display: block;
}

.dish p {
  padding: 1rem 0 0.5rem;
  font-weight: 600;
  color: #444;
}

.testimonials blockquote {
  font-style: italic;
  margin: 1rem auto;
  max-width: 600px;
  text-align: center;
  color: #555;
}

.qr-code {
  display: block;
  margin: 1rem auto;
  width: 150px;
}

.map-placeholder {
  background: #ddd;
  height: 200px;
  margin-top: 1rem;
  text-align: center;
  line-height: 200px;
  color: #666;
  font-style: italic;
}

footer {
  background: #2c2c2c;
  color: white;
  text-align: center;
  padding: 3.5rem 1rem;
  font-size: 0.95rem;
}

footer a {
  color: #ffcc70;
  text-decoration: none;
  margin: 0 0.75rem;
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 1rem 5rem;
  }

  .logo {
    width: 60%;
  }

  h1, h2 {
    font-size: 1.5rem;
  }

  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .dishes {
    flex-direction: column;
    align-items: center;
  }

  .dish {
    width: 90%;
  }

  section {
    padding: 3rem 1.5rem;
  }

  footer {
    padding: 2rem 1rem;
  }
}

/* Centered paragraph utility class */
.centered {
  text-align: center;
}

/* Navigation bar styles */
nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background: #fff8f0;
  padding: 1rem;
  font-weight: bold;
}

nav a {
  color: #b22222;
  text-decoration: none;
}

nav a:hover {
  color: #ff6347;
}

/* Embedded map iframe border reset */
iframe {
  border: 0;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

.order-btn {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #ff6347;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.order-btn:hover {
  background-color: #e5533d;
  transform: translateY(-2px);
}

.order-online .dish h3 {
  margin-top: 0.75rem;
  font-size: 1.2rem;
  color: #b22222;
}

.menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.menu-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.07);
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-card img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-info {
  padding: 1rem;
}

.menu-info h3 {
  margin: 0.5rem 0 0.25rem;
  font-size: 1.2rem;
  color: #b22222;
}

.menu-info .calories {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.5rem;
}

.view-item {
  display: inline-block;
  font-weight: bold;
  color: #b22222;
  text-decoration: underline;
  font-size: 0.95rem;
}

.tag {
  display: inline-block;
  background: #8b0000;
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.tag.new {
  background: #f0ad00;
  color: #333;
}

/* Ensure the nav bar is styled and clearly visible */
nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background: #fff8f0;
  padding: 1rem 2rem;
  font-weight: bold;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

nav a {
  color: #b22222;
  text-decoration: none;
  font-size: 1rem;
}

nav a:hover {
  color: #ff6347;
}
