body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #f8f8f8;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  margin-right: 10px;
}

.restaurant-name {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Navigation links - desktop */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

/* Dropdown content - desktop */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
  z-index: 1;
  margin-top: 10px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ===== Hamburger menu styles & Mobile Nav ===== */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 18px;
  z-index: 15;
}

/* ===== Intro & Sections ===== */
.intro {
  text-align: center;
  padding: 50px 20px 30px;
}

.carousel {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.carousel-image {
  width: 90%;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.today-offer {
  text-align: center;
  padding: 30px 20px;
  background-color: #f4f4f4;
}

.offer-box img {
  width: 300px;
  max-width: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.offer-box p {
  font-size: 1.2rem;
  margin-top: 15px;
}

/* ===== MENU STYLES ===== */
.menu-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.menu-category {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  text-align: center;
  text-transform: capitalize;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  color: #444;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.menu-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.menu-card h4 {
  margin: 10px 0 5px;
  font-size: 1.1rem;
  color: #222;
}

.menu-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 12px 0;
  }

  .dropdown-content {
    position: static;
    margin-top: 5px;
    box-shadow: none;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown .dropdown-content {
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .menu-category {
    text-align: left;
    font-size: 1.4rem;
    padding-left: 10px;
    padding-top: 30px;
  }

  .menu-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
    padding: 10px;
    scroll-snap-type: x mandatory;
  }

  .menu-card {
    min-width: 180px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .menu-card img {
    height: 140px;
  }
}

/* ===== OFFERS STYLES ===== */
.offers-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.offers-category {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  text-align: center;
  text-transform: capitalize;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  color: #444;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.offers-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.offers-card:hover {
  transform: translateY(-5px);
}

.offers-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.offers-card h4 {
  margin: 10px 0 5px;
  font-size: 1.1rem;
  color: #222;
}

.offers-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}


.offers-category {
  text-align: left;
  font-size: 1.4rem;
  padding-left: 10px;
  padding-top: 30px;
}

.offers-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 15px;
  padding: 10px;
  scroll-snap-type: x mandatory;
}

.offers-card {
  min-width: 180px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.offers-card img {
  height: 140px;
}