* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ff5200;
  color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
}

.navbar nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.btn-outline {
  border: 1px solid white;
  padding: 8px 14px;
  border-radius: 10px;
  background: transparent;
  color: white;
}

.btn-black {
  background: black;
  border: none;
  padding: 8px 16px;
  border-radius: 10px;
  color: white;
}

.hero {
  text-align: center;
  margin-top: 40px;
}

.hero h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
}

.search-box {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.location, .search {
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  width: 300px;
}

.location input, .search input {
  border: none;
  outline: none;
  margin-left: 10px;
  width: 100%;
}
.location {
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  width: 300px;
  gap: 10px;
}

.location img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.location input {
  border: none;
  outline: none;
  width: 100%;
}

.search {
  background: white;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  width: 400px;
  gap: 10px;
}

.search input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
}

.search img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.6;
  cursor: pointer;
}
.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.card {
  background: #f2f2f2;
  color: black;
  width: 280px;
  height: 200px;
  border-radius: 20px;
  padding: 20px;
  position: relative;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
}

.card p {
  font-size: 12px;
  color: #666;
}

.offer {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  background: #ffe5d5;
  padding: 4px 8px;
  border-radius: 10px;
  color: #ff5200;
}

.arrow {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ff5200;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.food-section {
  background: #f5f5f5;
  padding: 50px 80px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar h2 {
  font-size: 22px;
  color: #333;
}

.arrows button {
  background: #e0e0e0;
  border: none;
  margin-left: 10px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.food-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 25px;
  justify-items: center;
}

.food-item {
  text-align: center;
}

.food-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.food-item p {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
}

.footer {
  background: #f1f1f6;
  padding: 60px 80px 30px;
  color: #333;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.brand .logo {
  color: #ff5200;
  font-size: 26px;
  font-weight: 700;
}

.brand p {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
}

.footer-col a:hover {
  color: #000;
}

.mt {
  margin-top: 20px;
}

.footer-col select {
  margin-top: 10px;
  padding: 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.social {
  display: flex;
  gap: 12px;
}

.social a {
  display: inline-block;
}

.social a img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.social a:hover img {
  opacity: 1;
}

.divider {
  margin: 40px 0;
  height: 1px;
  background: #ccc;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 16px;
  font-weight: 500;
}

.store-buttons img {
  height: 40px;
  margin-left: 15px;
}
.ads-section img{
  width: 100%;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  background-color: #ccc;
}


