@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;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Far.Yekan";
}

html {
  scroll-behavior: smooth !important;
}

body {
  background-color: #151515;
  color: #333;
  font-family: "Far.Yekan";
  overflow-x: hidden;
}
section {
  scroll-margin-top: 200px;
}

.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);
  /* background-color: #151515; */
  color: rgb(168, 167, 167);
  z-index: 100;

  border-radius: 6px;
}

.overlay img {
  object-fit: cover;
}

/* Header Styles */
header {
  /* background-color: white; */
  /* padding: 25px 20px 0 20px; */
  /* background-position: center; */
  /* background-size: cover; */
  /* background-repeat: no-repeat; */
  /* display: flex;
    justify-content: space-between;
    align-items: center; */
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  /* position: fixed; */
  width: 100%;
  color: white;
  /* top: 0; */
  /* background-image: url("./../img/main-bg.jpg"); */
  /* z-index: 1000; */
  overflow: hidden;
}

.bg-header {
  /* background-image: url('./../img/main-bg.jpg');  */
  background-color: #171819;
  width: 100%;
  color: white;
  padding: 25px 20px 0 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* HTML: <div class="curved-rectangle"></div> */
.curved-rectangle {
  --c: 85; /* control the curvature (a percentage value without unit bigger than 50%)*/

  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 Section */
.hero {
  /* background-image: url('./../img/main-bg.jpg'); */
  /* background-size: cover;
    background-position: center; */
  /* height: 600px; */

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

/* animate rotate */
@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;
  /* background-color: rgba(0, 0, 0, 0.1); */
}

.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:hover,
.offer-item:hover {
  background-color: #0e0f10;
  /* transform: scale(1.05); */
  transition: all 0.3s ease;
}
.category-item img {
  width: 120px;
  height: 120px;
  margin-bottom: 16px;
  object-fit: contain;
  padding: 10px;
}

@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 {
  /* transition: 100ms linear; */
  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 Section */
.categories {
  padding: 40px 20px;
  /* background-color: white; */
}

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

.products {
  /* background-image: url("./../img/hero-bg-2.jpg"); */
  background-repeat: no-repeat;
  background-color: #000;
  /* background-size: contain; */
}

.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 */
.about-section {
  display: flex;
  flex-direction: column;
  /* background-color: white; */
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  margin-top: 14rem;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

@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;
  /* position: absolute; */
}

.about-content {
  padding: 30px;
  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;
  /* background: #333; */
  color: #ccc;
  font-size: 20px;
  text-align: center;
  /* border-radius: 6px; */
  cursor: pointer;
  /* transition: 0.3s; */
  /* height: 60px; */
  /* display: flex;
  align-items: center;
  justify-content: center; */
  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;
  /* flex-wrap: wrap; */
  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;
}

.item:hover {
  background-color: #9f8855a2;
  cursor: pointer;
  transform: scale(1.03);
}

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 {
  /* max-height:100px; */
  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;
  /* margin-bottom: 6px; */
  font-size: 18px;
}

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

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

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

  .tab {
    width: 100%;
  }

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

/* modal */

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 80%;
  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: 380px;
  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;
}

/* 

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 20px;

}
    /*
.tab {
    padding: 10px 20px;
     border: 2px solid #ccc; 
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.tab.active {
    background-color: #FF2157;
    color: white;
    font-weight: bold;
     border-color: #ff2c6b; 
}
.menu-items {
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}
.menu-items.fade-in {
    display: block;
    opacity: 1;
}
.menu-item {
    background: #f8f8f8;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
@media (max-width: 600px) {
    .tab {
        padding: 8px 16px;
        font-size: 14px;
    }
    .menu-item {
        font-size: 14px;
    }
} */

/* 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;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  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;
}

/* اضافه کردن 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;
  /* background-color: #fff; */
  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;
  /* background-color: #fff; */
  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: 12px;
  width: 100%;
  left: 0;
  padding: 1rem;
  display: flex;
  justify-content: center;
  /* transform: translateX(-50%); */
}

.navbar > div {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  border-radius: 2px;
}

.contact-box,
.hours-box {
  margin-bottom: 20px;
  padding: 15px;
  /* background-color: #f9f9f9; */
  border-radius: 5px;
}

.contact-box h3,
.hours-box h3,
.form-title {
  color: #9f8755;
  font-size: 18px;
  font-weight: bold;
  margin-top: 0;
  /* border-bottom: 1px solid #ddd; */
  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;
  }

  .navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    width: 100%;
    left: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    /* transform: translateX(-50%); */
  }
}

@keyframes logo-fade-in {
  from {
    opacity: 0;
    transform: translate(-50%) scale(0.5);
  }
  to {
    opacity: 0.7;
    transform: translate(-50%) scale(1);
  }
}

.slider_logo {
  position: absolute;
  visibility: visible;
  opacity: 0.5;
  left: 50%;
  top: 50%;
  transform: translate(-50%);
  width: 120px;
  height: 120px;
}

@media (max-width: 767px) {
  .slider_logo {
    position: absolute;
    visibility: visible;
    opacity: 0.5;
    left: 50%;
    top: 30%;
    transform: translate(-50%);
  }
}
.animate-logo-in {
  animation: logo-fade-in 1s ease-out forwards; /* Adjust duration as needed */
}
.swiper-backface-hidden .swiper-slide{max-height: 600px;}