@font-face {
  font-family: "IRANSansWeb(FaNum)";
  src: url("../fonts/IRANSansWebFaNum.eot");
  src: url("../fonts/IRANSansWebFaNum.eot?#iefix") format("embedded-opentype"),
    url("../fonts/IRANSansWebFaNum.woff2") format("woff2"),
    url("../fonts/IRANSansWebFaNum.woff") format("woff"),
    url("../fonts/IRANSansWebFaNum.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Far.Yekan";
  src: url("../fonts/FarYekan.eot");
  src: url("../fonts/FarYekan.eot?#iefix") format("embedded-opentype"),
    url("../fonts/FarYekan.woff2") format("woff2"),
    url("../fonts/FarYekan.woff") format("woff"),
    url("../fonts/FarYekan.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-accent: #e4c490;
  --color-primary: #0c2423;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Far.Yekan";
}

html {
  scroll-behavior: smooth !important;
}

body {
  background-color: var(--color-primary);
  color: #fff;
  font-family: "Far.Yekan";
  overflow-x: hidden;
}
section {
  scroll-margin-top: 200px;
}

.text-primary {
  color: var(--color-accent) !important;
}
.bg-box {
  background-image: url("./../img/texture.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 2rem;
}
.bg-menu {
  background-image: url("./../img/testimonial-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  /* height: 800px !important; */
  min-height: 800px; /* Changed to min-height for responsiveness */
  overflow-y: auto;
}

.menu-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #0c2423a2;
  left: 0;
  top: 0;
}

.menu-cat-title {
  font-size: 16px;
  font-weight: bold;
  color: #baad93;
}

.menu-cat-title::before,
.menu-cat-title::after {
  content: "";
  width: 100px;
  height: 2px;
  background-color: var(--color-accent);
  border-radius: 20px;
  top: 50%;
  position: absolute;
}
.menu-cat-title::before {
  right: 150%;
}

.menu-cat-title::after {
  left: 150%;
}

.img-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  left: 0;
  top: 0;
}

.img-overlay::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 3px double var(--color-accent);
  width: 90%;
  height: 90%;
  transform: translate(-50%, -50%);
  transition-duration: 300;
}

@keyframes rotateFull {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(189deg);
  }
}

.rotate_full {
  animation: rotateFull 5s linear infinite forwards;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bg-about {
  background-image: url("https://royal-antic.ir/wp-content/uploads/2025/09/royal-antique-32-816x545.jpg");
  background-size: cover; /* Changed to cover for responsiveness */
  background-attachment: fixed;
  background-position: center; /* Added for better mobile view */
  width: 100%;
  min-height: 700px; /* Changed to min-height */
  position: relative;
  padding: 2rem;
}
.double-border {
  position: relative;
  text-align: justify;
  border: 2px solid var(--color-accent);
}
.double-border::after {
  content: "";
  border: 2px solid var(--color-accent);
  height: 106%;
  width: 90%;
  position: absolute;
}

.double-border::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-item {
  overflow: hidden;
  border-radius: 4px;
}

.blog-item:hover img {
  transform: scale(1.1);
}

.blog-item img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-duration: 300ms;
}
.blog-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 170px;
  background: rgba(0, 0, 0, 0.7);
  background: -webkit-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0)
  );
  background: -ms-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0)
  );
  z-index: 1;
}

.blog-item .over {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog-item p {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 62px;
  padding: 1rem;
  z-index: 1;
}

.hover-105 {
  transition-duration: 300ms;
}

.hover-105:hover img {
  transform: scale(1.02);
}

.hero-btn {
  width: 120px;
  height: 60px;
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  transform: translateY(-50px);
  background-color: #151515;
  color: rgb(168, 167, 167);
  z-index: 102;
  padding: 1rem;
  border-radius: 6px;
}

#mobileMenu {
  transition: 300ms ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(200%) scale(0);
}
#mobileMenu.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.overlay {
  width: 100%;
  height: fit-content;
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  transform: translateY(-150px) rotate(180deg);
  color: rgb(168, 167, 167);
  z-index: 100;

  border-radius: 6px;
}

.overlay img {
  object-fit: cover;
}

/* Header Styles */
header {
  width: 100%;
  color: white;
  overflow: hidden;
}

