/* HERO SECTION */
.hero_container {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  background: var(--green);
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 600px;
}

.hero_content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero_content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero_btn {
  display: inline-block;
  background: black;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.hero_btn:hover {
  background: #2d2f2d;
}

.section_wrapper {
  padding: 50px 0px;
  margin-top: 50px;
}

.section_wrapper {
  position: relative;
  background-color: transparent;
}

.section_wrapper.v1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  z-index: 0;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}

.section_wrapper.v2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background-color: #edeffe;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  z-index: 0;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}

.split_container {
  position: relative;
  z-index: 1;
}

.split_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
}

.split_content {
  color: var(--secondary-dark);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.split_content h2 {
  font-size: 26px;
  font-weight: 600;
}

.split_content p {
  line-height: 1.3;
}

.split_content a {
  width: fit-content;
  background-color: var(--green);
  color: var(--secondary-dark);
  padding: 9px 15px 10px 15px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.split_image img {
  width: 500px;
  border-radius: 10px;
}

/* MENU SLIDER */
.menu_slider_section {
  color: var(--secondary-dark);
  padding: 30px 0px 40px 0px;
  margin-top: 50px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.section_title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
}

.food_card {
  min-height: 330px;
  max-height: 330px;
  background-color: var(--secondary-dark);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.food_card img {
  width: 100%;
  max-width: 100%;
  height: 200px;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.food_card h4 {
  font-size: 22px;
  color: var(--white);
  line-height: 1.1;
}

.food_card p {
  font-size: 14px;
  color: #ccc;
}

@media (max-width: 768px) {
  .hero_container {
    height: 100%;
  }

  .section_wrapper.v1::before {
    width: 100%;
  }

  .section_wrapper.v2::before {
    width: 100%;
  }

  .section_wrapper {
    padding: 20px 0;
  }

  .split_container {
    flex-direction: column;
    gap: 50px;
  }

  .split_image img {
    width: 100%;
  }

  .food_card {
    min-height: 300px;
    max-height: 300px;
  }

  .food_card h4 {
    font-size: 16px;
  }
}
