/*-----------------------------------*\
  #style.css
\*-----------------------------------*/
: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: hsl(32, 100%, 59%);
  --deep-brown: #5b0c27;
  --dark-brown: #4a0a20; /* Added missing variable */
  --dark-orange: hsl(28, 100%, 58%);
  --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%);
  /*** typography*/
  --ff-shadows-into-light: 'Shadows Into Light', cursive;
  --ff-roboto: 'Roboto', sans-serif;
  --ff-rubik: 'Rubik', sans-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: 10px;
  /*** 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%);
}
@font-face {
  font-family: 'MyFont';
  src: url('/assets/fonts/Ar_en/Jozoor Font.otf') format('opentype'),
       url('/assets/fonts/Ar_en/Jozoor Font.ttf') format('truetype'),
       url('/assets/fonts/En/HelveticaBlkIt.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
/*------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: 'MyFont', var(--ff-roboto), sans-serif;
  font-size: 10px;
  scroll-behavior: smooth;
  text-align: center;
}
body {
  background-color: #e6e7e8;
  color: var(--black);
  font-size: 1.6rem;
  line-height: 1.6;
  
  /* overflow-x: hidden; */
  font-family: 'MyFont', var(--ff-roboto), sans-serif;
}
body.active { overflow: hidden; }
:focus-visible { outline-offset: 4px; }
::selection {
  background-color: var(--deep-brown);
  color: var(--white);
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background-color: var(--cultured); }
::-webkit-scrollbar-thumb { background-color: var(--deep-brown); }
::-webkit-scrollbar-thumb:hover { background-color: var(--tangerine); }
/*---------REUSED STYLE-------------*/
.container { padding-inline: 15px; }
.h1,
.h2,
.h3,
.h4 {
  color: var(--rich-black-fogra-29);
  line-height: 1.2;
  letter-spacing: -1px;
  text-align: center;
  
}
.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(--deep-saffron));
  color: var(--white);
  font-family: 'My-Font', sans-serif; ;
  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: 1px;
  height: 1px;
  transform: translate(-50%, 51%) scale(var(--scale, 1));
  border-radius: 50%;
  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: #e6e7e8; }
