/*=============== vazir FONTS ===============*/
@import url("https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css");

/*=============== VARIABLES CSS ===============*/
/* === :root === */
:root {
  --header-height: 2rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: #ab160c;
  --first-color-alt: #ad2831;
  --first-color-light: rgb(240, 240, 240);
  --gradient-color: linear-gradient(
    180deg,
    rgba(184, 41, 50, 1) 0%,
    rgba(149, 25, 16, 1)
  );
  --title-color: hsl(45, 4%, 8%);
  --text-color: hsl(45, 4%, 40%);
  --text-color-light: hsl(45, 4%, 60%);
  --white-color: hsl(45, 80%, 98%);
  --dark-color: hsl(45, 4%, 8%);
  --body-color: hsl(0, 0%, 100%);
  --container-color: hsl(45, 100%, 99%);
  --shadow-first-color: hsla(45, 100%, 50%, 0.3);
  --shadow-small: 0 4px 8px hsla(45, 50%, 8%, 0.1);
  --shadow-big: 0 2px 16px hsla(45, 50%, 8%, 0.2);
  --shadow-img-small: drop-shadow(0 4px 8px hsla(0, 42%, 5%, 0.4));
  --shadow-img-big: drop-shadow(0 16px 4px hsla(45, 50%, 8%, 0.3));

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: Vazirmatn, sans-serif, B;
  --biggest-font-size: 2.25rem;
  --bigger-font-size: 1.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
/* === @media screen and (min-width: 1150px) === */
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 4rem;
    --bigger-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

/*=============== BASE ===============*/

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

header {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
  color: var(--white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body,
button,
input {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  direction: rtl;
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
  transition: background-color 0.4s;
}

input,
button {
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
/* === .container === */
.container {
  max-width: 1200px;
  margin-inline: 1.5rem;
}

/* === .grid === */
.grid {
  display: grid;
  gap: 1.5em;
}

/* === .section === */
.section {
  padding-block: 5rem 1rem;
}

/* === .section__title, .section__subtitle === */
.section__title,
.section__subtitle {
  text-align: center;
}

/* === .section__title === */
.section__title {
  font-size: var(--bigger-font-size);
  margin-bottom: 2rem;
}

#under{
  font-size: var(--font-medium);
  color: var(--text-color-light);
}

/* === .section__subtitle === */
.section__subtitle {
  font-size: 1.6rem;
  color: var(--first-color);
  margin-bottom: 0.25rem;
}

.section__subtitle p span {
  color: var(--first-color-alt);
}

/* === .main === */
.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/

/* === .header === */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--body-color);
  z-index: var(--z-fixed);
  transition: all 0.4s;
}

/* === .nav === */
.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === .nav__logo === */
.nav__logo {
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
}

/* === .nav__logo i === */
.nav__logo i {
  font-size: 1.5rem;
  color: var(--title-color);
  transform: color 0.4s;
}

/* === .nav__logo span === */
.nav__logo span {
  font-weight: var(--font-bold);
  color: var(--first-color);
}

/* === .nav__toggle === */
.nav__toggle {
  display: flex;
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.4s;
}

/* Navigation for mobile devices */
/* ناوبری برای دستگاه‌های موبایل */

/* === @media screen and (max-width: 1150px) === */
@media screen and (max-width: 1150px) {
  /* === .nav__menu === */
  .nav__menu {
    position: fixed;
    top: 5rem;
    left: -200%;
    right: 0;
    margin: 0 auto;
    width: 75%;
    box-shadow: var(--shadow-big);
    background-color: var(--body-color);
    padding: 3.5rem;
    border-radius: 3rem;
    border: 3px solid var(--first-color);
    transition:
      left 0.4s,
      background-color 0.4s,
      box-shadow 0.4s;
  }
}

/* === .nav__theme === */
.nav__theme {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: S;
}

/* === .nav__list === */
.nav__list {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

/* === .nav__link === */
.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.4s;
}

/* === .nav__link:hover === */
.nav__link:hover {
  color: var(--first-color);
}

/* Show menu */
/* نمایش منو */

/* === .show-menu === */
.show-menu {
  left: 0;
}
/*=============== HOME ===============*/
/* خانه */
/* === .home__container === */
.home__container {
  padding-block: 1.5rem;
  row-gap: 3rem;
}

/* === .home__data === */
.home__data {
  text-align: center;
  display: grid;
  row-gap: 3rem;
}

/* === .home__title === */
.home__title {
  font-size: var(--bigger-font-size);
  margin-bottom: 0.5rem;
}

/* === .home__title span === */
.home__title span {
  color: var(--first-color);
}
.GHA {
  color: var(--first-color);
  font-family: "Cairo", sans-serif;
}

/* === .home__description === */
.home__description {
  margin-bottom: 2rem;
}

/* === .home__social === */
.home__social {
  display: flex;
  justify-content: center;
  column-gap: 0.75rem;
}

/* === .home__link === */
.home__link {
  width: 40px;
  height: 40px;
  background-color: var(--container-color);
  box-shadow: var(--shadow-small);
  border-radius: 0.75rem;
  display: grid;
  place-content: center;
  font-size: 1.5rem;
  color: var(--title-color);
  transition: all 0.4s;
}

/* === .home__link:hover === */
.home__link:hover {
  background-color: var(--first-color);
  box-shadow: 0 4px 8px var(--shadow-first-color);
  color: var(--white-color);
}

/* === .home__image === */
.home__image {
  position: relative;
  width: 320px;
  height: 320px;
  background: var(--gradient-color);
  border-radius: 6rem;
  justify-self: center;
  margin-top: 3rem;
}

/* === .home__img === */
.home__img {
  width: 800px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  mask-image: linear-gradient(var(--first-color) 80%, transparent 90%);
  filter: var(--shadow-img-big);
}

/* === .home__phone === */
.home__phone {
  position: absolute;
  top: 9.5rem;
  right: -1rem;
  background-color: var(--container-color);
  box-shadow: var(--shadow-small);
  padding: 0.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  transition: background-color 0.4s;
}

/* === .home__icon === */
.home__icon {
  width: 36px;
  height: 36px;
  background-color: var(--first-color);
  border-radius: 0.75rem;
  display: grid;
  place-content: center;
  color: var(--white-color);
  font-size: 1.25rem;
}

/* === .home__number === */
.home__number {
  font-size: var(--small-font-size);
  font-size: normal;
  color: var(--title-color);
}

/* === .home__number span === */
.home__number span {
  display: block;
  font-weight: var(--font-semi-bold);
  margin-top: 0.25em;
}

/* === .home__comment === */
.home__comment {
  position: absolute;
  left: 0;
  bottom: -1.5rem;
  width: 250px;
  background-color: var(--container-color);
  box-shadow: var(--shadow-small);
  border-radius: 1.5rem;
  padding: 1.5rem 2.5rem;
  text-align: center;
  font-size: var(--small-font-size);
  color: var(--title-color);
  transition: background-color 0.4s;
}

/* === .home__comment::before === */
.home__comment::before {
  content: open-quote;
  position: absolute;
  bottom: 0;
  right: 1.5rem;
}

/* === .home__comment::after === */
.home__comment::after {
  content: close-quote;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

/* === .home__comment::before, .home__comment::after === */
.home__comment::before,
.home__comment::after {
  font-size: 2rem;
  font-weight: var(--font-semi-bold);
  color: var(--first-color);
}

/*=============== BUTTON ===============*/
/* دکمه */
/* === .button === */
.button {
  display: inline-flex;
  background-color: var(--first-color);
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: 1rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 16px var(--shadow-first-color);
  transition: background-color 0.4s;
}

/* === .button:hover === */
.button:hover {
  background-color: var(--first-color-alt);
}

/*=============== SERVICE ===============*/
/* خدمات */
/* === .service__container === */
.service__container {
  grid-template-columns: 200px;
  justify-content: center;
  row-gap: 2rem;
}

/* === .service__card === */
.service__card {
  text-align: center;
}

/* === .service__img === */
.service__img {
  width: 150px;
  margin: 0 auto 1.5rem;
}

/* === .service__title === */
.service__title {
  font-size: var(--h3-font-size);
  margin-bottom: 0.5rem;
}

/*=============== MENU ===============*/
/* منو */
/* === .menu__container === */
.menu__container {
  grid-template-columns: repeat(2, 1fr);
}

/* === .menu__card === */
.menu__card {
  position: relative;
  display: grid;
  row-gap: 0.5rem;
  background-color: var(--container-color);
  box-shadow: var(--shadow-big);
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 1.5rem;
  transition: background-color 0.4s;
  margin-bottom: 0.8rem;
}

/* === .menu__img === */
.menu__img {
  justify-self: center;
  filter: var(--shadow-img-small);
  border-radius: 1rem;
  margin-top: 10px;
  transition: all 0.5s;
}
.menu__card img {
  width: 300px;
}
.menu__card h3 {
  margin-top: 0.3rem;
}
.menu__card i {
  color: var(--white-color);
}
/* === .menu__card:hover .menu__img === */
.menu__card:hover .menu__img {
  transform: translateY(-0.25rem);
}
/* === .menu__name === */
.menu__name {
  font-size: var(--h3-font-size);
}

/* === .menu__amount === */
.menu__amount {
  font-size: var(--small-font-size);
  margin-block: 0.25rem 0.5rem;
}

/* === .menu__price === */
.menu__price {
  font-size: var(--h4-font-size);
  color: var(--text-color);
  margin-bottom: 0;
  padding-bottom: 0;
}

/* === .menu__button === */
.menu__button {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 32px;
  height: 32px;
  background-color: var(--first-color);
  box-shadow: var(--shadow-first-color);
  border-radius: 0.75rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/*=============== REVIEWS ===============*/
/* نظرات */
/* === .reviews__container === */
.reviews__container {
  row-gap: 6rem;
}

/* === .reviews__content === */
.reviews__content {
  display: grid;
}

/* === .reviews__card === */
.reviews__card {
  display: grid;
  row-gap: 1rem;
  margin-top: 6rem;
  box-shadow: 0 3px 12px var(--text-color);
  border-radius: 40px;
  margin: 1rem;
  width: 80%;
  max-width: 360px;
  padding: 12px;
}

.reviews__card:first-child {
  margin-top: 3rem;
}

/* === .reviews__profile === */
.reviews__profile {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.5rem;
}

/* === .reviews__photo === */
.reviews__photo {
  width: 60px;
  border-radius: 50%;
}

/* === .reviews__data === */
.reviews__data {
  display: grid;
  row-gap: 0.25rem;
}

/* === .reviews__name, .reviews__number === */
.reviews__name,
.reviews__number {
  font-size: var(--h3-font-size);
}

/* === .reviews__rating === */
.reviews__rating {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}

/* === .reviews__stars === */
.reviews__stars {
  display: flex;
  column-gap: 0.25rem;
}

/* === .reviews__stars i === */
.reviews__stars i {
  font-size: 1rem;
  color: var(--first-color);
}

/* === .reviews__comment === */
.reviews__comment {
  position: relative;
  width: 280px;
  justify-self: center;
  text-align: center;
}

/* === .reviews__comment::before === */
.reviews__comment::before {
  content: close-quote;
  position: absolute;
  right: -1rem;
  bottom: -2rem;
}

/* === .reviews__comment::after === */
.reviews__comment::after {
  content: open-quote;
  position: absolute;
  left: -1rem;
  top: -0.5rem;
}

/* === .reviews__comment::before, .reviews__comment::after === */
.reviews__comment::before,
.reviews__comment::after {
  font-size: 2.5rem;
  font-weight: var(--font-semi-bold);
  color: var(--first-color);
}

/* === .reviews__image === */
.reviews__image {
  position: relative;
  width: 620px;
  height: 320px;
  background: var(--gradient-color);
  border-radius: 6rem;
  justify-self: center;
  margin-top: 3rem;
}

/* === .reviews__img === */
.reviews__img {
  width: 270px;
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 0;
  margin: 0 auto;
  mask-image: linear-gradient(var(--first-color) 80%, transparent 95%);
  filter: var(--shadow-img-big);
}

.reviwslist {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 4rem;
}
/*=============== APP ===============*/
/* اپلیکیشن */
/* === .app__container === */
.app section {
  margin-top: 0;
  padding-top: 0;
}
.app__container {
  background-color: var(--first-color-light);
  padding: 0.8rem 1rem 0;
  border-radius: 2rem;
  row-gap: 2rem;
  overflow: hidden;
  transition: all 0.3s;
  margin-top: 0;
  padding-top: 0;
}

/* === .app__data .section__title === */
.app__data .section__title {
  margin-bottom: 0.5rem;
  justify-content: center;
}

/* === .app__data === */
.app__data {
  text-align: center;
}

.app__data p {
  color: hsl(45, 2%, 32%);
}

.app__data p span {
  color: #ab160c;
}

/* === .app__description === */
.app__description {
  margin-bottom: 2rem;
}

/* === .app__image === */
.app__image {
  width: 300px;
  height: 300px;
  justify-self: center;
}

#logo__img{
  margin: 0;
  mask-image: none;
  background: none;
}

/* === .app__img === */
.app__img {
  border-radius: 1.5rem;
  filter: var(--shadow-img-small);
}
.app__image {
  position: relative;
  width: 320px;
  height: 320px;
  background: var(--gradient-color);
  border-radius: 6rem;
  justify-self: center;
  margin-top: 3rem;
}

/* === .home__img === */
.app__img {
  width: 800px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  mask-image: linear-gradient(var(--first-color) 80%, transparent 90%);
  filter: var(--shadow-img-big);
}

#Back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* background: var(--first-color); */
  color: var(--white);
  padding: 14px 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  bottom: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  border-radius: 30px;
  background: none;
}
/*=============== MAP ===============*/
/* نقشه */
/* === .map__container === */
.map__container {
  row-gap: 3rem;
  padding-bottom: 3rem;
}

/* === .map__area === */
.map__area {
  position: relative;
  width: 320px;
  height: 320px;
  overflow: hidden;
  border-radius: 6rem;
  box-shadow: var(--shadow-small);
  justify-self: center;
}

/* === .map__contnet === */
.map__contnet {
  row-gap: 2rem;
}

/* === .map__card === */
.map__card {
  text-align: center;
  display: grid;
  row-gap: 1rem;
}

/* === .map__title === */
.map__title {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.5rem;
  font: var(--h3-font-size);
}

/* === .map__title i === */
.map__title i {
  font-size: 1.5rem;
  font-weight: initial;
  color: var(--first-color);
}

/* === .map__info === */
.map__info {
  font-style: initial;
}

/* === .map__area iframe === */
.map__area iframe {
  width: 100%;
  height: 100%;
}

/* === .map__img === */
.map__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: all 0.6s;
}

