/* ================================
AT A GLANCE SECTION
================================ */

.food-glance-section {
  padding: 60px 20px;
  background: #ffffff;
  font-family: "Jost", sans-serif;
}

/* container */

.food-glance-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: flex-start;
}

/* title */

.food-glance-title h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  color: #111;
  line-height: 1.3;
}

/* grid */

.food-glance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}

/* item */

.food-glance-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

/* icon */

.food-glance-icon {
  font-size: 26px;
  color: #00b4c6;
  min-width: 30px;
}

/* heading */

.food-glance-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

/* text */

.food-glance-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}


/* ================================
TABLET
================================ */

@media (max-width: 992px) {

  .food-glance-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .food-glance-title {
    text-align: center;
  }

}


/* ================================
MOBILE
================================ */

@media (max-width: 768px) {

  .food-glance-section {
    padding: 40px 18px;
  }

  .food-glance-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

}


/* ================================
SMALL PHONES
================================ */

@media (max-width: 480px) {

  .food-glance-section {
    padding: 35px 15px;
  }

  .food-glance-title h2 {
    font-size: 24px;
  }

  .food-glance-item h4 {
    font-size: 14px;
  }

  .food-glance-item p {
    font-size: 13px;
  }

}


/* ================================
HERO SECTION
================================ */

.hero-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 320px;
}

/* background */

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* overlay */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* content */

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
}

/* title */

.hero-title {
  color: #fff;
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: 3px;
  margin: 0;
}


/* ================================
TABLET HERO
================================ */

@media (max-width: 992px) {

  .hero-slide {
    height: 50vh;
    min-height: 260px;
  }

}


/* ================================
MOBILE HERO
================================ */

@media (max-width: 768px) {

  .hero-slide {
    height: 35vh;
    min-height: 200px;
  }

  .hero-title {
    font-size: 30px;
    letter-spacing: 2px;
  }

}


/* ================================
SMALL PHONES HERO
================================ */

@media (max-width: 480px) {

  .hero-slide {
    height: 30vh;
    min-height: 180px;
  }

  .hero-title {
    font-size: 26px;
  }

}
/* Fix swiper hero height */

.hero-section,
.hero-section .swiper,
.hero-section .swiper-wrapper,
.hero-section .swiper-slide {
  height: 60vh;
  min-height: 320px;
}

@media (max-width:768px){

  .hero-section,
  .hero-section .swiper,
  .hero-section .swiper-wrapper,
  .hero-section .swiper-slide {
    height: 35vh;
    min-height: 200px;
  }

}
.hero-section{
  margin-bottom:0;
}

.food-glance-section{
  margin-top:0;
}