.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.gray::after { background-image: url("../images/shape-grey.png"); }
.w-100 { width: 100%; }
.has-scrollbar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: inline mandatory;
  padding-block-end: 30px;
}
.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-brown);
  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-brown);
}
.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(--deep-brown);
  font-family: 'My-Font', sans-serif; ;
  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-brown);
}
.language-widget {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-size: 14px;
  z-index: 1000;
}
.language-widget a {
  text-decoration: none;
  margin: 0 5px;
  font-weight: bold;
}
.languageSwitcher {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-left: 5px;
} 
/*----------HEADER---------------*/
.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: 10px;
  border-block-end: 1px solid var(--champagne-pink_20);
  z-index: 4;
}
.header.active {
  --color: var(--white);
  --btn-color: var(--white);
  position: fixed;
  top: -72px;
  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: 'MyFont', var(--ff-roboto), sans-serif;
  font-size: 2.8rem;
  font-weight: var(--fw-700);
  
} */
.logo .span {
  display: inline-block;
  color: var(--white);
}
.header-btn-group {
  display: flex;
  align-items: center;
  gap: 20px;
}
.search-btn {
  color: var(--white);
  font-size: 20px;
}
.search-btn ion-icon { --ionicon-stroke-width: 50px; }
.nav-toggle-btn {
  display: grid;
  gap: 4px;
}
.line {
  width: 10px;
  height: 3px;
  background-color: var(--white);
  border-radius: 5px;
  transition: var(--transition-1);
}
.line.top{ margin-left: auto; }
.line.middle { width: 20px; }
.line.bottom { margin-right: auto; }
.nav-toggle-btn.active .line.top { transform: translate(-8px, 3px) rotate(45deg); }
.nav-toggle-btn.active .line.middle { transform: rotate(-45deg); }
.nav-toggle-btn.active .line.bottom { transform: translate(9px, -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: auto;
  visibility: visible;
}
.navbar-list { margin-block: 10px; }
.nav-item:not(:last-child) { border-block-end: 1px solid hsla(0, 0%, 0%, 0.04); }
.navbar-link {
  color: #5b0c27;
  font-size: var(--fs-4);
  font-family: 'My-Font', sans-serif; ;
  font-weight: var(--fw-500);
  padding: 10px 15px;
  transition: var(--transition-1);
}
.navbar-link:is(:hover, :focus) { color: var(--dark-brown); }
.arnon_logo {
  height: 4rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
.arnon_logo_footer{
  height: 15rem;
  margin: 0 auto;
}
/*---------SEARCH BOX------------------*/
.search-container {
  position: fixed;
  top: -60%;
  left: 0;
  width: 100%;
  height: 110%;
  background-color: var(--black_95);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 15px;
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-2);
}
.search-container.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(50%);
}
.search-box {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.search-input {
  color: var(--gainsboro);
  font-size: 3rem;
  padding: 20px 15px;
  padding-inline-end: 70px;
}
.search-input::placeholder { color: var(--spanish-gray); }
.search-input::-webkit-search-cancel-button { display: none; }
.search-submit {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  color: var(--onyx);
  font-size: 4rem;
  transition: var(--transition-1);
}
.search-submit:is(:hover, :focus) { color: var(--gainsboro); }
.search-close-btn {
  position: absolute;
  inset: 0;
  z-index: -1;
  cursor: url("../images/close.png"), auto;
}
/*------------HERO-----------*/
.hero-banner { display: none; }
.hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 60px 60px;
  text-align: center;
}
.hero-subtitle {
  color: var(--white);
  font-family: 'MyFont', var(--ff-roboto), sans-serif;
  font-size: var(--fs-3);
  letter-spacing: 1px;
  margin-block-end: 25px;
}
.hero-title {
  color: var(--champagne-pink);
  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);
}
/*-----PROMO---------*/
.promo-card {
  position: relative;
  background-color: var(--white);
  text-align: center;
  padding: 40px 30px;
  box-shadow: var(--shadow-2);
  z-index: 1;
}
.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--white);
  clip-path: var(--clip-path-1);
  transform: scaleY(0.3);
  transform-origin: bottom;
  z-index: -1;
  transition: var(--transition-1);
}
.promo-card:hover::after {
  clip-path: var(--clip-path-2);
  transform: scaleY(1);
}
.promo-card .card-icon svg { margin-inline: auto; }
.promo-card:hover .card-icon path { fill: var(--white); }
.promo-card:hover :is(.card-title, .card-text) { color: var(--black); }
.promo-card .card-title {
  margin-block: 15px;
  transition: var(--transition-1);
}
.promo-card .card-text {
  margin-block-end: 15px;
  transition: var(--transition-1);
}
.promo-card .card-banner {
  max-width: max-content;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
}
.promo-item {
  min-width: 100%;
  scroll-snap-align: start;
}
/*--------------ABOUT-------------------*/
.about { text-align: center; }
.about-banner {
  position: relative;
  aspect-ratio: 1 / 0.9;
}
.about-img {
  max-width: max-content;
  margin-inline: auto;
}
.about-banner .abs-img {
  top: 0;
  left: 100px;
}
.about .section-title {
  max-width: 15ch;
  margin-block: 40px 10px;
  margin-inline: auto;
}
.about-list { margin-block: 20px 30px; }
.about-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.about-item:not(:last-child) { margin-block-end: 10px; }
.about-item ion-icon {
  background-color: var(--deep-brown);
  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); */
  color: white;
  font-family: 'My-Font', sans-serif; ;
  font-weight: var(--fw-500);
}
.about .btn { margin-inline: auto; }
/*----------------------FOOD MENU---------------*/
.food-menu {
  background-color: var(--isabelline);
  text-align: right;
}
.food-menu .section-title { margin-block: 10px 20px; }
.food-menu .section-text {
  max-width: 44ch;
  margin-inline: auto;
  margin-block-end: 30px;
  text-align: center;
}
.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: 'My-Font', sans-serif; ; */
  font-weight: var(--fw-500);
  padding: 5px 20px;
  border: 1px solid var(--border-color, var(--cultured));
  border-radius: 10px;
}
.filter-btn.active {
  background-color: var(--deep-brown);
  --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);
  border-radius: 25px;
}
.food-menu-card:focus-within { outline: 1px auto -webkit-focus-ring-color; }
.food-menu-card .card-banner {
  position: relative;
  padding-block-start: 30px;
  max-width: max-content;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
}
.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-weight: var(--fw-500);
}
.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: 'My-Font', sans-serif; ; */
  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-brown); }
