@import url(../font/stylesheet.css);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "B Yekan";
  transition: all 400ms linear;
}
img {
  object-fit: cover;
}
:root {
  /* CSS HEX */
  --carmine: #940e18ff;
  --jet: #2d3033ff;
  --seasalt: #f6f8f8ff;
  --antiflash-white: #e7eaebff;
  --fire-engine-red: #c5171dff;

  /* CSS HSL */
}
.rtl {
  direction: rtl;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: var(--jet);
}
body {
  animation: body 500ms ease-in-out;
}
@keyframes body {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
::-webkit-scrollbar {
  width: 6px;
  border-radius: 10px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
  cursor: pointer;
}
.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  position: fixed;
  box-shadow: 0px 5px 10px rgb(110, 110, 110);
  border-radius: 0px 0px 10px 10px;
  height: 4rem;
  z-index: 212;
}

.menu-nav {
  display: none;
  z-index: 213;
  display: flex;
  align-items: center;
  width: 40%;
  max-width: 300px;
  justify-content: space-between;
}

.menu-nav li {
  text-align: center;
  width: 33%;
  border-left: 2px solid var(--carmine);
  height: 50%;
}
.menu-nav li:last-child {
  border-left: none;
}

.search-nav {
  gap: 5px;
  border-radius: 10px;
  padding: 10px;
  align-items: center;
  display: flex;
  background: rgb(131, 131, 131);
  background: radial-gradient(
    circle,
    rgb(240, 240, 240) 0%,
    rgba(231, 231, 231, 1) 100%
  );
}
.search-nav input {
  background: none;
  border: none;
  outline: none;
  flex: 1;
  padding: 5px;
  width: 200px;
  animation: openSearchInput 0.7s linear;
}
@keyframes openSearchInput {
  0% {
    opacity: 0;
    width: 0;
  }
  90% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    width: 200px;
  }
}
.search-nav img {
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.add {
  display: block;
}
.hide {
  display: none;
}
.logo-nav img {
  width: 90px;
  height: 90px;
  filter: drop-shadow(0px 0px 5px #464646bd);
}
.bg-menu-nav-mobile {
  display: none;
}

.Home_Page {
  padding: 0 100px;
  padding-top: 8rem;
}

.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100vh;
  position: relative;
  margin-bottom: 6rem;
}
.container .image-box img {
  width: 700px;
}

.container .text-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.container .text-box .title {
  font-size: 1.7rem;
  font-weight: 400;
}
.container .text-box .logo img {
  width: 200px;
}
.container .text-box .btn button {
  padding: 10px 50px;
  border-radius: 10px;
  border: 2px solid var(--carmine);
  box-shadow: 0px 0px 10px gray;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .Home_Page {
    padding: 0 60px;
  }

  .container .image-box img {
    width: 100%;
    display: block;
    margin: 0 auto;
    max-height: 60vh;
  }
  .container .text-box .title {
    font-size: 1.5rem;
  }
  .container .text-box .logo img {
    width: 180px;
  }
}
.menu-nav-mobile {
  display: none;
}

@media screen and (max-width: 780px) {
  .header {
    bottom: 30px;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
    background: rgba(231, 231, 231, 1);
  }
  
  .menu-nav-mobile {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 20px;
    height: 4rem;
    position: fixed;
    bottom: calc(100vh - 4rem);
    transform: translateY(50%) translateX(-50%);
    box-shadow: -0px -30px 1px rgb(255, 255, 255);
    border-bottom: 2px solid rgb(153, 153, 153);
    background: rgb(255, 255, 255);
    width: 100%;
    justify-content: space-between;
    left: 50%;
  }
  .menu-nav-mobile img {
    width: 90px;
    height: 90px;
  }
  .search-nav-mobile {
    flex: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: rgb(131, 131, 131);
    background: radial-gradient(
      circle,
      rgb(240, 240, 240) 0%,
      rgba(231, 231, 231, 1) 100%
    );
    border-radius: 10px;
  }
  .search-nav-mobile img {
    width: 45px;
    height: 45px;
  }
  .mobile-search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    height: 100%;
  }
  .menu-nav {
    width: 100%;
  }
  .search-nav {
    display: none;
  }
  .logo-nav {
    display: none;
  }

  .Home_Page {
    padding: 0 20px;
  }
  .container {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .container .image-box img {
    width: 100%;
    height: auto;
    max-height: 600px;
  }
  .container .text-box .title {
    font-size: 1.4rem;
  }
  .container .text-box .logo img {
    width: 150px;
  }
}
.services-container {
  z-index: 22;
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  position: relative;
}
.services-button-prev,
.services-button-next {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  color: var(--seasalt);
  background: var(--jet);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.services-button-prev {
  right: 0;
}
.services-container .services-container-slider {
  padding: 20px;
  gap: 10px;
  scroll-behavior: smooth;
  display: flex;
  overflow: hidden;
}
.services-container .services-container-slider .services-card-item {
  width: 120px;
  height: 130px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  user-select: none; /* برای جلوگیری از انتخاب متن */
  -webkit-user-select: none; /* برای مرورگرهای WebKit */
  -moz-user-select: none; /* برای مرورگر Firefox */
  -ms-user-select: none;
  justify-content: center;
  gap: 10px;
}
.services-container .services-card-item .service-image-box:hover {
  transform: scale(1.05);
  cursor: pointer;
  box-shadow: 0px 0px 25px rgb(82, 82, 82);
}
.services-container .services-card-item .service-image-box {
  transition: all 100ms linear;
  width: 100px;
  height: 100px;
  box-shadow: 0px 0px 15px rgb(185, 185, 185);
  border-radius: 10px;
  background: #d1d1d149;
}
.services-container .services-card-item .service-image {
  width: 90px;
  height: 90px;
  object-fit: cover;
}
.hall-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.advertising .text-box,
.hall-text-box {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
}
.advertising .text-box .title,
.hall-text-box .title {
  font-size: 2rem;
}
.advertising .text-box .line,
.hall-text-box .line {
  background: var(--carmine);
  box-shadow: 0px 0px 10px gray;
  height: 4px;
  border-radius: 10px;
  flex: 1;
}
.advertising .text-box .brand,
.hall-text-box .brand {
  color: var(--carmine);
  font-size: 1.5rem;
}
.advertising .text-box .brand span,
.hall-text-box .brand span {
  color: var(--jet);
}
.hall-slider-container {
  gap: 10px;
  padding: 10px;
}
.hall-slider-container .hall-card-item {
  width: 260px;
  height: 260px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 10px rgb(39, 39, 39);
  transition: all ease-in-out 200ms;
  position: relative;
}
.hall-slider-container .hall-card-item .sticker {
  position: absolute;
  width: 80px;
  height: 80px;
  right: -40px;
  top: -40px;
}
.hall-slider-container .hall-card-item:hover {
  scale: 1.03;
  cursor: pointer;
  box-shadow: 0px 0px 25px rgb(39, 39, 39);
}
.hall-image {
  width: 100%;
  height: 50%;
  object-fit: cover;
  border-radius: 20px 20px 0px 0px;
}
.hall-caption {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 2px;
  padding: 0px 15px;
  color: gray;
}
.hall-name {
  font-size: 1.4rem;
  align-self: center;
  color: var(--jet);
}
.hall-caption button {
  width: 100%;
  padding: 5px;
  border-radius: 10px;
  border: 2px solid var(--jet);
  color: var(--jet);
  background: var(--seasalt);
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  cursor: pointer;
}
.hall-slider-container {
  position: relative;
  width: 100%;
}
.hall-slider-wrapper {
  height: 310px;
  padding: 10px 30px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 4) - 12px);
  overflow-x: hidden;
  align-items: center;
  justify-content: center;
  gap: 16px;
  scroll-behavior: smooth;
}
.advArrowBtns,
.hall-slider-prev-btn,
.hall-slider-next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  cursor: pointer;

  justify-content: center;
  z-index: 11;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  /* box-shadow: 0px 0px 5px gray; */
  border: none;
  outline: none;
  color: var(--carmine);
  font-size: 3rem;
  font-weight: 100;
}
.draggingAdv .advertising-slide,
.dragging .hall-card-item {
  cursor: grab;
  user-select: none;
}
#firstAdvArrowBtns,
.hall-slider-next-btn {
  left: 10px;
}
#lastAdvArrowBtnsPrev,
.hall-slider-prev-btn {
  right: 10px;
}
@media screen and (max-width: 1200px) {
  .hall-slider-wrapper {
    grid-auto-columns: calc((100% / 4) - 12px);
  }
}
@media screen and (max-width: 1100px) {
  .hall-slider-wrapper {
    grid-auto-columns: calc((100% / 3) - 12px);
  }
}
@media screen and (max-width: 900px) {
  .hall-slider-wrapper {
    grid-auto-columns: calc((100% / 2) - 12px);
  }
}
@media screen and (max-width: 780px) {
  .hall-slider-wrapper {
    overflow-x: auto;
    justify-content: center;
    grid-auto-columns: calc(100% / 2);
  }
}
@media screen and (max-width: 680px) {
  .hall-slider-wrapper {
    overflow-x: auto;
    justify-content: center;
    grid-auto-columns: 100%;
  }
}
.adv-container {
  width: 100%;
  position: relative;
}
.advertising-slider-wrapper {
  height: 310px;
  padding: 10px 30px;
  display: flex;
  overflow-x: hidden;
  align-items: center;
  justify-content: center;
  gap: 16px;
  scroll-behavior: smooth;
}

