@import url(../font/stylesheet.css);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "B Yekan";
  transition: all 400ms linear;
}

:root {
  --carmine: #940e18ff;
  --jet: #2d3033ff;
  --seasalt: #f6f8f8ff;
  --antiflash-white: #e7eaebff;
  --fire-engine-red: #c5171dff;
}
.rtl {
  direction: rtl;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: var(--jet);
}
body {
  animation: body 500ms ease-in-out;
  scroll-behavior: smooth;
}
button {
  color: var(--jet);
}
@keyframes body {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.adv-container {
  padding: 7rem 25px;
  display: flex;
  justify-content: space-around;
}

.adv_box {
  width: 70%;
}
.sidebar {
  display: flex;
  flex-direction: column;
  height: auto;
}
.best-adv {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-height: 300vh;
}
.adv-box {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 10px;
  gap: 10px;
}
.best-adv-item {
  width: 100%;
  cursor: pointer;
  height: 200px;
  position: relative;
}
.best-adv-item img {
  width: 100%;
  height: calc(100% - 10px);
  border-radius: 10px;
  z-index: 1;
}
.best-adv-item::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;
}
.best-adv-item .title {
  z-index: 2;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--antiflash-white);
}
.best-adv-item .off {
  position: absolute;
  z-index: 3;
  padding: 5px 7px;
  background: var(--carmine);
  color: var(--seasalt);
  left: 10px;
  top: 5px;
  border-radius: 32px;
}
.best-adv .title {
  text-align: center;
  margin: 15px 0;
  font-size: 1.2rem;
  font-weight: 500;
}
.contact-form {
  display: flex;
  justify-content: center;
  min-height: 270px;

  padding: 10px;
  border-radius: 10px;
  box-shadow: 0px 0px 5px #9b9b9b;
}
.contact-form form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: #9b9b9b;
  text-align: center;
}
.contact-form form > :nth-child(3) {
  margin-top: 20px;
}
.name-input,
.phone-input {
  display: flex;
  gap: 10px;
  align-items: center;
  height: 40px;
  width: 90%;
  border: 1px solid #9b9b9b;
  padding: 10px;
  border-radius: 10px;
}
.contact-form button {
  width: 90%;
  border-radius: 10px;
  height: 50px;
  background: var(--carmine);
  outline: none;
  border: none;
  color: var(--antiflash-white);
  cursor: pointer;
}

.name-input input,
.phone-input input {
  flex: 1;
  height: 100%;
  outline: none;
  background: none;
  border: none;
  font-size: 1.1rem;
}
.phone-input input::placeholder,
.name-input input::placeholder {
  color: #9b9b9b;
}

.name-input i,
.phone-input i {
  font-size: 1.4rem;
  color: #9b9b9b;
}
.gallery {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-height: 500px;
  flex-direction: column;
}
.gallery__item--large {
  flex: 1;
  width: 90%;
}
.gallery__item--large img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 0px 10px black;
}
.gallery__column {
  display: flex;
  position: relative;
  gap: 10px;
  overflow-x: auto;
  height: 100%;
  max-height: 450px;
  align-items: center;
  width: 100%;
  justify-content: center;
  scroll-behavior: smooth;
}
.gallery-box {
  width: 90%;
  position: relative;
}
.gallery-buttons {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--antiflash-white);
  box-shadow: 0px 0px 10px var(--jet);
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
}
#gallery-button-prev {
  right: -20px;
}
#gallery-button-next {
  left: -20px;
}
.gallery__item--small img {
  width: 200px;
  max-height: 150px;
  filter: blur(2px);
  border-radius: 10px;
  transition: 200ms ease-in-out;
  height: auto;
  cursor: pointer;
}

.gallery__item--small img:hover {
  box-shadow: 0px 0px 20px black;
  border-radius: 0;
  filter: blur(0);
}