.food-menu-card .del { color: var(--gray-x-11-gray); }
/*-----------------------CTA---------------------*/
.cta {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}
.cta::before {
  bottom: auto;
  top: 0;
  background-image: url("../images/shape-grey.png");
  transform: scaleY(-1);
}
.cta .section-title {
  color: var(--white);
  line-height: 1.5;
  letter-spacing: -2px;
  max-width: 17ch;
  margin-inline: auto;
}
.cta .section-text {
  color: var(--gainsboro);
  margin-block: 25px 20px;
}
.cta .btn { margin-inline: auto; }
.cta-banner {
  position: relative;
  aspect-ratio: 1 / 0.9;
}
.cta-img { transform: scale(1.3) translateY(60px); }
.cta-banner .abs-img {
  top: 50px;
  left: 10px;
}
/*----------------DELIVERY---------------------*/
.delivery-content { margin-block-end: 40px; }
.delivery .section-title {
  /* max-width: 17ch; */
  line-height: 1.6;
  letter-spacing: -2px;
}
.delivery .section-text { margin-block: 15px 25px; }
.delivery-banner {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 0.86;
}
.delivery-img {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-80px);
  transition: var(--transition-2);
  animation: running-cycle 20s linear infinite;
}
@keyframes running-cycle {
  0% { left: 0; }
  100% { left: 100%; }

}
/*------------------TESTIMONIALS------------------*/
.testi { text-align: center; }
.testi .section-title { margin-block: 10px 20px; }
.testi .section-text {
  max-width: 44ch;
  margin-inline: auto;
  margin-block-end: 30px;
}
.testi-card {
  background-color: var(--white);
  padding: 30px;
  text-align: right;
  box-shadow: var(--shadow-2);
}
.testi-card .profile-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testi-card .avatar {
  min-width: max-content;
  border-radius: 50%;
  overflow: hidden;
}
.testi-card .testi-name { margin-block-end: 2px; }
.testi-card .testi-title {
  font-family: 'My-Font', sans-serif; ;
  font-size: var(--fs-4);
}
.testi-card .testi-text { margin-block: 20px 15px; }
.testi-item {
  min-width: 80%;
  scroll-snap-align: start;
}
/*--------------------BANNER------------------*/
.banner { color: var(--white); }
.banner-list {
  display: grid;
  gap: 10px;
}
.banner-lg { height: 430px; }
.banner-sm { height: 200px; }
.banner-md { height: 240px; }
.banner-card {
  position: relative;
  height: 100%;
  box-shadow: var(--shadow-2);
  overflow: hidden;
}
.banner-card .banner-img {
  background-color: var(--gainsboro);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: var(--transition-2);
}
.banner-card:is(:hover, :focus-within) .banner-img { transform: scale(1.05); }
.banner-item-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  right: 20px;
  max-height: calc(100% - 30px);
}
.banner-md .banner-item-content { left: 50%; }
.banner-subtitle,
.banner-title {
  font-family: 'My-Font', sans-serif; ;
  font-weight: var(--fw-600);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.banner-lg .banner-subtitle {
  font-size: var(--fs-2);
  margin-block-end: 10px;
}
.banner-lg .banner-title {
  font-size: var(--fs-1);
  max-width: 16ch;
}
:is(.banner-md, .banner-sm) .banner-title {
  font-size: var(--fs-2);
  max-width: 10ch;
}
.banner-card .banner-text { margin-block: 10px 15px; }
.banner-card .btn {
  --bg-color: var(--deep-brown);
  --height: 40px;
  --padding-inline: 25px;
}
.banner-card .btn:is(:hover, :focus) { background-color: var(--rich-black-fogra-29); }
/*-------------------------BLOG-------------------*/
.blog { text-align: center; }
.blog .section-title { margin-block: 10px 20px; }
.blog .section-text {
  margin-block-end: 40px;
  max-width: 44ch;
  margin-inline: auto;
}
.blog-list {
  display: grid;
  gap: 30px;
}
.blog-card {
  background-color: var(--white);
  text-align: left;
  box-shadow: var(--shadow-2);
}
.blog-card .card-banner {
  position: relative;
  aspect-ratio: 1 / 0.65;
  background-color: var(--gainsboro);
}
.blog-card .badge {
  top: 20px;
  right: 20px;
  font-family: 'My-Font', sans-serif; ;
  text-transform: uppercase;
  --bg-color: var(--tangerine);
  --padding-block: 5px;
}
.blog-card .card-content { padding: 30px; }
.blog-card .card-meta-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px 20px;
}
.blog-card .card-meta-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-card .card-meta-link ion-icon {
  color: var(--tangerine);
  font-size: 1.5rem;
  --ionicon-stroke-width: 60px;
}
.blog-card :is(.meta-info, .btn-link) {
  color: var(--rich-black-fogra-29);
  font-family: 'My-Font', sans-serif; ;
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  line-height: 1;
  transition: var(--transition-1);
}
.blog-card .card-meta-link:is(:hover, :focus) .meta-info {
  color: var(--deep-saffron);
}
.blog-card .card-title {
  font-size: var(--fs-3);
  margin-block: 20px 15px;
  transition: var(--transition-1);
}
.blog-card .card-title:is(:hover, :focus) {
  opacity: 0.8;
  text-decoration: underline;
}
.blog-card .card-text { margin-block-end: 20px; }
.blog-card .btn-link {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card .btn-link ion-icon { font-size: 1.5rem; }
.blog-card .btn-link:is(:hover, :focus) {
  color: var(--deep-saffron);
  gap: 10px;
}
/*------------------FOOTER---------------------*/
.footer { overflow: hidden; }
.footer-top {
  position: relative;
  /* padding-block: 120px; */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  border-block-end: 2px solid var(--independence_30);
}
.footer-top::after {
  content: url(../images/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;
}
.footer .logo {
  color: var(--deep-brown);
  font-size: 3.2rem;
  font-family: 'MyFont',var(--ff-roboto) , sans-serif;
  display: flex;
  justify-content: center;  /* horizontally centers content */
  align-items: center;       /* vertically centers content */
  gap: 20px;
  padding: 20px; 
}
.footer-text { 
  margin-block: 15px 25px;
  text-align: center;
 }
.social-list {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-block-end: 20px;
  margin-inline: auto;
  justify-content: center;
  flex-wrap: wrap;
}
.social-link {
  background-color: var(--deep-brown);
  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); } */
.social-link.facebook:is(:hover, :focus) {
  background-color: #1877f2;
}
.social-link.twitter:is(:hover, :focus) {
  background-color: #1da1f2;
}
.social-link.instagram:is(:hover, :focus) {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.social-link.youtube:is(:hover, :focus) {
  background-color: #ff0000;
}
.social-link.whatsapp:is(:hover, :focus) {
  background-color: #25d366;
}
.social-link:is(:hover, :focus) {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.footer-list-title {
  position: relative;
  max-width: max-content;
  color: var(--rich-black-fogra-29);
  /* font-family: 'My-Font', sans-serif; ; */
  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);
  width: 40px;
  height: 4px;
  border-inline-end: 5px solid var(--deep-saffron);
  box-shadow: inset -5px 0 0 var(--white);
}
.footer-list > li:not(:last-child) { margin-block-end: 15px; }
.footer-list address { max-width: 20ch; }
.footer-form {
  background-color: var(--white);
  padding: 30px;
  border: 1px solid var(--cultured);
  box-shadow: var(--shadow-2);
}
.input-wrapper {
  display: grid;
  gap: 10px;
  margin-block-end: 10px;
}
.input-field {
  color: var(--spanish-gray);
  font-size: var(--fs-4);
  border: 1px solid var(--cultured);
  padding: 8px 12px;
}
.input-field::placeholder { color: var(--spanish-gray); }
.input-field::-webkit-calendar-picker-indicator { opacity: 0.5; }
textarea.input-field {
  min-height: 50px;
  max-height: 150px;
  height: 100px;
  resize: vertical;
  margin-block-end: 10px;
}
.footer-form .btn {
  font-size: var(--fs-15);
  --height: 40px;
  --padding-inline: 25px;
}
.footer-form .btn:is(:hover, :focus) { background-color: var(--rich-black-fogra-29); }
.footer-bottom {
  padding-block: 20px;
  text-align: center;
}
.copyright-link { display: inline-block; }
.copyright-link:is(:hover, :focus) { text-decoration: underline; }
/*--------------------------BACK TO TOP--------------------------------*/
.back-top-btn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  /* background-color: var(--deep-saffron); */
  background-color: var(--deep-brown);
  color: var(--white);
  padding: 15px;
  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); }