/* === .map__area:hover .map__img === */
.map__area:hover .map__img {
  transform: translateX(-100%);
}

/*=============== FOOTER ===============*/

/* === .footer === */
.footer {
  background-color: var(--first-color-light);
  padding-block: 4rem 2rem;
}

/* === .footer__container === */
.footer__container {
  row-gap: 3rem;
}

/* === .footer__logo === */
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 0.25rem;
  margin-bottom: 1rem;
}

/* === .footer__logo i === */
.footer__logo i {
  font-size: 1.5rem;
  color: var(--text-color);
  transition: color 0.4s;
}

/* === .footer__logo span === */
.footer__logo span {
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  color: var(--first-color);
}

/* === .footer__description === */
.footer__description {
  margin-bottom: 2rem;
}

/* === .footer__social === */
.footer__social {
  display: flex;
  column-gap: 0.75rem;
}

/* === .footer__social-link === */
.footer__social-link {
  width: 40px;
  height: 40px;
  background-color: var(--container-color);
  box-shadow: var(--shadow-small);
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--text-color);
  transition: all 0.4s;
}

.footer__social-link:hover {
  background-color: var(--first-color);
  box-shadow: 0 4px 8px --shadow-first-color;
}

/* === .footer__content === */
.footer__content {
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

/* === .footer__newsletter === */
.footer__newsletter {
  grid-column: 1 /3;
}

/* === .footer__title === */
.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
}