.bg-header {
  background-color: #171819;
  width: 100%;
  color: white;
  padding: 25px 20px 0 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.curved-rectangle {
  --c: 85;
  width: 130px;
  aspect-ratio: 3/2;
  background: #151515;
  transform: rotate(180deg);
  margin: 0 auto;
  mask: radial-gradient(
    calc(var(--c) * 1%) 100% at 50% calc(-100% * cos(asin(50 / var(--c)))),
    #0000 calc(100% - 1px),
    #000
  );
  clip-path: ellipse(calc(var(--c) * 1%) 100% at top);
}
.container.mx-auto {
  margin: auto !important;
}

.font-lg {
  font-size: 16px !important;
}

.font-xl {
  font-size: 20px !important;
}
.font-3xl {
  font-size: 28px !important;
}

.logo {
  display: flex;
  align-items: center;
}

.logo i {
  color: #ff6b81;
  font-size: 24px;
  margin-left: 10px;
}

.logo h1 {
  font-size: 20px;
}

.hero {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: 60px;
  position: relative;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(20deg);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.anim-rotate {
  animation: rotate 5s infinite alternate-reverse;
  animation: rotate 3s linear infinite alternate-reverse;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  width: 100%;
  max-width: 800px;
}

.hero h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.categories,
.offers {
  padding: 30px 20px;
}
.section-title {
  font-size: 20px;
  margin-bottom: 20px;
  border-right: 4px solid #9f8755;
  padding-right: 10px;
}
.category-list,
.offers-list {
  display: flex;
  gap: 15px;
  overflow-x: auto;
}
.category-item,
.offer-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 5px;
  padding: 15px;
  text-align: center;
  min-width: 200px;
  cursor: pointer;
  background-color: #121111;
}

.category-item img {
  width: 120px;
  height: 120px;
  margin-bottom: 16px;
  object-fit: contain;
}

@keyframes fade-in {
  0% {
    opacity: 0.7;
    transform: rotate(0deg) scale(0.9);
  }
  100% {
    transform: rotate(2deg) scale(1);
    opacity: 1;
  }
}

.category-item:hover img {
  animation: fade-in 0.5s linear infinite alternate-reverse;
  animation-delay: 100ms;
}
.hero p {
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.6;
}

.categories {
  padding: 40px 20px;
}

.discount {
  position: absolute;
  padding: 2px 8px;
  border-radius: 4px;
  background-color: crimson;
  color: white;
  left: 8px;
  bottom: 85%;
}

.products {
  background-repeat: no-repeat;
  background-color: #000;
}

.image-layer {
  background-image: url("./../img/image-3.e.jpg");
  background-attachment: fixed;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  left: 0;
  opacity: 0.4;
  position: absolute;
  top: 0;
  width: 100%;
}

.image-layer-about {
  background-image: url("./../img/slide02.jpg");
  opacity: 0.1 !important;
}

.about-section {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  margin-top: 14rem;
}

@media (max-width: 767px) {
  .about-section {
    margin-top: 4rem;
  }
}

.about-image {
  height: 300px;
  background-image: url("./../img/brush.png");
  background-size: cover;
  background-position: left;
  transform: translateX(-40%);
  padding-left: 80px;
}

.about-content {
  margin-top: 2rem;
}

.about-content p {
  margin-bottom: 20px;
  text-align: justify;
  font-size: 16px;
  color: #cacaca;
}

.features {
  margin: 30px 0;
}

.features li {
  list-style-type: none;
  margin-bottom: 15px;
  padding-right: 25px;
  position: relative;
  font-size: 16px;
}

.features li:before {
  content: "•";
  color: #ff6b81;
  font-size: 24px;
  position: absolute;
  right: 0;
  top: -5px;
}

.read-more {
  display: inline-block;
  background-color: #151515;
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.read-more:hover {
  background-color: #e84393;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 129, 0.3);
}

@media (min-width: 768px) {
  .about-section {
    flex-direction: row;
  }

  .about-image {
    flex: 1;
    height: auto;
  }

  .about-content {
    flex: 1;
    padding: 50px;
  }
}

/* tab menu */

.menu-container {
  padding: 40px;
  max-width: 1024px;
  margin: auto;
  background-image: url("./../img/about-food-bg.png");
  min-height: 300px;
  background-size: cover;
  background-position: center;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.tab {
  flex: 1;
  padding: 10px;
  color: #ccc;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  position: relative;
  margin: 0 1rem;
}

.tab.active {
  border-bottom: 2px double #9f8755;
  color: #9f8755;
  font-weight: bold;
  position: relative;
}

.border-b-tab {
  border-bottom: 1px double #9f8755;
}

.menu-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  margin: 2rem auto;
  margin-bottom: 20px;
  overflow-x: auto;
}

.menu-button {
  padding: 8px 16px;
  background: #2a2a2a;
  color: #ccc;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  width: 120px;
  white-space: nowrap;
}

.menu-button.active,
.menu-button:hover,
.tab:hover {
  background: #9f8755;
  color: black;
  transition-duration: 300ms;
}

.menu-section {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  background-color: #9f885514;
  width: 100%;
  padding: 2rem;
  border-radius: 4px;
  height: 700px;
  position: relative;
  overflow: auto;
}

.menu-section.active {
  display: block;
  opacity: 1;
}
.menu-section::before,
.menu-section::after {
  background: url("./../img/pattern-9.svg") 50% repeat;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 15px;
}
.menu-section::before {
  left: 0;
}

.menu-section::after {
  right: 0;
}

.menu-title {
  font-size: 20px;
  border-bottom: 1px double #9f8755;
  width: 120px;
  text-align: center;
  color: #c89f5b;
  margin: 20px auto;
  margin-top: 0;
  border-radius: 12px;
  padding-bottom: 4px;
}

.item {
  margin: 10px 0;
  border-bottom: 1px dashed #666;
  padding-right: 16px;
  border-radius: 4px;
  padding: 6px 12px;
  padding-bottom: 12px;
  transition-duration: 300ms;
}

div.items {
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: 300ms linear;
}

input.ac {
  opacity: 0;
  visibility: hidden;
  height: 0;
}

label i {
  transition-duration: 300ms;
}

input.ac:checked ~ div.items {
  height: fit-content;
  opacity: 1;
  visibility: visible;
}

input.ac:checked ~ label i {
  transform: rotate(180deg);
}

.item-title {
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f4c66a;
  font-size: 18px;
}

.item p {
  color: #9f8755;
  font-size: 20px;
}

.item-desc {
  font-size: 14px;
  color: #aaa;
  text-align: right;
}

@media (max-width: 767px) {
  .tabs {
    flex-direction: column;
  }

  .tab {
    width: 100%;
  }

  .item p {
    color: #9f8755;
    font-size: 15px;
    text-align: center;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  color: #000 !important;
  width: 80%;
  max-width: 480px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
label {
  display: block;
  margin-bottom: 4px;
}
input,
select {
  display: block;
  width: 100%;
  border: 1px solid #999;
  height: 40px;
  border-radius: 4px;
  color: #000;
  outline: none;
}

.close {
  color: #aaa;
  float: left;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: black;
}

.modal-header {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.modal-body {
  padding: 10px 0;
}

/* swiper */

.testimonials {
  margin: 20px auto;
  max-width: 800px;
  padding: 20px;
}
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.testimonial-title {
  font-size: 20px;
  font-weight: bold;
}
.testimonial-nav {
  display: flex;
  gap: 10px;
}
.testimonial-nav button {
  background-color: #ff2c6b;
  color: white;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 14px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 18px;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.testimonial-card img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin: o auto;
  border: 2px solid gray;
  padding: 2px;
}
.testimonial-card .name {
  margin-top: 10px;
  font-weight: bold;
}
.testimonial-card .stars {
  color: #f5b50a;
  margin-top: 5px;
}

@media (max-width: 600px) {
  .tab {
    padding: 8px 16px;
    font-size: 14px;
  }
  .menu-item {
    font-size: 14px;
  }
}

/* gallery */
.wrapper {
  width: 100%;
  background-size: cover;
  background-image: url("./../img/main-bg.jpg");
  background-color: #242424;
}
.gallery-wrapper {
  background-image: url("./../img/breadcrumb-1.jpg");
  background-repeat: no-repeat;
}

.gallery {
  background-image: url("./../img/about-food-bg.png");
  background-size: cover;
  background-position: center;
  color: white;
  max-width: 1024px;
  margin: 20px auto;
  padding: 40px;
}
.gallery-title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.gallery-thumbs,
.gallery-main {
  width: 100%;
  box-sizing: border-box;
}
.gallery-thumbs .swiper-thumb img,
.gallery .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.swiper-thumb {
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.swiper-thumb.swiper-slide-thumb-active {
  opacity: 1;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
}

.copyright {
  font-size: 12px;
  color: #aaa;
}

/* Utility Classes */

.mx-auto {
  margin: auto !important;
}
.mx-1 {
  margin: 4px !important;
}
.mx-2 {
  margin: 8px !important;
}
.mx-3 {
  margin: 12px !important;
}
.mx-4 {
  margin: 16px !important;
}
.mx-5 {
  margin: 20px !important;
}
.mx-6 {
  margin: 24px !important;
}
.mx-7 {
  margin: 28px !important;
}
.mx-8 {
  margin: 32px !important;
}
.my-1 {
  margin: 5px 0 !important;
}
.my-2 {
  margin: 10px 0 !important;
}
.my-3 {
  margin: 15px 0 !important;
}

.my-4 {
  margin: 20px 0 !important;
}

.my-5 {
  margin: 25px 0 !important;
}
.my-6 {
  margin: 30px 0 !important;
}

.my-8 {
  margin: 40px 0 !important;
}

.mb-1 {
  margin-bottom: 4px !important;
}
.mb-2 {
  margin-bottom: 8px !important;
}
.mb-3 {
  margin-bottom: 12px !important;
}

.mb-4 {
  margin-bottom: 16px !important;
}

.mb-5 {
  margin-bottom: 20px !important;
}

.mb-6 {
  margin-bottom: 24px !important;
}

.mb-7 {
  margin-bottom: 28px !important;
}

.mb-8 {
  margin-bottom: 32px !important;
}

.p-1 {
  padding: 4px;
}

.p-2 {
  padding: 8px;
}

.p-3 {
  padding: 12px;
}

.p-4 {
  padding: 16px;
}
.p-5 {
  padding: 20px;
}
.p-6 {
  padding: 24px;
}
.p-7 {
  padding: 28px;
}
.p-8 {
  padding: 32px;
}

.px-1 {
  padding: 0 4px;
}
.px-2 {
  padding: 0 8px;
}
.px-3 {
  padding: 0 12px;
}
.px-4 {
  padding: 0 16px;
}
.px-5 {
  padding: 0 20px;
}
.px-6 {
  padding: 0 24px;
}
.px-7 {
  padding: 0 28px;
}
.px-8 {
  padding: 0 32px;
}

.py-1 {
  padding: 4px 0;
}
.py-2 {
  padding: 8px 0;
}
.py-3 {
  padding: 12px 0;
}
.py-4 {
  padding: 16px 0;
}
.py-5 {
  padding: 20px 0;
}
.py-6 {
  padding: 24px 0;
}
.py-7 {
  padding: 28px 0;
}

.pt-1 {
  padding-top: 4px;
}
.pt-2 {
  padding-top: 8px;
}
.pt-3 {
  padding-top: 12px;
}
.pt-4 {
  padding-top: 16px;
}
.pt-5 {
  padding-top: 20px;
}
.pt-6 {
  padding-top: 24px;
}
.pt-7 {
  padding-top: 28px;
}

.pt-8 {
  padding-top: 32px;
}

.pb-1 {
  padding-bottom: 4px;
}
.pb-2 {
  padding-bottom: 8px;
}
.pb-3 {
  padding-bottom: 12px;
}
.pb-4 {
  padding-bottom: 16px;
}
.pb-5 {
  padding-bottom: 20px;
}
.pb-6 {
  padding-bottom: 24px;
}
.pb-7 {
  padding-bottom: 28px;
}
.pb-8 {
  padding-bottom: 32px;
}

.text-xl {
  font-size: 20px !important;
}
.text-2xl {
  font-size: 24px !important;
}
.text-3xl {
  font-size: 28px !important;
}
.text-4xl {
  font-size: 32px !important;
}
.text-5xl {
  font-size: 36px !important;
}
.text-6xl {
  font-size: 40px !important;
}

.flex-col-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* اضافه کردن media queries */
@media (max-width: 768px) {
  /* استایل‌های موبایل */
  header {
    padding: 15px 10px 0 10px;
  }

  .hero {
    min-height: 400px;
    margin-top: 10px;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .category-list {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .category-item {
    width: 45%;
    margin-bottom: 15px;
  }

  .products .grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    flex-direction: column;
  }

  .about-image {
    transform: none;
    padding-left: 0;
    height: 200px;
  }

  .menu-buttons {
    justify-content: start;
  }
  .menu-section {
    padding: 1rem;
  }

  .item {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  /* استایل‌های موبایل کوچک */
  .hero h2 {
    font-size: 24px;
  }

  .category-item {
    width: 100%;
  }

  .testimonial-card {
    padding: 15px;
  }

  .gallery {
    padding: 20px;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-links a {
    margin: 5px 0;
  }
}

/* اضافه کردن کلاس‌های کمکی برای رسپانسیو */
.hidden {
  display: none;
}

.block {
  display: block;
}

@media (min-width: 768px) {
  .md\:block {
    display: block;
  }

  .md\:hidden {
    display: none;
  }

  .md\:flex {
    display: flex;
  }
}

@media (max-width: 768px) {
  .categories .category-list {
    flex-direction: column;
    gap: 2rem;
  }

  .categories .category-item img {
    width: 100px;
  }

  .categories .category-item p {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .categories h1 {
    font-size: 1.5rem;
  }

  .categories p {
    font-size: 0.75rem;
  }

  .categories img {
    width: 80px;
  }
}

/* about form */

.header {
  text-align: center;
  margin-bottom: 30px;
}

.header h1 {
  color: wheat;
  font-size: 28px;
}

.booking-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.booking-info {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-image: url("./../img/pattern-2.png");
  text-align: center;
  font-size: 20px;
}

.booking-form {
  flex: 2;
  min-width: 300px;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  width: 100%;
  left: 0;
  background-color: var(--color-primary);
  padding: auto 1rem;
  display: flex;
  justify-content: center;
}

.navbar > div {
  background-color: var(--color-primary);
  padding: 1rem;
  border-radius: 2px;
  width: 90%;
}

.contact-box,
.hours-box {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 5px;
}

.contact-box h3,
.hours-box h3,
.form-title {
  color: #9f8755;
  font-size: 18px;
  font-weight: bold;
  margin-top: 0;
  padding-bottom: 10px;
}
.contact-box p {
  color: #a7a7a7;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: wheat;
}

.booking-form .form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid hsla(0, 0%, 100%, 0.158);
  border-radius: 4px;
  font-size: 16px;
  background-color: #1a1b1c;
  min-height: 45px;
  color: wheat;
  text-align: right;
}

.btn-book {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #9f8755;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-book:hover {
  background-color: #a00;
}

@media (max-width: 768px) {
  .booking-container {
    flex-direction: column;
  }

  .header h1 {
    font-size: 24px;
  }

  .bg-header {
    padding: 25px 5px 0 5px;
  }
}

/* swiper */

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tab-content {
  min-height: 500px !important;
  margin-bottom: 1rem;
}

input,
select {
  text-indent: 1rem;
  margin-bottom: 8px;
}
textarea {
  border: 1px solid #ccc;
}

#priceModal label {
  color: #000 !important;
  margin-bottom: 1rem;
}

.blog-content p {
  line-height: 2;
  text-align: justify;
}

.sidebar {
  background: #0f1a1a;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* استایل تگ‌ها */
.tag {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.tag:hover {
  transform: scale(1.05);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999999;
}
.modal-content {
  max-width: 500px;
  width: 90%;
  background: linear-gradient(
    135deg,
    rgb(102, 126, 234) 0%,
    rgb(118, 75, 162) 100%
  );
  padding: 3px;
  border-radius: 20px;
  animation: 0.4s ease 0s 1 normal none running slideUp;
}
.modal-inner {
  background: rgb(30, 41, 59);
  border-radius: 18px;
  padding: 40px;
}
.modal.show {
  display: block;
}
.modal-inner input,
.modal-inner select {
  color: #fff;
  padding: 20px 5px;
  background-color: ;
}
.close {
  color: rgb(255, 255, 255);
  float: left;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: 0.3s;
}