/*--------------MEDIA QUERIES----------------------------*/
/**responsive for larger than 480px screen */

@media (min-width: 480px) {

  /*** HEADER*/
  .header-btn-group .btn {
    display: block;
    --bg-color: var(--deep-brown);
  }
}
/*** 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-content > :is(*, .btn) { margin-inline: 0; }
  .hero-banner {
    display: block;
    position: absolute;
    top: calc(50% + 86px);
    transform: translateY(-50%);
    right: 50px;
    max-width: 40%;
    aspect-ratio: 1 / 0.9;
  }
  .hero-img {
    position: absolute;
    bottom: 0;
  }
  .hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    width: 100%;
    height: 100%;
    background-image: url("../images/hero-bg-shape.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 :is(.wrapper, .price-wrapper) { justify-content: flex-start; }
  /* .food-menu-card .card-title { text-align: left; } */
  /*** CTA*/
  .cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
  }
  .cta { text-align: left; }
  .cta :is(.section-title, .btn) { margin-inline: 0; }
  .cta-img { transform: scale(1.3) translate(90px, 20px); }
  /*** DELIVERY*/
  .delivery .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
  }
  /*** BANNER*/
  .banner-list { grid-template-columns: repeat(4, 1fr); }
  .banner-lg {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }
  .banner-md {
    grid-column: 3 / 5;
    grid-row: 2 / 3;
    height: 220px;
  }
  /*** BLOG */
  .blog-list { grid-template-columns: 1fr 1fr; }
  .blog-card { height: 100%; }
  /*** FOOTER */
  .input-wrapper { grid-template-columns: 1fr 1fr; }
}
/** * responsive for larger than 992px screen*/
@media (min-width: 992px) {
  /*** CUSTOM PROPERTY*/
  :root {
    /*** spacing*/
    --section-padding: 120px;
  }
  /*** REUSED STYLE*/
  .container { max-width: 1320px; }
  .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 {
    --fs-4: 1.5rem;
    color: var(--white);
    letter-spacing: -0.5px;
  }
  /** HERO */
  .hero {
    min-height: 660px;
    display: grid;
    align-items: center;
  }
  .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: 45%;
    top: auto;
    bottom: 0;
    transform: translateY(0);
  }
  .hero-img-bg { transform: scale(1.4) translate(20px, -20px); }
  /*** FOOD MENU*/
  .food-menu-list { grid-template-columns: repeat(3, 1fr); }
  .food-menu-card { height: 100%; }
  /*** CTA*/
  .cta-img { transform: scale(1.4) translate(20px, 40px); }
  .cta-banner .abs-img { left: -50px; }
  :is(.cta, .delivery) .section-title { line-height: 1.2; }
  /*** BANNER*/
  .banner-lg .banner-title {
    --fs-1: 3.6rem;
    letter-spacing: -2px;
  }
  :is(.banner-md, .banner-sm) .banner-title,
  .banner-lg .banner-subtitle { --fs-2: 3.2rem; }
  /*** TESTIMONIALS */
  .testi-list { padding-block-end: 0; }
  /**   * BLOG*/
  .blog-list { grid-template-columns: repeat(3, 1fr); }
  .blog-card .card-title { --fs-3: 2.2rem; }
  /*** FOOTER*/
  .footer-top .container { grid-template-columns: 1fr 1fr 1fr 1.6fr; }
  .footer-form { margin-block-start: -170px; }
  /*** BACK TO TOP*/
  .back-top-btn {
    bottom: 20px;
    right: 30px;
  }
}
/** * responsive for larger than 1200px screen*/
@media (min-width: 1200px) {
  /*** REUSED STYLE*/
  .container { max-width: 1200px; }
  /**   * HERO*/
  .hero { min-height: 770px; }
  /** * PROMO */  
  .promo .promo-item { min-width: calc(25% - 7.5px); }
  /*** ABOUT */
  .about .container { gap: 60px; }
  /**   * CTA   */
  .cta { --section-padding: 60px; }
  .cta .section-title { max-width: 18ch; }
  /**   * BANNER */
  .banner-md .banner-item-content { left: 55%; }
  /*** FOOTER*/
  .footer-top .container { grid-template-columns: 1.4fr 1fr 1fr 1.6fr; }
}
.video-container {
  width: 100%;
  margin: 0 auto; /* center the video horizontally */
  overflow: hidden;
}
.video-container video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/* Full width on small devices (mobiles) */
@media (max-width: 768px) {
  .video-container {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .video-container video {
    width: 100%;
    height: 700px;
  }
}
.partner-btn {
  width: 80%;
  border-radius: 20px;
  margin: 10px auto;
  height: 70px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: none; /* Initially hidden */
  animation: fadeIn 0.5s ease-in-out;
}
#partner-btn-hunger {
  background-image: url("../images/hungerstation.png");
  height: 150px;
}
#partner-btn-toyou {
  background-image: url("../images/ToYou_id1FQpavYu_1.png");
  height: 150px;
}
#partner-btn-jahez {
  background-image: url("../images/Jahez-2-01.png");
  height: 150px;
}
#partner-btn-mrsool {
  background-image: url("..//Mrsool-6-01.png");
  height: 150px;
}
#partner-btn-ninja{
  background-image: url("../images/ninja12.png");
  height: 150px;
}
#partner-btn-keeta1 {
  background-image: url("../images/keeta.png");
  height: 150px;
}

