* {
    margin: 0%;
    padding: 0%;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}

body {
  background: linear-gradient(180deg, #fff7f0, #ffffff);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Brand */
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 38px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  color: #ff6a00;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  position: relative;
  transition: 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ff6a00;
  transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: #ff6a00;
}

/* Login Button */
.login-btn {
  background: linear-gradient(135deg, #ff6a00, #ff9f1c);
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.35);
  transition: 0.3s;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 106, 0, 0.45);
}

/* 
hero section style  */
.hero-section {
    height: 85vh;
    display: flex;
   gap: 40px;
    flex-direction: column;
    align-items: center;
    text-align: center;

    padding: 3rem;
}
.hero-heading h1{
 font-size: 48px;
  max-width: 800px;
  margin: 0 auto 16px;

}
.hero-heading p{
     font-size: 18px;
  color: #555;
}

.search-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 60px;
  padding: 12px 14px;
  max-width: 820px;
  margin: 40px auto 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  gap: 10px;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.search-item input {
  border: none;
  outline: none;
  font-size: 15px;
  width: 100%;
  color: #333;
}

.search-item input::placeholder {
  color: #aaa;
}

.icon {
  font-size: 18px;
}

.divider {
  width: 1px;
  height: 30px;
  background: #ddd;
}

.search-btn {
  background: linear-gradient(135deg, #ff6a00, #ff9f1c);
  border: none;
  padding: 14px 26px;
  border-radius: 50px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255, 106, 0, 0.35);
  transition: 0.3s;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 106, 0, 0.45);
}


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

/* Primary CTA */
.cta-btn.primary {
  background: linear-gradient(135deg, #ff6a00, #ff9f1c);
  color: #fff;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;

  transition: all 0.3s ease;
}

/* Secondary CTA */
.cta-btn.secondary {
  background: #fff;
  color: #ff6a00;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #ff6a00;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover Effects */
.cta-btn:hover {
  transform: translateY(-3px);
}



.cta-btn.secondary:hover {
  background: #ff6a00;
  color: #fff;
}

/* filter */

.filter-bar {
  display: flex;
  justify-content: left;
  gap: 50px;
  margin-bottom: 20px;
  margin-left: 70px;
}

.filter-bar select {
  padding: 15px;
  border-radius: 30px;
  border: 1px solid #ddd;
  font-size: 1.1rem;
}



/* restaurant card section  */

.restaurants {
  padding: 20px 80px 80px 80px;
  background: #fff7f0;
}

.restaurants h2 {
  text-align: center;
  font-size: 35px;
  margin-bottom: 50px;
}

.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 30px;
}

.restaurant-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.restaurant-card:hover {
  transform: translateY(-6px);
}

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

.card-body {
  padding: 18px;
}

.card-body h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.card-body p{
  margin: 10px 0px 10px 0px;
  font-size: 1.1rem;
}
.card-body button{
  cursor: pointer;
  padding: 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  outline: none;
  border: none;
 background: linear-gradient(135deg, #ff6a00, #ff9f1c);
  color: #fff;
  font-weight: 500;
}


.rating {
  color: #ff6a00;
  font-weight: 600;
}

.meta {
  font-size: 14px;
  color: #555;
}

.how-it-works {
  padding: 80px 60px;
  text-align: center;
}

.how-it-works h2 {
  font-size: 32px;
  margin-bottom: 50px;
}

.steps {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.step {
  background: #fff;
  padding: 10px;
  width: 250px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.step img{
  width: 250px;
  border-radius: 20px;
}

.step span {
  font-size: 36px;
}



/* why choose us  */

.why-us {
  padding: 80px 60px;
  background: #fff7f0;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  margin-top: 40px;
}

.why-grid div {
  background: #fff;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  width: 250px;

}
.why-choose-us-img img{
  width: 250px;
  border-radius: 15px;
}
.why-choose-us-img p{
  font-weight: 500;
  font-size: 1.1rem;
  margin-top: 10px;
}

.categories {
  padding: 80px 60px;
  text-align: center;
}

.category-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.category-grid div {
  padding: 18px 30px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  font-weight: 600;
}


.reviews {
  padding: 80px 60px;
  background: #fff7f0;
  text-align: center;
}

.review-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.review {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  width: 260px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.final-cta {
  padding: 80px 20px;
  text-align: center;
}

.final-cta h2 {
  font-size: 30px;
  margin-bottom: 25px;
}


.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 30px;
}