/* === .footer__links === */
.footer__links {
  display: grid;
  row-gap: 0.5rem;
}

/* === .footer__link === */
.footer__link {
  color: var(--text-color);
  transition: color 0.4s;
}

.footer__link:hover {
  color: var(--title-color);
}

/* === .footer__form === */
.footer__form {
  margin-top: 1rem;
  background-color: var(--container-color);
  box-shadow: var(--shadow-small);
  padding: 0.75rem 0.5rem;
  border-radius: 1rem;
  display: flex;
  column-gap: 0.5rem;
  transition: all 0.4s;
}

/* === .footer__input === */
.footer__input {
  width: 100%;
  background: transparent;
  color: var(--text-color);
  padding-left: 0.75rem;
}

/* === .footer__button === */
.footer__button {
  width: 48px;
  height: 48px;
  background-color: var(--first-color);
  box-shadow: var(--shadow-first-color);
  border-radius: 0.75rem;
  font-size: 1.5rem;
  color: var(--white-color);
  cursor: pointer;
  transition: all 0.4s;
}

.footer__button {
  background-color: var(--first-color-alt);
}

/* === .footer__copy === */
.footer__copy {
  display: block;
  margin-top: 5rem;
  text-align: center;
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

/*=============== SCROLL BAR ===============*/

/* === ::-webkit-scrollbar === */
::-webkit-scrollbar {
  width: 0.6rem;
  border-radius: 1rem;
  background-color: hsl(45, 32%, 70%);
}

/* === ::-webkit-scrollbar-thumb === */
::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background-color: hsl(45, 32%, 60%);
}

