body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #b30000;
}

.logo img {
  height: 150px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.nav-links li a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    align-items: center;
  }

  .logo img {
    height: 100px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    padding: 10px 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #b30000;
    padding: 10px 0;
    gap: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links li a {
    font-size: 18px;
    padding: 8px 0;
    display: block;
  }
}

/* Intro */
.menu-intro {
  background-color: #fff6f1;
  padding: 60px 20px 40px;
  text-align: center;
}

.menu-intro-container {
  max-width: 800px;
  margin: 0 auto;
}

.menu-intro h1 {
  font-size: 32px;
  color: #b30000;
  margin-bottom: 20px;
}

.menu-intro p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Menu Section */
.menu {
  background-color: #fffdf7;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.menu h2 {
  text-align: center;
  font-size: 36px;
  color: #b30000;
  margin-bottom: 50px;
}

.menu-category {
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.menu-category h3 {
  font-size: 24px;
  color: #b30000;
  margin-bottom: 10px;
  border-bottom: 2px solid #b30000;
  display: inline-block;
  padding-bottom: 5px;
}

.menu-category ul {
  list-style: none;
  padding-left: 0;
}

.menu-category li {
  font-size: 16px;
  color: #333;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

/* Gallery */
.gallery {
  padding: 60px 20px;
  background-color: #fffdf7;
  text-align: center;
}

.gallery h2 {
  font-size: 36px;
  color: #b30000;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* ===== Footer ===== */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 30px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-info,
.footer-links,
.footer-map {
  flex: 1;
  min-width: 250px;
}

.footer-info h3,
.footer-links h4 {
  font-size: 20px;
  color: #f5a623;
  margin-bottom: 15px;
}

.footer-info p,
.footer-links a,
.footer-links ul li {
  color: #ddd;
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: #f5a623;
  text-decoration: underline;
}

.footer-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  color: #ccc;
  border-top: 1px solid #333;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-info,
  .footer-links,
  .footer-map {
    width: 100%;
  }

  .footer-map iframe {
    height: 250px;
  }
}

.footer-info a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-info a:hover {
  color: #f5a623;
  text-decoration: underline;
}


