/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
  /********************************************** COLORS *****************************************/

  --rich-black-fogra-29: hsl(210, 26%, 7%);
  --champagne-pink_20: hsla(23, 61%, 86%, 0.2);
  --independence_30: hsla(245, 17%, 29%, 0.3);
  --gray-x-11-gray: hsl(0, 0%, 73%);
  --champagne-pink: hsl(23, 61%, 86%);
  --spanish-gray: hsl(0, 0%, 60%);
  --sonic-silver: hsl(0, 0%, 47%);
  --deep-saffron: #ff661f;
  --dark-orange: #fe9800;
  --desert-sand: hsl(23, 49%, 82%);
  --isabelline: hsl(38, 44%, 96%);
  --gainsboro: hsl(0, 0%, 87%);
  --tangerine: hsl(31, 84%, 50%);
  --cinnabar: hsl(3, 90%, 55%);
  --black_95: hsla(0, 0%, 0%, 0.95);
  --cultured: hsl(0, 0%, 93%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(0, 0%, 27%);

  --color: #ff661f;
  --color2: #fe9800;
  --color-red: #e14303;

  /************************************ typography *************************************************/

  --ff-shadows-into-light: "Comic Neue", serif;
  --ff-rubik: "Comic Neue", serif;
  --ff-roboto: "Comic Neue", serif;

  --fs-1: 3.2rem;
  --fs-2: 2.2rem;
  --fs-3: 1.8rem;
  --fs-4: 1.4rem;
  --fs-5: 1.2rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /************************************** spacing *************************************************/

  --section-padding: 60px;

  /******************************************* shadow *********************************************/

  --shadow-1: 0 1px 4px hsla(0, 0%, 0%, 0.2);
  --shadow-2: 0 1px 2px hsla(0, 0%, 0%, 0.2);

  /**************************************** transition  *******************************************/

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;

  /*** clip path ***/

  --clip-path-1: polygon(0 40%, 100% 0%, 100% 100%, 0 100%);
  --clip-path-2: polygon(0 0%, 100% 0%, 100% 100%, 0 100%);
}

/*-----------------------------------*\
    #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a,
img,
svg,
span,
input,
select,
button,
textarea,
ion-icon {
  display: block;
}

img {
  height: auto;
}

input,
select,
button,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-family: var(--ff-roboto);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--sonic-silver);
  font-size: 1.7rem;
  line-height: 1.6;
  overflow-x: hidden;
}

body.active {
  overflow: hidden;
}

:focus-visible {
  outline-offset: 4px;
}

::selection {
  background-color: var(--deep-saffron);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: var(--cultured);
}

::-webkit-scrollbar-thumb {
  background-color: var(--deep-saffron);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--tangerine);
}

/*-----------------------------------*\
    #REUSED STYLE
  \*-----------------------------------*/

/* @font-face {
  font-family: 'Comic Sans', ;
  src: url(/fonts/Comic\ Sans\ MS.ttf);
}   */

.container {
  padding-inline: 15px;
}

.h1,
.h2,
.h3,
.h4 {
  font-family: var(--ff-rubik);
  color: var(--rich-black-fogra-29);
  line-height: 1.2;
  letter-spacing: -1px;
}

.h1,
.h2 {
  font-size: var(--fs-1);
}

.h2,
.h3,
.h4 {
  font-weight: var(--fw-600);
}

.h3 {
  font-size: var(--fs-2);
}

.h4 {
  font-size: var(--fs-3);
}

.btn {
  background-color: var(--bg-color, var(--dark-orange));
  color: var(--white);
  font-family: var(--ff-rubik);
  font-size: var(--fs-4);
  font-weight: var(--fw-500);
  height: var(--height, 45px);
  padding-inline: var(--padding-inline, 35px);
  transition: var(--transition-1);
}