::-webkit-scrollbar-thumb:hover {
  border-radius: 1rem;
  background-color: hsl(45, 32%, 50%);
}

/*=============== SCROLL UP ===============*/

/* === .scrollup === */
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--body-color);
  box-shadow: var(--shadow-big);
  color: var(--title-color);
  display: inline-flex;
  padding: 6px;
  font-size: 1.3rem;
  border-radius: 0.75rem;
  z-index: var(--z-tooltip);
  transition: all 0.4s;
}

.scrollup:hover {
  transform: translateY(-0.5rem);
}

/* === .show-scroll === */
.show-scroll {
  bottom: 3rem;
}

/* === .active-link === */
.active-link {
  color: var(--first-color);
}

/* === .shadow-header === */
.shadow-header {
  box-shadow: var(--shadow-big);
}

/* /////////////////////////////////////// RESPONSIVE //////////////////////////////////////////// */

/* For small devices */
/* برای دستگاه‌های کوچک */

/* === @media screen and (max-width: 360px) === */
@media screen and (max-width: 360px) {
  /* === .container === */
  .container {
    margin-inline: 1rem;
  }

  /* === .home__image === */
  .home__image {
    width: 100%;
  }

  /* === .menu__container === */
  .menu__container {
    grid-template-columns: 180px;
    justify-content: center;
  }

  /* === .reviews__container === */
  .reviews__container {
    row-gap: 4rem;
  }

  /* === .reviews__comment === */
  .reviews__comment {
    width: 85%;
  }

  /* === .footer__content === */
  .footer__content {
    gap: 2rem;
  }
}