@media only screen and (max-width: 600px) {
  .partner-btn {
    background-position: center center;
    background-size: contain;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/*button close menu*/
/* .floating-close-btn {
  position: fixed;
  font-family: var(--ff-shadows-into-light);
  font-weight: var(--fw-200);
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: var(--deep-brown);
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 5%;
  width: 150px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}
@media (max-width: 600px) {
  .floating-close-btn {
    width: 9rem;
    height: 5rem;
    font-size: 20px;
    bottom: 15px;
    right: 15px;
  }
} */
.floating-viewMenu-btn {
  position: fixed;
  font-family: 'MyFont', var(--ff-roboto), sans-serif;
  font-weight: var(--fw-200);
   bottom: 20px;
  right: 20px; 
  z-index: 9999;
  background-color: var(--deep-brown);
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 5%;
  width: 150px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}
@media (max-width: 600px) {
  .floating-viewMenu-btn {
    width: 15rem;
    height: 4rem;         
    font-size: 20px;
    bottom: 15px;
    right: 15px;
  }
}
.floating-menu-btn {
  position: fixed;
  bottom: 90px; /* slightly above the close button */
  right: 20px;
  z-index: 9999;
  background-color: #5b0c27;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}
.floating-menu-btn:hover {
  background-color: #8f2047;
}
@media (max-width: 600px) {
  .floating-menu-btn {
    bottom: 85px;
    right: 15px;
    padding: 10px 18px;
    font-size: 14px;
  }
}
.floating-close-btn {
  position: fixed;
  bottom: 15px; /* slightly above the close button */
  right: 17px;
  z-index: 9999;
  background-color: var(--deep-brown);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}
.floating-menu-btn:hover {
  background-color: #8f2047;
}
@media (max-width: 600px) {
  .floating-menu-btn {
    bottom: 85px;
    right: 15px;
    padding: 10px 18px;
    font-size: 14px;
  }
}
.nutrition-info table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'MyFont', var(--ff-roboto), sans-serif;
}
.nutrition-info th,
.nutrition-info td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}
.nutrition-info thead {
  background-color: #f8f8f8;
}
.nutrition-info h2 {
  text-align: center;
  margin-bottom: 1em;
}
@media (max-width: 600px) {
  .nutrition-info {
    padding: 10px;
  }
}
/*--blog button scrool--*/
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #5b0c27;
  color: #fff;
  padding: 10px 12px;
  border-radius: 50%;
  text-align: center;
  display: none; /* Hidden by default */
  z-index: 1000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.back-to-top:hover {
  background-color: #c2185b;
  cursor: pointer;
}
@media (max-width: 600px) {
  .back-to-top {
    bottom: 15px;
    right: 15px;
    padding: 8px 10px;
  }
} 
/* Shows nutrution */
.nutrition-label {
  max-width: 100%;
  border: 1px solid black;
  font-family: 'MyFont', var(--ff-roboto), sans-serif;
  padding: 10px 15px;
  background: white;
  color: black;
  line-height: 1.4;
  font-size: 14px;
}
.nutrition-label h2 {
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 10px;
  border-bottom: 10px solid black;
  padding-bottom: 4px;
}
.serving, .serving-size {
  font-weight: 500;
}
.divider {
  border-top: 1px solid black;
  margin: 8px 0;
}
.divider.thick {
  border-top: 8px solid black;
}
.calories {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}
ul.nutrients,
ul.vitamins {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nutrients li,
.vitamins li {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #999;
  padding: 4px 0;
}
.nutrients li.sub {
  font-size: 13px;
  padding-left: 10px;
  justify-content: space-between;
}
.footer {
  font-size: 17px;
  margin-top: 10px;
  
}
/* scrolling animation for promotional cards */
.promo-card {
  position: relative;
  background-color: var(--white);
  padding: 20px;
  box-shadow: var(--shadow-2);  
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition-1);
  height: 580px;
} 
.promo-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-3);
}
/* .promo-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--deep-brown);
  clip-path: var(--clip-path-1);
  transform: scaleY(0);
  transition: transform var(--transition-1);
} */
.promo-card:hover::after {
  transform: scaleY(1);
}
.promo-card .card-title {
  color: var(--rich-black-fogra-29);
  /* font-family: 'My-Font', sans-serif;  */
  font-weight: var(--fw-600);
  /* font-size: var(--fs-4); */
  margin-block-end: 10px;
}
.promo-card .card-text {
  color: var(--black);
  font-size: var(--fs-5);
  margin-block-end: 15px;
  font-weight: normal;
  
}
.promo-card .btn {
  --bg-color: var(--deep-brown);
  --height: 40px;
  --padding-inline: 20px; 
  color: var(--white);
  font-family: 'My-Font', sans-serif; 
  font-weight: var(--fw-500);
  transition: var(--transition-1);
}
.promo-card .btn:is(:hover, :focus) {
  background-color: var(--rich-black-fogra-29);
  color: var(--deep-saffron);
}
.promo-card .btn ion-icon {
  font-size: 1.2rem;
  margin-inline-start: 5px;
} 
.promo-card .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--tangerine);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 5px;
  font-family: 'My-Font', sans-serif; ;
  font-weight: var(--fw-500);
}
.promo-card .badge ion-icon {
  font-size: 1.2rem;
  margin-inline-end: 5px;
}
.promo-card .badge span {
  font-size: 0.9rem;
  font-weight: var(--fw-400);
} 
.promo-card .badge span::before {
  content: "New!";
  font-weight: var(--fw-600);
  color: var(--deep-saffron);
} 
.promo-card .badge span::after {
  content: "50% off";
  font-weight: var(--fw-600);
  color: var(--deep-saffron);
} 
.promo-card .badge span::before,
.promo-card .badge span::after {
  display: inline-block;
  margin-inline: 0 5px; 
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-family: 'My-Font', sans-serif; ;
  font-weight: var(--fw-500);
  color: var(--white);
  background-color: var(--tangerine);
  padding: 2px 5px;   
  border-radius: 3px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  transition: background-color var(--transition-1);
}
.promo-card .badge span::before:hover,
.promo-card .badge span::after:hover {
  background-color: var(--deep-saffron);
  color: var(--rich-black-fogra-29);
}
.promo-card .badge span::before:hover,
.promo-card .badge span::after:hover {  
  transform: scale(1.05);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}   