.btn-hover {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-hover::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 20px;
  width: 100%;
  height: 1px;
  transform: translate(-50%, 51%) scale(var(--scale, 1));
  border-radius: 50%;
  background-color: var(--deep-saffron);
  z-index: -1;
  transition: var(--transition-2);
}

.btn-hover:is(:hover, :focus)::after {
  --scale: 500;
}

.section {
  padding-block: var(--section-padding);
}

.section.white {
  background-color: var(--isabelline);
}

.section-divider {
  position: relative;
}

.section-divider::before,
.section-divider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background-repeat: repeat no-repeat;
  background-position: bottom;
}

.section-divider.white::after {
  background-image: url("/assets/shape-white.png");
}

.section-divider.gray::after {
  /* background-image: url("/assets/shape-grey.png"); */
  background-image: url("/assets/shape-new-color.png");
}

.w-100 {
  width: 100%;
}

.has-scrollbar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: inline mandatory;
  padding-block-end: 40px;
}

.has-scrollbar::-webkit-scrollbar {
  height: 12px;
}

.has-scrollbar::-webkit-scrollbar-button {
  width: calc(25% - 40px);
}

.has-scrollbar::-webkit-scrollbar-track {
  outline: 2px solid var(--deep-saffron);
  border-radius: 50px;
}

.has-scrollbar::-webkit-scrollbar-thumb {
  border: 3px solid var(--cultured);
  border-radius: 50px;
}

.section-title > .span {
  display: inline-block;
  color: var(--deep-saffron);
}

.abs-img {
  position: absolute;
  transform: scale(1);
}

.scale-up-anim {
  animation: scaleUp 1s linear infinite alternate;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

.section-subtitle {
  color: var(--cinnabar);
  font-family: var(--ff-rubik);
  text-align: center;
  font-weight: var(--fw-500);
}

.badge {
  position: absolute;
  background: var(--bg-color, var(--cinnabar));
  color: var(--white);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  padding: var(--padding-block, 2px) 15px;
}

.rating-wrapper {
  display: flex;
  gap: 5px;
  color: var(--deep-saffron);
}

/*-----------------------------------*\
    #HEADER
  \*-----------------------------------*/

/* .navbar, */
.header-btn-group .btn {
  display: none;
}

.header {
  --color: var(--white);
  --btn-color: var(--champagne-pink);

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 20px;
  border-block-end: 1px solid var(--champagne-pink_20);
  z-index: 4;
}

.header.active {
  --color: var(--rich-black-fogra-29);
  --btn-color: var(--rich-black-fogra-29);

  position: fixed;
  top: -86px;
  background-color: var(--white);
  box-shadow: var(--shadow-1);
  animation: slideIn 0.5s ease-out forwards;
}

@keyframes slideIn {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--color);
  font-family: var(--ff-rubik);
  font-size: 2.8rem;
  font-weight: var(--fw-700);
  letter-spacing: -2px;
}

.logo .span {
  display: inline-block;
  color: var(--deep-saffron);
}
.logo img {
  width: 100%;
  height: 40px;
  object-fit: contain;
}

.nav-toggle-btn {
  display: grid;
  gap: 4px;
}

.line {
  width: 10px;
  height: 3px;
  background-color: var(--btn-color);
  border-radius: 5px;
  transition: var(--transition-1);
}

.line.middle {
  width: 20px;
}

.line.bottom {
  margin-left: auto;
}

.nav-toggle-btn.active .line.top {
  transform: translate(1px, 3px) rotate(45deg);
}

.nav-toggle-btn.active .line.middle {
  transform: rotate(-45deg);
}

.nav-toggle-btn.active .line.bottom {
  transform: translate(-1px, -3px) rotate(45deg);
}

.navbar {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  background-color: var(--white);
  padding-inline: 20px;
  box-shadow: var(--shadow-1);
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: var(--transition-1);
}

.navbar.active {
  height: 236px;
  visibility: visible;
}

.navbar-list {
  margin-block: 10px;
}

