.hero{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(20, 20, 20, 0.85), #0a0a0a),
                    url('images/food-hero.jpg') center/cover no-repeat;
        height: 75vh; 
}
.hero {
  position: relative;
  height: 80vh; 
  width: 100%;
  background-color: #f8f9fa; 
  display: flex;
  align-items: center;     
  justify-content: center; 
  text-align: center;
}
.hero .section-heading {
  color: white;
  text-align: center;
}
.hero-subtext {
  font-size: 1.25rem;
  margin-top: 1rem;
  color: white;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}


  .wide-container {
    max-width: 100%;
    padding: 0 6vw; 
  }
  
  .section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #222;
    text-align: left;
  }
  
  .section-description {
    font-size: 1.25rem;
    line-height: 2;
    text-align: left;
    margin-top: 1rem;
  }
  .featured-spot {
    background-color: #fff;
  }
  
  .feature-heading {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #111;
  }
  
  .feature-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
  }
  
  .image-wrapper {
    width: 100%;
    max-width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .custom-footer {
    background-color: rgb(20, 20, 20);
    border-top: 2px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0 10px 0; 
    margin-top: 0 !important;
    text-align: center;
  }
  
  .footer-logo {
    margin-bottom: 5px; 
  }
  .custom-footer {
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: hidden;
  }
  
  
  .footer-logo img {
    height: 40px;
    width: auto;
    transform: scale(4); 
    transform-origin: center;
  }
  
  
  .footer-description {
    font-size: 14px;
    line-height: 1.4;
    margin: 10px auto;  
    max-width: 500px;
    color: #fff;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;  
    flex-wrap: wrap;
  }
  
  .footer-links a {
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
  }
  
  .footer-links a:hover {
    color: #36b1ea;
  }
  
  .footer-brand {
    color: #fff;
    font-size: 16px;
    margin-top: 5px;
  }
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}