/*---- to style vide details button-----*/
.center-link {
  text-align: center;
  margin-top: 1rem;
}
.details-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #5b0c28ff;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.details-button:hover {
  background-color: #5b0c28ff;
  transform: scale(1.05);
}
/*-------- this sectoin to control view details page of every dish-*/
.menu-image {
  display: block;
  margin: 0 auto;         /* centers the image horizontally */
  width: 100%;            /* default for mobile */
  max-width: 50%;         /* limit to 50% of parent/container */
  height: auto;           /* maintain aspect ratio */
}
@media (min-width: 1024px) {
  .menu-image {
    max-width: 40%;
  }
}
/*------for centre vide controls-*/
 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* body, html {
      height: 100%;
      font-family: 'Roboto', sans-serif;
      color: #5b0c28ff;
    } */

    .video-container {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

   .video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 20px;
    }
    /* .logo {
      font-size: 2rem;
      font-weight: 900;
      margin-bottom: 10px;
      
    } */
    .tagline {
      font-size: 2.2rem;
      font-weight: bold;
      margin: 10px 0;
      color: white;
    }
    .subtitle {
      font-size: 1rem;
      margin-bottom: 30px;
    }
    .buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
    .button {
      border: 2px solid rgb(255, 255, 255);
      width: 300px;
      height: 110px;
      padding: 20px;
      border-radius: 12px;
      text-align: center;
      background-color: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(4px);
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .button:hover {
      /* background-color: rgba(255, 255, 255, 0.3); */
      transform: translateY(-4px);
      background-color: #5b0c27;
    }
    .button span {
      display: block;
      /* font-weight: bold; */
      font-size: 2.1rem;
      color: white;
    }
    .logo-white {
      height: 160px;
    }
    @media (max-width: 600px) {
      .tagline {
        font-size: 1.6rem;
      }
      .buttons {
        flex-direction: row;
      }
      .button {
        width: 95%;
        height: 150px;
      }
    }  
    /*----this section is for make header transparent------*/
    /* .header {
  position: fixed;
  top: -100px;  Hide off screen initially
  left: 0;
  right: 0;
  z-index: 999;
  transition: top 0.3s ease-in-out;
}

.header.visible {
  top: 0;
} */
/* icon sizing & spacing */

/*------ button inside the hero section and video overlay-*/
.button {
  display: inline-block;
  padding: 12px 20px;
  border: 2px solid white;
  color: white;
  text-align: center;
  font-size: 1.1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s ease;
  background-color: transparent;
}
.button span {
  font-size: 2.5rem;
  font-weight: bold;
}
.button svg {
  width: 36px;
  height: 36px;
  fill: white;
  display: block;
  margin: auto;
}
.button:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}
.btn-icon {
  width: 26px;
  height: 1.4rem;
  fill: white;                 /* Always white */
  margin-bottom: -30px;
}
/* Make buttons flexible on all screen sizes */
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 600px) {
  .button {
    width:90%;                /* Half-width on small screens */
    padding: 32px;
  }
  .tagline {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
.btn-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}
.mobile-hero-img {
  display: none;
  text-align: center;
  margin-bottom: 20px;
}
.mobile-hero-img img {
  max-width: 80%;
  height: auto;
}
.social-link i {
  direction: ltr !important;
}
@media (max-width: 768px) {
  .mobile-hero-img {
    display: block;
  }
  .hero-banner {
    display: none; /* Hide the big-screen image on small screens */
  }
}
.button-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
html[dir="rtl"] .button-content {
  flex-direction: row-reverse;
}
/* This section is for reviews */
            .testi-carousel-wrapper {
              display: flex;
              align-items: center;
              justify-content: center;
              width: 100%;
              max-width: 100%;
              position: relative;
            }
            .testi-list {
              display: flex;
              overflow-x: auto;
              scroll-behavior: smooth;
              gap: 2rem;
              padding: 0;
              list-style: none;
              margin: 0 48px;
              scrollbar-width: none;
            }
            .testi-list::-webkit-scrollbar {
              display: none;
            }
            .testi-item {
              min-width: 320px;
              max-width: 320px;
              flex: 0 0 320px;
              animation: testi-slide-in 0.7s cubic-bezier(.4,0,.2,1);
            }
            @keyframes testi-slide-in {
              from {
                opacity: 0;
                transform: translateX(60px);
              }
              to {
                opacity: 1;
                transform: translateX(0);
              }
            }
            .testi-arrow {
              cursor: pointer;
              transition: background 0.2s;
              background: #fff;
              border: none;
              border-radius: 50%;
              width: 40px;
              height: 40px;
              box-shadow: 0 2px 8px rgba(0,0,0,0.08);
              z-index: 2;
              display: flex;
              align-items: center;
              justify-content: center;
              font-size: 1.5rem;
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
            }
            .testi-arrow-left {
              left: 0;
            }
            .testi-arrow-right {
              right: 0;
            }
            .testi-arrow:hover {
              background: #f3e7ed !important;
            }
            @media (max-width: 900px) {
              .testi-list {
                margin: 0 24px;
              }
            }
            @media (max-width: 600px) {
              .testi-item {
                min-width: 90vw;
                max-width: 90vw;
                flex: 0 0 90vw;
              }
              .testi-list {
                margin: 0 8px;
                gap: 1rem;
              }
              .testi-arrow {
                width: 32px;
                height: 32px;
                font-size: 1.1rem;
              }
              .testi-arrow-left {
                left: 0;
              }
              .testi-arrow-right {
                right: 0;
              }
            }
/*----- This section is for multiple branches----*/
            .branch-card .branch-img {
        display: block;
        margin: 0 auto 1.5rem auto;
        border-radius: 12px;
        width: 120px;
        height: 120px;
        object-fit: cover;
        box-shadow: 0 4px 16px rgba(0,0,0,0.10);
          }
          .branch-menu .dish-price-img {
        width: 150px;
        height: 150px;
        vertical-align: middle;
        margin-right: 16px;
        border-radius: 6px;
        object-fit: contain;
        box-shadow: 0 2px 8px rgba(0,0,0,0.09);
        /* Increased size */
          }
          .branch-menu .dish-price-text {
        font-weight: 600;
        color: #5b0c27;
        margin-left: 12px;
        font-size: 1.15rem;
        vertical-align: middle;
          }
          /* Change all .btn buttons to #5b0c27 */
          .btn, .btn.btn-hover, .branch-card .btn, .food-menu-btn, button.btn {
        background-color: #e6e7e8 !important;
        border-color: #5b0c27 !important;
        color: #fff !important;
         border-radius: 5px;
          }
          .btn:hover, .btn.btn-hover:hover, .branch-card .btn:hover, .food-menu-btn:hover, button.btn:hover {
        background-color: #3e081a !important;
        border-color: #3e081a !important;
        color: #fff !important;
         border-radius: 20px;
          }
          /* Increase menu section size on larger screens */
@media (min-width: 900px) {
        #branch-details {
          gap: 3rem !important;
        }
        .branch-card {
          width: 400px !important;
          padding: 3rem !important;
          border-radius: 20px;  /* Increased border radius */
        }
        .branch-card .branch-img {
          width: 150px;
          height: 150px;
        }
        .branch-menu .dish-price-img {
          width: 150px;
          height: 150px;
          margin-right: 18px;
        }
}
html, body {
  overflow-x: hidden; 
  width: 100%;
}
/*-- for language change icon----*/
a.navbar-link 
{ 
  font-family: 'MyFont',var(--ff-roboto) , sans-serif;
 }