.nav-item:not(:last-child) {
  border-block-end: 1px solid hsla(0, 0%, 0%, 0.04);
}
.nav-item {
  color: white;
}

.navbar-link {
  color: var(--cinnabar);
  font-size: var(--fs-4);
  font-family: var(--ff-rubik);
  font-weight: var(--fw-600);
  padding: 10px 15px;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) {
  color: var(--deep-saffron);
}

/*-----------------------------------*\
    #HERO
  \*-----------------------------------*/

.hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 145px 60px;
  text-align: center;
}

.hero-banner {
  margin-top: 24px;
}

.hero-subtitle {
  color: var(--cinnabar);
  font-family: var(--ff-shadows-into-light);
  font-size: var(--fs-1);
  letter-spacing: 1px;
  margin-block-end: 25px;
}

.hero-title {
  color: var(--white);
  max-width: 12ch;
  margin-inline: auto;
}

.hero-text {
  color: var(--desert-sand);
  margin-block: 15px 30px;
  max-width: 44ch;
  margin-inline: auto;
}

.hero .btn {
  margin-inline: auto;
}

.hero .btn:is(:hover, :focus) {
  background-color: var(--white);
  color: var(--black);
}

/*-----------------------------------*\
    #ABOUT
  \*-----------------------------------*/

.about {
  display: flex;
}

.about-banner {
  width: 100%;
}

.about-img {
  max-width: max-content;
  margin-inline: auto;
}

.about-banner .abs-img {
  top: 0;
  left: 100px;
}

.about .section-title {
  width: 100%;
  margin-block: 40px 10px;
  margin-inline: auto;
}

.about .section-title .span {
  color: var(--deep-saffron);
}

.about-list {
  margin-block: 20px 30px;
}

.about-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.about-item:not(:last-child) {
  margin-block-end: 10px;
}

.about-item ion-icon {
  background-color: var(--dark-orange);
  color: var(--white);
  font-size: 1.2rem;
  padding: 4px;
  border-radius: 50%;
  --ionicon-stroke-width: 110px;
}

.about-item .span {
  color: var(--rich-black-fogra-29);
  font-family: var(--ff-rubik);
  font-weight: var(--fw-500);
}

.about .btn {
  margin-inline: auto;
}

/*-----------------------------------*\
    #FOOD MENU
  \*-----------------------------------*/

.food-menu {
  /* background-color: var(--isabelline); */
  background-color: #fcf7da;
  text-align: center;
}

.food-menu .section-title {
  margin-block: 10px 20px;
}

.food-menu .section-text {
  width: 100%;
  font-size: var(--fs-2);
  margin-inline: auto;
  margin-block-end: 30px;
}

.fiter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-block-end: 40px;
}

.filter-btn {
  background-color: var(--white);
  color: var(--color, var(--rich-black-fogra-29));
  font-family: var(--ff-rubik);
  font-weight: var(--fw-500);
  padding: 5px 20px;
  border: 1px solid var(--border-color, var(--cultured));
}

.filter-btn.active {
  background-color: var(--deep-saffron);
  --color: var(--white);
  --border-color: var(--deep-saffron);
}

.food-menu-list {
  display: grid;
  gap: 30px;
}

.food-menu-card {
  background-color: var(--white);
  padding: 40px;
  box-shadow: var(--shadow-2);
  cursor: pointer;
  min-height: 280px;
  border-radius: 12px;
  transition: all 0.4s ease;
}

.food-menu-card:focus-within {
  outline: 1px auto -webkit-focus-ring-color;
}

.food-menu-card:hover {
  transform: scaleY(1.05);
  transition: all 0.4s ease;
}

.food-menu-card .card-banner {
  position: relative;
  /* padding-block-start: 30px; */
  max-width: max-content;
  /* aspect-ratio: 1 / 1; */
  /* margin-inline: auto; */
  height: 150px;
}

