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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #d35400;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #d35400;
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://sawalipureveg.vercel.app/images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 50px;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
}

.breadcrumb li {
  margin: 0 5px;
}

.breadcrumb li a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb li:after {
  content: "/";
  margin-left: 10px;
  color: #ccc;
}

.breadcrumb li:last-child:after {
  content: "";
}

/* Menu Section */
.menu-section {
  margin-bottom: 60px;
}

.menu-category {
  margin-bottom: 50px;
}

.menu-category h2 {
  color: #d35400;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ffefe5;
  font-size: 1.8rem;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.menu-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

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

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-item-content {
  padding: 20px;
}

.menu-item h3 {
  color: #d35400;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.menu-item p {
  color: #666;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.price {
  font-weight: 600;
  color: #d35400;
  font-size: 1.1rem;
}

/* Special Offers */
.special-offers {
  background-color: #fff8f0;
  padding: 60px 0;
  margin: 60px 0;
  text-align: center;
}

.special-offers h2 {
  color: #d35400;
  margin-bottom: 30px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.offer-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.offer-card h3 {
  color: #d35400;
  margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
  background-color: #d35400;
  color: white;
  text-align: center;
  padding: 60px 20px;
  margin: 60px 0;
}

.cta-section h2 {
  color: white;
}

.btn {
  display: inline-block;
  background: white;
  color: #d35400;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s;
}

.btn:hover {
  background: #ffefe5;
  transform: translateY(-3px);
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
}

footer a {
  color: #ffefe5;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }

  nav ul {
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 5px 10px;
  }

  .page-header {
    padding: 60px 20px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }
}
