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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f5f5f5;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: white;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(0,0,0,0.35);
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  max-width: 700px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #ff8c42;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.section p {
  text-align: center;
  margin-bottom: 20px;
}

.dark {
  background: #ffffff;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #fafafa;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.card h3 {
  margin-bottom: 10px;
}

.food-list {
  list-style: none;
  text-align: center;
}

.food-list li {
  background: #fff;
  margin: 10px auto;
  padding: 12px;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

footer {
  text-align: center;
  padding: 25px;
  background: #222;
  color: white;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links a {
    margin: 0 10px;
  }

  .hero-content h1 {
    font-size: 34px;
  }
}
html {
  scroll-behavior: smooth;
}

.nav-links a:hover {
  color: #ff8c42;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.btn:hover {
  background: #e6762f;
  transform: scale(1.05);
  transition: 0.3s;
}
body {
  background: linear-gradient(to right, #eef2f3, #ffffff);
  color: #2c3e50;
}

.section h2 {
  color: #2c3e50;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.navbar {
  backdrop-filter: blur(10px);
}

.btn {
  background: linear-gradient(45deg, #ff8c42, #ff5e62);
}

.btn:hover {
  background: linear-gradient(45deg, #ff5e62, #ff8c42);
}