.card-banner > img {
  position: relative;
  bottom: 20px;
}

.food-menu-card .badge {
  top: 0;
  left: 0;
}

.food-menu-btn {
  position: absolute;
  top: calc(50% + 15px);
  left: 50%;
  transform: translate(-50%, 0);
  min-width: max-content;
  --bg-color: var(--cinnabar);
  width: 60%;
  --height: 40px;
  --padding-inline: 20px;
  opacity: 0;
  transition: var(--transition-2);
}

.food-menu-btn:is(:hover, :focus) {
  --bg-color: var(--deep-saffron);
}

.food-menu-card:is(:hover, :focus-within) .food-menu-btn {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.food-menu-card .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-block: 20px 10px;
}

.food-menu-card .category {
  font-family: var(--ff-rubik);
  font-weight: var(--fw-500);
}

.food-menu-card .box-content {
  text-align: start;
}

.food-menu-card .box-content p {
  margin-bottom: 8px;
}

.food-menu-card .rating-wrapper {
  font-size: 1.4rem;
}

.food-menu-card .card-title {
  margin-block-end: 10px;
}

.food-menu-card .price-wrapper {
  display: flex;
  justify-content: center;
  gap: 5px;
  font-family: var(--ff-rubik);
  font-weight: var(--fw-600);
}

.food-menu-card .price-text {
  color: var(--cinnabar);
  text-transform: uppercase;
  padding-inline-end: 5px;
}

.food-menu-card .price {
  color: var(--deep-saffron);
}

.food-menu-card .del {
  color: var(--gray-x-11-gray);
}

/*-----------------------------------*\
    #team
\*-----------------------------------*/

.team {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
  /* background-color: var(--isabelline); */
  background-color: #fcf7da;
}

.team::before {
  bottom: auto;
  top: 0;
  /* background-image: url("../assets/shape-grey.png"); */
  background-image: url("../assets/shape-new-color.png");
  transform: scaleY(-1);
}

.team .section-title {
  color: var(--white);
  line-height: 1.5;
  letter-spacing: -2px;
  max-width: 17ch;
  margin-inline: auto;
}

.team .section-text {
  /* color: var(--gainsboro); */
  color: var(--white);
  font-size: var(--fs-2);
  margin-block: 25px 20px;
}

.team .btn {
  margin-inline: auto;
}

.team-banner {
  position: relative;
  aspect-ratio: 1 / 0.9;
}

.team-img {
  transform: scale(1.3) translateY(60px);
}

.team-banner .abs-img {
  top: 50px;
  left: 10px;
}

/*-----------------------------------*\
    #TESTIMONIALS
  \*-----------------------------------*/
.testi {
  background-color: #fcf7da;
}

.testi .section-title {
  text-align: center;
  margin-block: 10px 20px;
}

.testi .section-text {
  max-width: 100%;
  margin-inline: auto;
  margin-block-end: 30px;
}

/*-----------------------------------*\
    #CONTACT
  \*-----------------------------------*/

.contact-content {
  margin-block-end: 40px;
}

.contact .section-title {
  width: 100%;
  line-height: 1.6;
  letter-spacing: -2px;
  text-align: center;
}

.contact .section-text {
  margin-block: 15px 25px;
  text-align: center;
}

.contact .section-text {
  width: 100%;
  font-size: var(--fs-2);
  margin-inline: auto;
  margin-block-end: 30px;
}

.contact-banner {
  display: flex;
}

.contact-img {
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form .inputBox input,
.contact-form textarea {
  padding: 1rem;
  margin-bottom: 1.6rem;
  font-size: 1.7rem;
  color: #ccc;
  text-transform: capitalize;
  background-color: transparent;
  border-radius: 0.5rem;
  border: none;
  outline: none;
  border: 0.1rem solid #ccc;
  width: 100%;
}
.contact-form .inputBox input:focus,
.contact-form textarea:focus {
  border: 0.2rem solid var(--color);
}

.contact-form textarea {
  width: 100%;
  resize: none;
  height: 15rem;
}

.btn-contact {
  width: 100%;
  /* margin: auto; */
}

/* Estilos de errores */
.error {
  color: red;
  font-size: 14px;
  margin-top: 5px;
}

/* Estilos del modal */
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
  border-radius: 8px;
}

