* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #d65108;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.5rem;
  color: white;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin-left: 20px;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
}

.navbar ul li a:hover {
  background: #b54507;
  border-radius: 5px;
}

/* Hero Section */
.hero {
  height: 90vh;
  background: url('food.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-content .btn {
  padding: 12px 24px;
  background: #d65108;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hero-content .btn:hover {
  background: #b54507;
}

/* Features Section */
.features {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature img {
  max-width: 100%;
  border-radius: 5px;
}

.feature h3 {
  margin: 1rem 0;
  font-size: 1.8rem;
}

.feature p {
  font-size: 1rem;
}

.feature:hover {
  transform: translateY(-10px);
}

/* About Section */
.about {
  padding: 4rem 2rem;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.about p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.team-links a {
  color: #d65108;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

.repo-link {
  display: inline-block;
  margin-top: 2rem;
  padding: 12px 24px;
  background: #d65108;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
}

.repo-link:hover {
  background: #b54507;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #333;
  color: white;
}
