 body, html {
    margin: 0 ;
    padding: 0;
  }

  .delivery-img {
      width: 80px;
      position: fixed;
      bottom: 10px;
      left: 10px;
    }

.new {
  position: relative;
  background: url('https://images.unsplash.com/photo-1551218808-94e220e084d2') no-repeat center center;
  background-size: cover;
  padding: 40px 0;
  width: 100%;
  height: 117vh;
  z-index: 1;
  overflow: hidden;
}

.new::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: -1;
}



    .logo {
      font-size: 28px;
      font-weight: bold;
      color: orange;
    }
    .search-bar {
      background-color: #2b2b2b;
      border: none;
      padding: 12px 20px;
      border-radius: 30px 0 0 30px;
      width: 100%;
      color: white;
    }
    .search-bar::placeholder {
      color: #aaa;
    }
    .search-btn {
      border-radius: 0 30px 30px 0;
      background: linear-gradient(to right, #f97316, #f43f1a);
      color: white;
      padding: 12px 30px;
      border: none;
    }
    .feature-box {
      background-color: #2b2b2b;
      padding: 20px;
      border-radius: 15px;
      text-align: center;
      color: white;
    }
    .feature-box i {
      font-size: 24px;
      color: orange;
      margin-bottom: 10px;
    }
    

    .btn{
      background-color: orange;
      border: 1px solid orange;
    }
    .btn:hover{
      background-color: #8c3b00;
      color: white;
    }
.zomo{
  margin-top: 10vh;
}
    
 /* Full-width background */
 .categories-wrapper-steam {
  position: relative;
  width: 100%;
  padding: 60px 0;
  overflow: hidden; 

   background: linear-gradient(120deg, #1a1a1a, #2c2c2c, #1a1a1a);
  background-size: 400% 400%;
  animation: animatedBackground 12s ease infinite; 
} 


   .steam {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: floatSteam 6s ease-in-out infinite;
    opacity: 0.6;
    transform: translateX(-50%);
    z-index: 1;
    filter: blur(30px);
  } 
  .categories-wrapper-steam {
  position: relative;
  overflow: hidden;
  background: #2c1a0d; 
} 


 .food-heat {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100px;
  background: radial-gradient(ellipse at center, 
    rgba(255,100,0,0.3) 0%, 
    rgba(255,50,0,0.1) 50%, 
    transparent 100%);
  filter: blur(10px);
  animation: heatPulse 3s infinite alternate;
} 
 
@keyframes heatPulse {
  0% { opacity: 0.3; transform: translateX(-50%) scale(0.9); }
  50% { opacity: 0.7; transform: translateX(-50%) scale(1.1); }
  100% { opacity: 0.3; transform: translateX(-50%) scale(0.9); }
}
  .categories-section {
    position: relative;
    z-index: 2;
  }

  .categories-line {
    width: 40px;
    height: 3px;
    background: orange;
    border-radius: 2px;
  }

  .category-box {
    background-color: #2b2b2b;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .category-box:hover {
    background-color: #f97316;
    transform: translateY(-5px);
    color: white;
  }

  .category-box img {
    transition: transform 0.3s ease;
  }

  .category-box:hover img {
    transform: scale(1.1);
  } 

/* restaurant */
.restaurant-card:hover{
    transform: scale(1.03);
    transition: all 0.3s;
    box-shadow: 0 4px 20px black;
}
#restaurants {
  position: relative;
   background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1470&q=80'); /* مسیر عکس بکگراند */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
   padding: 3rem 0;  
  color: white; 
  z-index: 1;
  
}

#restaurants::before {
  content: "";
  position: absolute;
  inset: 0; 
  background-color: rgba(0, 0, 0, 0.7); 
  z-index: -1; 
}

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

#menu {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1551183053-bf91a1d81141?auto=format&fit=crop&w=1470&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  color: #fff;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


#menu::before {
  content: "";
  position: absolute;
  inset: 0; 
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  pointer-events: none;
}


#menu > .container {
  position: relative;
  z-index: 1;
}


#menu h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}


.menu-card {
  background-color: rgba(255, 255, 255, 0.324);
  border: none;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}


.menu-card:hover {

    transition: all 0.3s;
    box-shadow: 6px 4px 20px black;
    border: 2px solid rgba(255, 68, 0, 0.402); 
  transform: scale(1.02);
}


.menu-card .card-img-top {
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}