/* === @media screen and (min-width: 540px) === */
@media screen and (min-width: 540px) {
  /* === .nav__menu === */
  .nav__menu {
    width: 50%;

    /* === .home__container === */
    .home__container,
    .reviews__container {
      grid-template-columns: 380px;
      justify-content: center;
    }
  }

  /* === .menu__container === */
  .menu__container {
    grid-template-columns: repeat(2, 180px);
    justify-content: center;
  }

  /* === .footer__form === */
  .footer__form {
    width: 360px;
  }
}

/* For medium devices */
/* برای دستگاه‌های متوسط */
/* === @media screen and (min-width: 768px) === */
@media screen and (min-width: 768px) {
  .nav__menu {
    display: none;
  }
  .nav__menu.show-menu {
    display: block;
  }
  /* === .service__container === */
  .service__container {
    grid-template-columns: repeat(2, 220px);
  }

  /* === .menu__container === */
  .menu__container {
    grid-template-columns: repeat(3, 180px);
    justify-content: center;
  }

  /* === .footer__content === */
  .footer__content {
    grid-template-columns: repeat(3, max-content);
  }

  /* === .footer__newsletter === */
  .footer__newsletter {
    grid-column: initial;
  }
}

/* For large devices */
/* برای دستگاه‌های بزرگ */