.modal.show {
  display: block;
}

.modal-header {
  display: flex;
  align-items: self-start;
}

.modal-header .close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.modal-header .close-btn ion-icon {
  font-size: 24px;
  color: var(--deep-saffron);
}

/*-----------------------------------*\
    #FOOTER OK
  \*-----------------------------------*/

.footer {
  overflow: hidden;
  /* background-color: #1e3e62; */
  /* background-color: #fe9800; */
  background-color: var(--color-red);
}

.footer-top {
  position: relative;
  padding-block: 120px;
  border-block-end: 2px solid var(--white);
}

.footer-top::after {
  content: url(../assets/delivery-boy.svg);
  position: absolute;
  bottom: -11px;
  left: -160px;
  width: 160px;
  animation: running-cycle 20s linear infinite;
}

@keyframes running-cycle {
  0% {
    left: -160px;
  }
  100% {
    left: 100%;
  }
}

.footer-top .container {
  display: grid;
  gap: 30px;
}

.social-list {
  display: flex;
  gap: 12px;
}

.social-link {
  /* background-color: var(--dark-orange); */
  background-color: var(--dark-orange);

  color: var(--white);
  font-size: 1.5rem;
  padding: 10px;
  transition: var(--transition-1);
}

.social-link:is(:hover, :focus) {
  /* background-color: var(--rich-black-fogra-29); */
  background-color: var(--deep-saffron);
}

.footer-list-title {
  position: relative;
  max-width: max-content;
  color: var(--white);
  font-family: var(--ff-rubik);
  font-size: var(--fs-3);
  font-weight: var(--fw-600);
  letter-spacing: -1px;
  margin-block-end: 20px;
}

.footer-list-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 15px);
  /* background-color: var(--deep-saffron); */
  background-color: var(--dark-orange);
  width: 40px;
  height: 4px;
  border-inline-end: 5px solid var(--dark-orange);
  box-shadow: inset -5px 0 0 var(--white);
}

.footer-list > li:not(:last-child) {
  margin-block-end: 15px;
}

.footer-list-item {
  color: var(--white);
}

.footer-bottom {
  padding-block: 20px;
  text-align: center;
  color: var(--white);
}

.copyright-link {
  display: inline-block;
}

.copyright-link:is(:hover, :focus) {
  text-decoration: underline;
}

/*-----------------------------------*\
    #BACK TO TOP OK
  \*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 0;
  right: 20px;
  background-color: var(--dark-orange);
  color: var(--white);
  padding: 12px;
  border-radius: 50%;
  box-shadow: var(--shadow-1);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}

.back-top-btn:is(:hover, :focus) {
  /* background-color: var(--rich-black-fogra-29); */
  background-color: var(--deep-saffron);
}

.btn-wsp {
  position: fixed;
  bottom: 0;
  left: 25px;
  background: #25d366;
  color: var(--white);
  padding: 6px;
  border-radius: 50%;
  box-shadow: var(--shadow-1);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
}

.btn-wsp .icono {
  font-size: 32px;
}

.btn-wsp.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}
.btn-wsp:hover {
  background: #20ba5a;
}

.slider {
  padding: 40px 0;
}

.slider__container {
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  gap: 1em;
}

.slider__body {
  display: grid;
  grid-template-columns: 1fr max-content;
  grid-column: 2/3;
  grid-row: 1/2;
  pointer-events: none;
  background-color: #fff;
  opacity: 0;
  transition: opacity 1.5s;
  border-radius: 12px;
}

.slider__body--show {
  opacity: 1;
  pointer-events: unset;
}