.advertising-slide {
  position: relative;
  height: 200px;
  width: 300px;
  border-radius: 10px;
  margin: 20px 0;
  display: inline-block;
  display: flex;
  justify-content: center;
  cursor: pointer;
  flex: 1 0 calc((100% / 4) - 12px);
}
.advertising-slide img {
  display: block;
  height: 200px;
  width: 300px;
  border-radius: 10px;
}
.advertising-slide::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  backdrop-filter: blur(1px);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.884), rgba(0, 0, 0, 0));
  pointer-events: none;
  border-radius: 10px;
}
.advertising-slide .title {
  position: absolute;
  bottom: 20px;
  color: var(--antiflash-white);
  z-index: 11;
  font-size: 1.3rem;
}
.image-container {
  width: 100%;
  display: flex;
  justify-content: center;

  margin-top: 2rem;
}
.image-container img {
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 700px;
}
.footer {
  z-index: 123;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: linear-gradient(229deg, #940e18ff, rgb(45, 48, 51));
  color: var(--antiflash-white);
}
.footer .caption {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  text-align: justify;
  .logo {
    font-size: 2rem;
    text-transform: uppercase;
    font-family: monospace;
    background: linear-gradient(30deg, var(--carmine), var(--seasalt));
    background-clip: text;
    color: transparent;
  }
}
.links {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}
.links a {
  text-decoration: underline;
  font-size: 1rem;
  color: var(--antiflash-white);
}
.footer .social-media {
  font-size: 1.3rem;
  i {
    font-size: 2rem;
    background: linear-gradient(30deg, var(--carmine), var(--seasalt));
    margin: 10px 0;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0px 0px 10px var(--jet));
  }
}
@media screen and (max-width: 780px) {
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding-bottom: calc(5rem + 25px);
    align-items: center;
    justify-content: center;
  }
  .footer .caption {
    width: 100%;
    .logo {
      text-align: center;
    }
  }
  .footer .social-media {
    display: flex;
    width: 100%;

    flex-direction: column;
  }
  .Home_Page {
    padding-top: 0;
  }
  .container {
    margin-bottom: 0;
  }
  .advertising-slider-wrapper {
    overflow-x: auto;
  }
}
.about-page {
  padding: 0 20px;
  overflow: hidden;

  display: flex;
  justify-content: space-around;
}
.about-page .box {
  height: 100vh;
  padding-top: 6rem;
  flex: 0.5;
}
.about-page .box:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgb(84, 84, 84);
  gap: 10px;
}
.about-page .box .text-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-page .box .text-box i {
  font-size: 2.2rem;
  background: linear-gradient(300deg, var(--carmine), var(--jet));
  background-clip: text;
  color: transparent;
  cursor: pointer;
}
.about-page .box .text-box .title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--carmine);
  letter-spacing: 2px;
}
.about-page .box .text-box .text {
  color: var(--jet);
  font-size: 1.3rem;
}
.about-page .box:last-child {
  width: 50%;
}
.about-page .box:last-child img {
  min-width: 60%;
  object-fit: cover;
}
@media screen and (max-width: 780px) {
  .about-page {
    flex-direction: column-reverse;
    height: 120vh;
    justify-content: flex-start;
    padding: 9rem 0;
  }
  .about-page .box {
    flex: 1;
    width: 100%;
  }
  .about-page .box .text-box {
    align-items: center;
  }
  .about-page .box:first-child {
    padding: 20px;
    backdrop-filter: blur(20px);

    background: rgba(255, 255, 255, 0.4);
  }
  .about-page .box:last-child {
    width: 100%;
  }
  .about-page .box:last-child img {
    width: 100%;
  }
}