.menu-adv {
  width: 100%;
  scroll-behavior: smooth;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-adv-box {
  border-bottom: 1px solid #9b9b9b;
  width: 90%;
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
}

.menu-adv-item {
  width: 90%;
  display: flex;
  scroll-behavior: smooth;
  flex-direction: column;
  margin-top: 20px;
  align-items: center;
}

.menu-adv-item .about-hall {
  display: flex;
  border: 2px solid rgb(216, 216, 216);
  width: 100%;
  border-radius: 10px;
  padding: 10px;
  font-size: 0.9rem;
  gap: 15px;
  font-weight: 100;
  flex-direction: column;
  margin: 20px 0px;
}
.menu-adv-item .about-hall .about-box {
  word-spacing: 2px;
  line-height: 25px;
}
.menu-adv .about-hall .title {
  font-size: 1.3rem;
}
#hall-images--box {
  display: flex;
  gap: 10px;
  width: 100%;
  overflow-x: auto;
  padding: 10px;
  max-width: 70vw;
}
#hall-images--box img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 0px 10px gray;
}
#hall-video {
  width: 100%;
  height: 50vh;
  align-items: center;
}
#hall-video video {
  width: 100%;
  height: 100%;
}
#info-contact {
  border: 2px solid rgb(216, 216, 216);
  border-radius: 10px;
  margin: 10px 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 10px;
  min-height: 50vh;
  align-items: center;
  scroll-behavior: smooth;
}
#info-contact .info,
.contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#info-contact .info li,
.contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}
#info-contact .info li i,
.contact li i {
  color: #9b9b9b;
}

.location {
  flex: 0.5;
  display: flex;
  flex-direction: column;
  width: 50%;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.location .frame {
  width: 300px;
  border: 1px solid var(--jet);
  border-radius: 10px;
  height: 200px;
  background: url(../images/icons/logo.png);
  background-position: center;
  background-size: cover;
}
#food-title {
  margin-top: 30px;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--carmine);
}

.location-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}
.location-link p {
  display: flex;
  background: rgb(0, 62, 143);
  gap: 6px;
  padding: 7px 10px;
  color: #f1f1f1;
  cursor: pointer;
  border-radius: 20px;
}
.location-link .apps {
  display: flex;
  gap: 10px;
}
.location-link .apps img {
  object-fit: cover;
  width: 25px;
  height: 25px;
}
#Possibilities-box {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid rgb(216, 216, 216);
}
.title {
  font-size: 1.2rem;
  align-self: flex-start;
  padding: 10px 0;
}
.Possibilities {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  color: #5f5f5f;
}
.Possibilitie-item {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1 0 calc(100% / 3);
}
.food-menu-box {
  width: 100%;
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 10px;
}
.food-menu {
  padding: 10px;
  width: 40%;
  min-width: 50%;
  margin: 10px 0;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  box-shadow: 0px 0px 10px rgba(128, 128, 128, 0.5);
}
.food-menu .food-menu-item {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 5px;
}
.food-menu .food-menu-item .title {
  color: #1a0000;
}
.food-menu .food-menu-item ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: circle;
}
.food-menu .food-menu-item ul li {
  color: #5f5f5f;
}
.food-menu .food-menu-item .line {
  height: 2px;
  background: #c7c7c7;
  border-radius: 10px;
  width: 100%;
}