.slider__texts {
  width: 550px;
  padding: 0 24px;
}

.subtitle {
  font-size: 2.5rem;
  color: var(--deep-saffron);
  margin: 8px 0;
}

.slider__review {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.7;
}

.slider__img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  background-position: center;
  display: block;
  margin: 0 auto;
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
}

.slider__arrow {
  cursor: pointer;
  font-size: 48px;
  color: var(--deep-saffron);
  position: absolute;
  top: 54%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  margin: auto;
  gap: 75%;
  z-index: 1;
}

/* .slider__arrow:nth-of-type(2) {
  justify-self: end;
} */

@media (max-width: 768px) {
  .slider {
    padding: 20px 0;
  }
  .slider__container {
    display: grid;
    justify-content: center;
  }
  .slider__body {
    grid-template-columns: 1fr;
  }

  .slider__texts {
    padding-block: 24px;
  }

  .slider__picture {
    grid-row: 1/2;
    height: 300px;
  }

  .slider__img {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .slider {
    padding: 20px 0;
  }
  .slider__container {
    display: grid;
    justify-content: center;
  }
  .slider__body {
    grid-template-columns: 1fr;
  }

  .slider__picture {
    grid-row: 1/2;
  }

  .slider__picture .slider__img {
    width: 100%;
    height: 300px;
  }

  .slider__texts {
    padding-block: 24px;
    height: 370px;
  }

  .slider__img {
    width: 100%;
  }

  .slider__arrow {
    top: 53%;
    gap: 79%;
  }
}

@media (max-width: 378px) {
  .slider {
    padding: 10px 0;
  }
  .slider__body {
    grid-template-columns: 1fr;
  }

  .slider__picture .slider__img {
    width: 100%;
    height: 300px;
  }

  .slider__texts {
    width: 370px;
    height: 555px;
  }

  .slider__arrow {
    /* position: absolute; */
    top: 35%;
    gap: 70%;
    /* gap: 60%; */
  }

  .subtitle {
    font-size: 2rem;
    margin-top: 12px;
  }
}

/*-----------------------------------*\
    #MEDIA QUERIES
  \*-----------------------------------*/

/**
   * responsive for larger than 480px screen
   */

@media (min-width: 480px) {
  /**
     * HEADER
     */

  .header-btn-group .btn {
    display: block;
    --bg-color: var(--dark-orange);
  }
}

/**
   * responsive for larger than 550px screen
   */

@media (min-width: 550px) {
  /**
     * REUSED STYLE
     */

  .container {
    max-width: 550px;
    width: 100%;
    margin-inline: auto;
  }

  .has-scrollbar > li {
    min-width: calc(50% - 5px);
  }

  /**
     * HERO
     */

  .hero-title {
    --fs-1: 4.2rem;
  }

  /**
     * FOOTER
     */

  .footer-top .container {
    grid-template-columns: 1fr 1fr;
  }
}

/**
   * responsive for larger than 768px screen
   */

@media (min-width: 768px) {
  /**
     * REUSED STYLE
     */

  .container {
    max-width: 720px;
  }

  /**
     * HERO
     */

  .hero {
    /* position: relative; */
    text-align: left;
    overflow: hidden;
    z-index: 1;
  }

  .hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .hero-content > :is(*, .btn) {
    margin-inline: 0;
  }

  .hero-banner {
    max-width: 45%;
    aspect-ratio: 1 / 0.9;
  }

  .hero-img {
    width: 100%;
    height: auto;
  }

  /* .hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    width: 100%;
    height: 100%;
    background-image: url("../assets/shape-grey.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    pointer-events: none;
    z-index: -1;
  } */

  /**
     * ABOUT
     */

  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .about {
    text-align: left;
  }

  .about .section-title {
    margin-block-start: 0;
  }

  .about :is(.section-title, .btn) {
    margin-inline: 0;
  }

  .about-item {
    justify-content: flex-start;
  }

  /**
     * FOOD MENU
     */

  .food-menu-list {
    grid-template-columns: 1fr 1fr;
  }

  .food-menu-card {
    height: 540px;
  }

  .food-menu-card .card-banner {
    width: 100%;
    height: 170px;
    margin: 0;
    padding: 0;
  }

  .food-menu-card :is(.wrapper, .price-wrapper) {
    justify-content: flex-start;
  }

  .food-menu-card .card-title {
    text-align: left;
  }

  /**
     * team
     */

  .team .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
  }

  .team {
    text-align: left;
  }

  .team :is(.section-title, .btn) {
    margin-inline: 0;
  }

  .team-img {
    transform: scale(1.3) translate(90px, 20px);
  }

  .contact-form .inputBox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .btn-contact {
    width: 230px;
  }
}

