/* COMPONENTS */
.chef-btn {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  transition: all 0.3s ease;
  border-radius: 1000px;
    text-decoration: none;
}

.chef-btn img {
  height: 24px;
  width: auto;
}

.chef-btn:hover {
  background-color: #0000001e;
}

.chef-btn--outline {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: Inter;
  color: #F59D1E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  transition: all 0.3s ease;
  border-radius: 1000px;
  border: 1px solid #F59D1E;
    text-decoration: none;
}

.chef-btn--outline img {
  height: 24px;
  width: auto;
}

.chef-btn--outline:hover {
  background-color: #F59D1E1e;
}

.chef-btn--primary {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  transition: all 0.3s ease;
  border-radius: 1000px;
  background: #F59D1E;
  color: white;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.02), 0px 4px 8px 0px rgba(0, 0, 0, 0.05), 0px 1px 1px 0px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.chef-btn--primary img {
  height: 24px;
  width: auto;
}

.chef-btn--primary:hover {
  background-color: #e6911b;
}

.highlight-text {
  display: inline-block;
  position: relative;
  color: white;
}
.highlight-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background-color: #F59D1E;
  border-radius: 6px;
  rotate: -1.5deg;
  z-index: -1;
}
/* NAVBAR */
/* NAVBAR */
/* NAVBAR */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgb(230, 230, 230);
  height: 100px;
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
}

.nav * {
  text-decoration: none;
}

.nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav__logo {
  height: 60px;
  width: auto;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
}

.nav__links {
  display: flex;
  width: 100%;
  gap: 4px;
  justify-content: center;
  align-items: center;
}

.nav__link {
  color: rgba(0, 0, 0, 0.40);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  display: flex;
  padding: 7px 20px;
  align-items: center;
  border-radius: 1000px;
  transition: all .3s ease;
}

.nav__link:hover {
  background-color: #000000;
  color: #ffffff;
}

.nav__actions {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
}

.nav__button {
  all: unset;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 1000px;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 400;
  background-color: #f59d1e;
  color: #ffffff;
  border: 2px solid #f59d1e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nav__button:hover {
  background-color: #f59d1e;
  border-color: #f59d1e;
}

.nav__button--outline {
  background-color: transparent;
  color: #f59d1e;
  border: 1px solid #f59d1e;
}

.nav__button--outline:hover {
  background-color: #f59d1e1f;
}

.nav__button--light {
  background-color: transparent;
  color: #000000;
  border-color: transparent;
}

.nav__button--light:hover {
  border-color: transparent;
  background-color: #0000000e;
}

.nav__hamburger {
  display: none;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.nav__hamburger-line {
  width: 24px;
  height: 2px;
  background-color: #000000;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.nav__mobile-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.nav.is-open .nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* tablet */
@media (max-width: 992px) {
  .nav__mobile-wrapper {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    justify-content: space-between;
  }

  .nav.is-open .nav__mobile-wrapper {
    transform: translateX(0);
  }

  .nav__links {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .nav__actions {
    position: static;
    transform: none;
    flex-direction: column;
    width: 100%;
  }

  .nav__hamburger {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* mobile */
/* @media (max-width: 576px) */

/* Utility class to prevent scrolling */
body.no-scroll {
  overflow: hidden;
}

/* LOCATIONS SECTION */
/* LOCATIONS SECTION */
/* LOCATIONS SECTION */
.locations {
  padding: 24px 0;
}

.locations .ll-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.locations .locations__grid .locations__col--content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
}

.locations .locations__title {
  color: #000;
  font-family: "Inria Serif";
  font-size: 100px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%; /* 100% */
  text-transform: uppercase;
}

.locations .locations__subtitle {
  color: #302F2D;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 133.333% */
  text-transform: capitalize;
}

.locations .locations__text {
  color: #2D1312;
  text-align: right;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px; /* 155.556% */
}

@media (max-width: 992px) {
  .locations .locations__title {
    font-size: 64px;
  }
  .locations .locations__subtitle {
    font-size: 18px;
  }
  .locations .locations__text {
    font-size: 14px;
  }
}


@media (max-width: 576px) {
  .locations .locations__title {
    font-size: 40px;
  }
  .locations .locations__subtitle {
    font-size: 16px;
  }
  .locations .locations__text {
    font-size: 14px;
  }
}

/* COUNTRIES SECTION */
/* COUNTRIES SECTION */
/* COUNTRIES SECTION */
.chef-section {
  padding: 24px 0;
}

.chef-section .ll-container {
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chef-section h2 {
  color: #da920b;
  font-family: Cookie;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

.chef-country {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.chef-country-title {
  color: #302f2d;
  font-family: Inter;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 133%;
}

.chef-country__list {
  gap: 16px;
  padding: 0;
}

.chef-country__list [data-gjs-type="row-col"] {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}

.chef-country-card {
  display: flex;
  width: 100%;
  padding: 10px;
  justify-content: flex-start;
  align-items: center;
  border-radius: 10px;
  background: #f5f5f5;
  gap: 8px;
}

.chef-country-card img {
  width: 40px;
  width: auto;
}

.chef-country-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1px;
}

.chef-country-card div p {
  color: #302f2d;
  font-family: Inter;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 133%;
}

.chef-country-card div span {
  color: #464746;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 128%;
}

.chef-country-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  display: flex;
  padding: 6px 12px;
  border-radius: 1000px;
  border-radius: 4px;
  border: 1px solid #2471bd;
  background-color: transparent;
  color: #2471bd;
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 128%;
  text-decoration: none;
}

.chef-country-card a:hover {
  background-color: #2471bd;
  color: #ffffff;
}

/* TESTIMONIALS SECTION */
/* TESTIMONIALS SECTION */
/* TESTIMONIALS SECTION */
.testimonials {
  padding: 120px 0;
}

.testimonials .testimonials__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.testimonials .testimonials__title {
  color: #3d3d3d;
  text-align: center;
  font-family: "Inria Serif";
  font-size: 64px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  text-transform: uppercase;
  max-width: 740px;
  width: 100%;
}

.testimonials .testimonials__subtitle {
  color: rgba(61, 61, 61, 0.7);
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 133%;
}

.testimonials .testimonials__grid {
  gap: 23px;
  padding: 0;
}

.testimonials .testimonials__grid--1 {
  margin-bottom: 4px;
  margin-top: 4px;
}

.testimonials .testimonials__grid [data-gjs-type="row-col"] {
  padding: 0;
}

.testimonials .testimonials__card {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid #000;
}

.testimonials .testimonials__card-rating {
  display: flex;
  align-items: center;
}

.testimonials .testimonials__card-stars {
  height: 24px;
  width: auto;
}

.testimonials .testimonials__card-text {
  color: #2d1312;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}

.testimonials .testimonials__card-author {
  color: #434343;
  font-family: Nunito;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}