/* === @media screen and (min-width: 1150px) === */
@media screen and (min-width: 1150px) {
  /* === .container === */
  .container {
    margin-inline: auto;
  }

  /* === .nav === */
  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  /* === .nav__toggle === */
  .nav__toggle {
    display: none;
  }

  /* === .nav__list === */
  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }

  /* === .nav__theme === */
  .nav__theme {
    position: initial;
    font-size: 1.5rem;
  }

  /* === .nav__menu === */
  .nav__menu {
    width: initial;
    display: flex;
    column-gap: 4rem;
    align-items: center;
  }

  /* === .section === */
  .section {
    padding-block: 7rem 2rem;
  }

  /* === .home__container === */
  .home__container {
    grid-template-columns: 500px 520px;
    align-items: center;
    column-gap: 5rem;
    padding-block: 4rem;
  }

  /* === .home__data === */
  .home__data {
    text-align: initial;
    row-gap: 5rem;
  }

  /* === .home__title === */
  .home__title {
    margin-bottom: 5rem;
  }

  /* === .home__description === */
  .home__description {
    font-size: var(--h3-font-size);
    margin-bottom: 0;
  }
  .home__text {
    height: 1px;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    margin-bottom: 0;
  }
  /* === .home__social === */
  .home__social {
    height: 10px;
    display: flex;
    justify-content: center;
    /* column-gap: 0.75rem; */
    /* margin-top: 0; */
    padding: 0;
    margin: 0;
  }
  .home__social a {
    margin-top: 0;
  }
  /* === .home__image === */
  .home__image {
    width: 520px;
    height: 520px;
    border-radius: 11rem;
  }

  /* === .home__img === */
  .home__img {
    width: 190%;
  }

  /* === .home__phone === */
  .home__phone {
    top: 15rem;
    right: -4rem;
    padding: 0.75rem;
    border-radius: 1.25rem;
  }

  /* === .home__icon === */
  .home__icon {
    width: 48px;
    height: 48px;
    border-radius: 1rem;
    font-size: 2rem;
  }

  /* === .home__number === */
  .home__number {
    font-size: var(--normal-font-size);
  }

  /* === .home__comment === */
  .home__comment {
    left: 1.5rem;
    bottom: -3rem;
    width: 320px;
    padding: 2rem 3rem;
    font-size: var(--normal-font-size);
  }

  /* === .home__comment::before, .home__comment::after === */
  .home__comment::before,
  .home__comment::after {
    font-size: 3rem;
  }

  /* === .section__title === */
  .section__title {
    margin-bottom: 3.5rem;
  }

  /* === .section__subtitle === */
  .section__subtitle {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }

  /* === .service__container === */
  .service__container {
    grid-template-columns: repeat(3, 220px);
    column-gap: 10rem;
  }

  /* === .service__img === */
  .service__img {
    width: 180px;
    margin-bottom: 2rem;
  }

  /* === .menu__container === */
  .menu__container {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2rem;
  }

  /* === .menu__card === */
  .menu__card {
    padding: 1rem 1.5rem 2rem;
  }

  /* === .menu__img === */
  .menu__img {
    width: 160px;
  }

  /* === .menu__name, .menu__price === */
  .menu__name,
  .menu__price {
    font-size: var(--h2-font-size);
  }

  /* === .menu__amount === */
  .menu__amount {
    font-size: var(--normal-font-size);
    margin-block: 0.5rem 1rem;
  }

  /* === .menu__button === */
  .menu__button {
    left: 1.5rem;
    bottom: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 1rem;
    font-size: 2rem;
  }

  /* === .reviews__container === */
  .reviews__container {
    grid-template-columns: 450px 560px;
    column-gap: 5rem;
    padding-block: 7rem;
  }

  /* === .reviews__image === */
  .reviews__image {
    width: 450px;
    height: 450px;
    border-radius: 9rem;
    border: -1;
  }

  /* === .reviews__img === */
  .reviews__img {
    width: 380px;
  }

  /* === .reviews__content === */
  .reviews__content {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  /* === .reviews__content :is(.section__title, .section__subtitle) === */
  .reviews__content :is(.section__title, .section__subtitle) {
    text-align: initial;
  }

  /* === .reviews__card === */
  .reviews__card {
    margin-left: auto;
    margin-right: auto;
  }

  .reviwslist {
    width: 100%;
  }
  /* === .reviews__profile === */
  .reviews__profile {
    justify-content: initial;
    column-gap: 1rem;
    margin-top: 6rem;
  }

  /* === .reviews__photo === */
  .reviews__photo {
    width: 80px;
  }

  /* === .reviews__data === */
  .reviews__data {
    row-gap: 0.5rem;
  }

  /* === .reviews__comment === */
  .reviews__comment {
    width: 450px;
    text-align: initial;
    box-shadow: 0 4px 8px --shadow-first-color;
  }

  /* === .reviews__comment::before, .reviews__comment::after === */
  .reviews__comment::before,
  .reviews__comment::after {
    font-size: 5rem;
  }

  /* === .reviews__comment::before === */
  .reviews__comment::before {
    right: -3.5rem;
    bottom: -3rem;
  }

  /* === .reviews__comment::after === */
  .reviews__comment::after {
    top: -2.5rem;
    left: -3.5rem;
  }

  /* === html[dir="rtl"] .reviews .swiper-button-prev === */
  html[dir="rtl"] .reviews .swiper-button-prev {
    right: calc(60% - 3rem);
    left: auto;
  }

  /* === html[dir="rtl"] .reviews .swiper-button-next === */
  html[dir="rtl"] .reviews .swiper-button-next {
    left: calc(60% - 3rem);
    right: auto;
  }

  /* === .app__container === */
  .app__container {
    width: initial;
    grid-template-columns: 420px 360px;
    justify-content: center;
    column-gap: 8rem;
    padding-block: 6rem;
    border-radius: 4rem;
  }

  /* === .app__data :is(.section__title, .section__subtitle) === */
  .app__data :is(.section__title, .section__subtitle) {
    text-align: initial;
  }

  /* === .app__description === */
  .app__description {
    margin-block: 0.5rem 5rem;
    padding-right: 2rem;
  }

  /* === .app__image === */
  .app__image {
    width: 520px;
    height: 520px;
  }

  /* === .app__img === */
  .app__img {
    border-radius: 2rem;
  }

  /* === .map__container === */
  .map__container {
    grid-template-columns: 450px 400px;
    justify-content: center;
    align-items: center;
    column-gap: 6.5rem;
    padding-bottom: 5rem;
  }

  /* === .map__area === */
  .map__area {
    width: 450px;
    height: 450px;
    border-radius: 9rem;
  }

  /* === .map__content === */
  .map__content {
    grid-template-columns: repeat(2, max-content);
    gap: 4rem 5rem;
  }

  /* === .footer === */
  .footer {
    padding-block: 6rem 3rem;
  }

  /* === .footer__container === */
  .footer__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
  }

  /* === .footer__form === */
  .footer__form {
    width: 230px;
  }

  /* === .scrollup === */
  .scrollup {
    right: 3rem;
  }
}

/* ------------------------------------------- */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 1001;
}

.logo i {
  color: var(--accent-color);
  font-size: 1.8rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.nav-links a.active {
  background: rgba(255, 255, 255, 0.2);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 50%;
  transform: translateX(50%);
  width: 6px;
  height: 6px;
  background-color: var(--accent-color);
  border-radius: 50px;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