.undefind-page {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.undefind-page .logo {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.undefind-page .logo img {
  width: 200px;
  object-fit: cover;
}
.undefind-page .box {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  padding: 20px;
  box-shadow: 0px 0px 10px gray;
}
.undefind-page .box .title {
  font-size: 2rem;
  color: var(--carmine);
}
.undefind-page .box .text {
  color: var(--jet);
  direction: rtl;
}
.undefind-page .box .btn button {
  padding: 9px 15px;
  background: var(--carmine);
  color: var(--seasalt);
  border: none;
  border-radius: 10px;
  transition: all 400ms ease;
  outline: none;
  box-shadow: 0px 0px 10px gray;
  cursor: pointer;
}
.undefind-page .box .btn button:hover {
  box-shadow: none;
  scale: 0.9;
  opacity: 0.9;
}

.loading-wrapper {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 400px;
  height: 400px;
}

.loading-loader-outer {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 40px;
  border-radius: 20px;
  border-bottom: 1px solid #303030;
  background: #151515;
  box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.5);
  display: flex;
  overflow: hidden;
  z-index: 1;
  align-items: center;
}
.loading-loader-outer .loader-inner {
  position: absolute;
  margin: auto;
  left: -100px;
  width: auto;
  height: 58px;
  color: crimson;
  text-align: center;
  text-shadow: 0 0 20px crimson;
  font-size: 60px;
  z-index: 2;
  animation: load 2s infinite linear;
}
.loading-wrapper h1 {
  position: absolute;
  margin: auto;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 130px;
  height: 40px;
  text-transform: uppercase;
  text-align: left;
  text-shadow: 0 0 20px crimson;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: lighter;
  color: crimson;
  span {
    display: none;
  }
  &::after {
    animation: txt 1s infinite;
    content: "";
  }
}

@keyframes load {
  0% {
    left: -100px;
  }
  100% {
    left: 220px;
  }
}

@keyframes txt {
  0% {
    content: "در حال بارگزاری";
  }
  35% {
    content: "در حال بارگزاری .";
  }
  65% {
    content: "در حال بارگزاری ..";
  }
  100% {
    content: "در حال بارگزاری ...";
  }
}
.loading-wrapper .logo {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.loading-wrapper .logo img {
  width: 200px;
  object-fit: cover;
}
.hide_p {
  display: none;
}