.nav-item {
      list-style: none;
    }
    .navbar-link {
      display: flex;
      align-items: center;
      font-size: 16px;
    }
    .globe-container {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  animation: spin 3s linear infinite;
}
.globe-container i {
  font-size: 18px; /* Icon size */
  color: #fffafa; /* Icon color */
}
@keyframes spin {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}
@media screen and (max-width: 600px) {
  .globe-container {
    width: 20px;
    height: 20px;
    color: #5b0c27;
  }
  .globe-container i {
    font-size: 16px; /* Smaller icon size on mobile */
    color: #5b0c27;
  }
}
  /*---order button---*/
  order-food-button{
    display: inline-block;
    background-color: #3e081a;
  }
/*---add animation in hero---*/
  .carousel-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel-track img {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
}
/*----transparent social media icon in video---*/
.social-icons {
  position: absolute;
  bottom: 20px; /* distance from bottom */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.social-link {
  font-size: 2rem; /* Increase icon size */
  color: white;
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s ease;
  background-color: transparent;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.social-link:hover {
  color: white;
}
.social-link.facebook:hover {
  background-color: #3b5998; /*--3b5998---*/
}
.social-link.linkedin:hover {
  background-color: #3b5998; /*--3b5998---*/
}
.social-link.instagram:hover {
  background-color: #e1306c;
}
.social-link.tiktok:hover {
  background-color: #000000;
}
.social-link.twitter:hover {
  background-color: #000000;
}
.social-link.snapchat:hover{
  background-color: #fffc00;
}
.hero {
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .social-link {
    font-size: 2.2rem;
    padding: 8px;
  }
}
.span-menu{
  font-family:'MyFont', var(--ff-roboto), sans-serif;
  font-weight: var(--fw-500);
  font-size: 600px;
}
.promo-card-icon{
  height: 100px;
  width: 150px;
  display: block;
  margin: auto;
  fill: var(--deep-brown);
}
.promo-card-icon:hover{
  fill: white;
}
/*--for pattern image--*/
.pattern-img{
  position: relative;
  z-index: 1;
  height: 500px;
  width: 750px;
}
/* rtl-overrides.css */
/* Flip delivery boy and reverse direction */
html[lang="ar"] .delivery-img {
  transform: scaleX(-1) translateX(-80px) !important;
  transform-origin: center;
  animation: running-cycle-rtl 20s linear infinite !important;
}
/* RTL keyframes for desktop — start off-screen right, move to left */
@keyframes running-cycle-rtl {
  0%   { right: -160px; left: auto; }
  100% { right: 100%; left: auto; }
}
/* Large screens: run across only in the banner area */
@media (min-width: 992px) {
  html[lang="ar"] .delivery-img {
    position: absolute !important;
    left: auto !important;
   /* right: -160px !important;  start outside view */
  }
}
/* Small screens: below partner buttons, no animation */
/* ===== Arabic Delivery Boy Animation for Mobile ===== */
@media (max-width: 991px) {
  html[lang="ar"] .delivery-banner {
    position: relative !important;
    overflow: hidden;
    text-align: center;
  }
  html[lang="ar"] .delivery-img {
    position: absolute !important;
    bottom: 0;
    right: -140px;
    
    transform: scaleX(-1);
    /* animation: moveDeliveryBoyARMobile 10s linear infinite !important; */
  }
  @keyframes moveDeliveryBoyARMobile {
    0% {
      right: -140px;
      transform: scaleX(-1);
    }
    50% {
      right: calc(100% + 140px);
      transform: scaleX(-1);
    }
    51% {
      transform: scaleX(1);
    }
    100% {
      right: -140px;
      transform: scaleX(1);
    }
  }
}
@media (min-width: 1200px) {
  .container { max-width: 100% !important; }
}
.branch-btn{
  background-color: var(--bg-color, var(--deep-brown));
  color: var(--white);
  /* font-family: 'My-Font', sans-serif; ; */
  font-size: var(--fs-4);
  font-weight: var(--fw-500);
  height: var(--height, 45px);
  padding-inline: var(--padding-inline, 35px);
  transition: var(--transition-1);
  border-radius: 20px;
}
.carousel-track {
  display: flex;
  flex-direction: row; /* force LTR flow */
  direction: ltr;      /* override RTL here */
}
@media (min-width: 768px) {
  .food-menu-card .card-title {
    text-align: center;
  }
}
.food-menu-card .card-title{
  text-align: center;
}
.blog-button{
  background-color: var(--bg-color, var(--deep-brown));
  color: var(--white);
  font-family: 'My-Font', sans-serif; ;
  font-size: var(--fs-4);
  font-weight: var(--fw-500);
  height: var(--height, 45px);
  width: 50%;
  text-align: center;
  padding: 1rem;
  padding-inline: var(--padding-inline, 35px);
  transition: var(--transition-1);
  border-radius: 20px;
  justify-content: center;
}
.blog-button-container{
  text-align: center;
  margin-top: 2rem;
  justify-content: center;
  display: flex;
}


/* FORCE CENTER ON ALL SCREENS */
.center-select {
  width: 100%;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center;
}

/* Fix select stretching on mobile */
#size-select {
  width: auto !important;
  max-width: 90%;
  text-align: center;
}

/* Mobile specific fix */
@media (max-width: 768px) {
  .center-select {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}