/**
   * responsive for larger than 992px screen
   */

@media (min-width: 992px) {
  /**
     * CUSTOM PROPERTY
     */

  :root {
    /**
       * spacing
       */

    --section-padding: 120px;
  }

  /**
     * REUSED STYLE
     */

  .container {
    max-width: 960px;
  }

  .has-scrollbar > li {
    min-width: calc(33.33% - 6.66px);
  }

  .h2 {
    --fs-1: 4.2rem;
  }

  /**
     * HEADER
     */

  .nav-toggle-btn {
    display: none;
  }

  .header .container {
    gap: 20px;
  }

  .navbar,
  .navbar.active {
    all: unset;
    margin-inline-start: auto;
  }

  .navbar-list {
    margin-block: 0;
    display: flex;
    gap: 5px;
  }

  .nav-item:not(:last-child) {
    border-block-end: none;
  }

  .navbar-link {
    font-size: var(--fs-3);
    letter-spacing: -0.5px;
  }

  /**
     * HERO
     */

  .hero {
    min-height: 660px;
    display: grid;
    align-items: center;
    gap: 20px;
  }

  .hero-subtitle {
    --fs-3: 3.2rem;
  }

  .hero-title {
    --fs-1: 7rem;
    letter-spacing: -2.5px;
  }

  .hero-text {
    font-size: var(--fs-3);
  }

  .hero-banner {
    max-width: 40%;
  }

  /* .hero-banner img {
    position: relative;
    bottom: 0;
  } */

  /**
     * FOOD MENU
     */
  /* 
 */

  .food-menu-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .box-content {
    min-height: 130px;
  }
  .card-title-2 {
    min-height: 80px;
  }

  /**
     * TESTIMONIALS
     */

  .testi-list {
    padding-block-end: 0;
  }

  .contact-wrapper {
    display: flex;
    gap: 16px;
  }

  .contact-form {
    width: 70%;
  }

  /**
     * FOOTER
     */

  .footer-top .container {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
  }

  /**
     * BACK TO TOP
     */

  .back-top-btn {
    bottom: 20px;
    right: 30px;
  }
}

/*** responsive for larger than 1200px screen ******/

@media (min-width: 1200px) {
  /*** HERO *****/
  .container {
    max-width: 1200px;
  }

  .hero {
    height: 500px;
  }

  .hero .container {
    align-items: flex-start;
  }

  .hero-content {
    width: 50%;
  }

  .hero-banner {
    width: 35%;
    position: relative;
    bottom: 80px;
  }

  /*** ABOUT *****/

  .about .container {
    align-items: center;
    gap: 60px;
  }

  /**
     * team
     */

  .team {
    --section-padding: 60px;
  }

  /* .food-menu-card {
    height: 540px;
  }

  .food-menu-card .card-banner {
    width: 100%;
    height: 170px;
    margin: 0;
    padding: 0;
  } */

  /**
     * FOOTER
     */

  .footer-top .container {
    grid-template-columns: 1.4fr 1.4fr 1.4fr 1.4fr;
  }
}