.comment-box {
  width: 90%;
  display: flex;
  gap: 10px;
  padding: 10px;
  overflow-x: auto;
}
.comment {
  gap: 5px;
  min-width: 300px;
  padding: 10px;
  border: 1px solid #888;
  border-radius: 10px;
  height: 140px;
  overflow-x: auto;
  display: flex;
  flex-direction: column;
}
.comment .user {
  font-size: 1.2rem;
  font-family: monospace;
}
.comment .date {
  display: flex;
  justify-content: space-between;
}
.comment .text {
  flex: 1;
}
.contact-and-social-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-and-social-media .social-media .social-media-box a img {
  width: 30px;
  height: 30px;
  transition: all 400ms ease;
}
.contact-and-social-media .social-media .social-media-box a img:hover {
  transform: rotate(360deg);
}
#questions {
  width: 90%;
  border: 2px solid rgb(216, 216, 216);
  border-radius: 10px;
  padding: 5px 20px;
  display: flex;
  flex-direction: column;
  margin: 20px 0;
  gap: 20px;
}
.questions-box {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  max-height: 300px;
  overflow-y: auto;
}
.questions-box .box-item {
  display: flex;
  padding: 10px;
  flex-direction: column;
}
.questions-box .box-item .question {
  width: 100%;
  color: var(--antiflash-white);
  background: var(--carmine);
  border-radius: 10px 10px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px;
  font-size: 1.3rem;
  z-index: 2;
}
.questions-box .box-item .question i {
  font-size: 2rem;
  cursor: pointer;
}
.questions-box .box-item .answer {
  background: #f0f0f0;
  border-radius: 0px 0px 10px 10px;
  display: none;
  padding: 15px 10px;
  z-index: 1;
  animation: 300ms ease-in-out openAnswer;
}
#icon-menu-adv {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  min-width: 35px;
  z-index: 12;
  background: var(--carmine);
  color: var(--antiflash-white);
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  height: 35px;
  border-radius: 30%;
  outline: none;
  border: none;
  left: 0px;
  display: none;
}
.other-link-box {
  display: flex;
  justify-content: space-between;
  padding: 20px 10px;
  flex-wrap: wrap;
  width: 90%;
}
.other-link-box .link {
  width: 33%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  outline: none;
  cursor: pointer;
  background: #ffc6c6e5;
}
.other-link-box .link a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@keyframes openAnswer {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
#questions .title {
  font-size: 1.3rem;
}
@media screen and (max-width: 1100px) {
  #info-contact {
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    align-items: start;
  }
}
@media screen and (max-width: 890px) {
  .adv-container {
    padding: 7rem 20px;
    flex-direction: column;
  }
  .adv-box {
    flex-direction: row;
    overflow-x: auto;
  }
  .best-adv-item {
    min-width: 300px;
  }
}

@media screen and (max-width: 780px) {
  .other-link-box{
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .other-link-box .link {
    width: 100%;
  }
  #icon-menu-adv {
    display: flex;
  }
  .gallery {
    flex-direction: column;
    width: 100%;
  }
  .gallery__column {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    height: 160px;
  }
  .gallery__column img {
    min-width: 200px;
    height: 140px;
    box-shadow: none;
  }
  #hall-images--box {
    min-width: 100%;
    max-height: 40vh;
  }
  .gallery__item--small img {
    width: 100%;
    border-radius: 10px;
    filter: blur(0);
  }
  .gallery-box {
    width: 100%;
  }
  .adv_box {
    flex: 1;
    width: 100%;
  }
  .menu-adv {
    overflow-x: auto;
    overflow-y: hidden;
    min-width: 100%;
    gap: 20px;
    margin: 20px 0;
  }
  .menu-adv li:nth-child(6) {
    min-width: 150px;
  }
  .menu-adv li:last-child {
    padding-left: 45px;
    min-width: 150px;
  }
  .menu-adv li {
    min-width: 80px;
    text-align: center;
  }
  .menu-adv-item {
    width: 100%;
  }

  .location {
    align-self: center;
  }
  .food-menu {
    min-width: 100%;
  }
  .gallery__item--large {
    width: 100%;
    max-height: 50vh;
  }
  .gallery__item--large img {
    max-height: 50vh;
  }
  .comment-box {
    width: 100%;
  }
  #info-contact {
    flex-direction: column;
    gap: 20px;
    align-items: start;
  }
  #questions {
    width: 100%;
  }
  .menu-adv-box {
    width: 100%;
  }
}