.menu-card .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.menu-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}


.menu-card .card-text {
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.3;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}


.menu-card .card-body > .bottom-row {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}


.menu-card .badge.bg-success {
  background-color: #033e1cde !important; 
  color: #4b3b00;
  font-weight: 700;
  padding: 0.4em 0.8em;
  font-size: 0.85rem;
  border-radius: 0.25rem;
  text-shadow: 1px 1px 0 #a37700;
}

.menu-card .badge.bg-danger {
  background-color: #8c3b00 !important; 
  color: #fff;
  font-weight: 700;
  padding: 0.4em 0.8em;
  font-size: 0.85rem;
  border-radius: 0.25rem;
  text-shadow: 1px 1px 0 #5a2600;
}


.menu-card .price {
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}


@media (max-width: 576px) {
  #menu h2 {
    font-size: 2rem;
  }
  .menu-card .card-img-top {
    height: 140px;
  }
  .menu-card .card-title {
    font-size: 1.1rem;
  }
  .menu-card .card-text {
    font-size: 0.9rem;
  }
  .menu-card .badge.bg-success,
  .menu-card .badge.bg-danger {
    font-size: 0.75rem;
    padding: 0.3em 0.6em;
  }
  .menu-card .price {
    font-size: 1rem;
  }
}


  #showSuccess:checked ~ #successBox {
    display: block !important;
  }


.order-form-section {
      background-color: #121212;
      padding: 60px 0;
      color: #fff;
    }
    .order-form-section label {
      color: #ccc;
    }
    .order-form-section input,
    .order-form-section select {
      background-color: #1f1f1f;
      border: 1px solid #444;
      color: #fff;
    }
    .order-form-section .form-check-label {
      color: #ccc;
    }
    /* About section */
     .about-section {
      background-color: #1e1e1e;
      padding: 60px 0;
      color: #fff;
    }
    .about-section img {
      border-radius: 20px;
      max-height: 400px;
      object-fit: cover;
      box-shadow: 0 8px 20px rgba(0,0,0,0.4);
      transition: transform 0.4s ease;
    }
    .about-section img:hover {
      transform: scale(1.02);
    }
    .about-section h2 {
      font-weight: bold;
      color:#e07c24;
    }
    .about-section p {
      line-height: 1.8;
    }



.contact-card {
  background-color: rgba(255, 255, 255, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 20px rgba(255,255,255,0.2);
  background-color: rgba(255, 255, 255, 0.1);
}

.modern-contact-section {
  background: linear-gradient(135deg, #000000, #322528);
  color: #fff;
}

.modern-contact-text h2 {
  font-size: 2rem;
}

.modern-contact-form {
  background-color: #fff;
}

.modern-contact-form .form-label {
  font-weight: 500;
  color: #333;
}

.modern-contact-form .input-group-text {
  background-color: #f8f9fa;
  border-right: 0;
}

.modern-contact-form .form-control {
  border-left: 0;
}

.modern-contact-form button {
  background-color: #ff4b2b;
  border: none;
}

.modern-contact-form button:hover {
  background-color: #ff2e14;
}


.footer-section {
  background-color: #1a120b;
  color: #f8c794;
  padding: 60px 0 20px;
  border-top: 3px solid #e07c24;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-title {
  color: #e07c24;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #e07c24;
}

.footer-text {
  color: #d3d3d3;
  line-height: 1.6;
}

.contact-info {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

 .contact-item i {
  color: #e07c24;
  margin-right: 10px;
  width: 20px;
  text-align: center;
} 

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.3s ease;
  aspect-ratio: 1/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(224, 124, 36, 0.3);
}

.gallery-item:hover img {
  transform: scale(1.1);
}


@media (max-width: 767.98px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #4a3a2e;
}

.hours-list li .day {
  color: #f8c794;
}

.hours-list li .time {
  color: #e07c24;
  font-weight: 600;
}


.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #4a3a2e;
}

.copyright-text {
  text-align: center;
  color: #d3d3d3;
  font-size: 0.9rem;
}


@media (max-width: 767.98px) {
  .footer-section {
    padding: 40px 0 15px;
  }
  
  .footer-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .footer-about, .footer-gallery, .footer-hours, .footer-posts {
    margin-bottom: 30px;
  }
}
.link{
  list-style-type: none;
  text-decoration: none;

}
.social-icons a:hover {
  color: #fff;
  transition: 0.3s ease;
}

