/* @import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap"); */
/* @import url("https://fonts.cdnfonts.com/css/lt-wave"); */

@font-face {
  font-family: 'LT Wave';
  font-style: normal;
  font-weight: 400;
  src: local('LT Wave'), url('../font/LTWave-Italic.woff') format('woff');
}

@font-face {
  font-family: 'LT Wave';
  font-style: normal;
  font-weight: 300;
  src: local('LT Wave'), url('../font/LTWave-LightItalic.woff') format('woff');
}

@font-face {
  font-family: 'LT Wave';
  font-style: normal;
  font-weight: 700;
  src: local('LT Wave'), url('../font/LTWave-BoldItalic.woff') format('woff');
}


:root {
  --primary-color: #8C2DE1;
  --secondary-color: #BD02E5;
  --font-family: "Work Sans", sans-serif;
  --font-family-mono: "LT Wave", sans-serif;
  --client-logo-w: 180px;
  --client-logo-gallery-w: 175px;
  --icon-color: #fff;
  --active-bg: #000;
}

*,
::after,
::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  overflow-x: hidden; /* Use with caution */
  overflow-y: auto; /* Allow vertical scrolling */
  background-size: cover;
  background-repeat: no-repeat;
  height: 100dvh; /* Test thoroughly */
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text-color);
  font-family: var(--font-family);
  margin: 0; /* Ensure no default margin */
  padding: 0; /* Ensure no default padding */
}

.img-fluid {
  max-width: 100%;
  height: auto;
}
::-webkit-scrollbar {
  display: none;
}
button {
  cursor: pointer;
  outline: none !important;
  border: none !important;
  background-color: transparent;
  margin: 0;
  padding: 0;
}
.top-base {
  position: fixed;
  z-index: 1;
}

.client-logo {
  width: var(--client-logo-w);
  top: 12px;
  left: 12px;
}

.footer-menu {
  /* background-color: yellow; */
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 10px;
  gap: 4px;
  font-size: 12px;
  color: var(--icon-color);
  text-shadow: 0 0 4px var(--active-bg);
  justify-content: flex-end;
  border-top: 2px solid var(--icon-color);
  z-index: 3001;
}

.wraper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 650.2px) {
  .wraper {
    justify-content: flex-end;
    width: 57dvw;
  }
  
.footer-menu .pow-by{
  font-size: 15px !important;
}
}

.footer-menu .pow-by {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-family-mono);
  margin-right: 20px;
}

.location-name {
  top: 10px;
  right: 10px;
  font-family: var(--font-family-mono);
  font-size: 2.758rem;
  font-weight: 400;
  color: var(--icon-color);
  text-align: right;
  max-width: 250px;
  line-height: 0.8;
  padding-right: 8px;
}

.location-name::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 100%;
  right: -4px;
  top: 0;
  background-color: var(--primary-color);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.location-name:hover::after {
  background-color: var(--secondary-color);
}

.option-menu {
  margin-right: auto;
  z-index: 11111;
}

.option-menu .menu-toggle-btn {
  display: none;
  color: var(--icon-color);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: rgba(0,0,0,0.4);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.7);
  padding: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  
}

.discover{
  display: none;
}

.discover::before{
  position: fixed;
  z-index: 1;
}

.option-menu .menu-hide-btn {
  display: none;
}
.option-menu .menu-body {
  display: flex;
  z-index: 15000 !important;
  align-items: center;
  gap: 30px;
  background-color: transparent;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.option-menu .menu-body .menu-item {
  cursor: pointer;
  background-color: transparent;
  outline: none !important;
  border: none !important;
  padding: 0;
  color: var(--icon-color) !important;
  text-decoration: none;
  text-shadow: 0 0 1px var(--active-bg);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.option-menu .menu-body .menu-item:hover {
  color: var(--primary-color) !important;
}

.social-box {
  position: relative;
}

.social-box .social-icons {
  position: absolute;
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 8px;
  align-items: center;
  justify-content: center;
  bottom: 57rem;
  left: 54%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .social-box .social-icons {
    bottom: 10rem !important; /* Adjust the size as needed */
  }
}

/* Media query for devices with a max-width of 480px (mobile phones) */
@media (max-width: 480px) {
  .social-box .social-icons {
    bottom: 16rem !important; /* Adjust the size as needed */
  }
}


 /* Extra small devices (phones, 600px and down) */
 @media only screen and (max-width: 600px) {
  .social-box .social-icons {
    bottom: 525%; /* Adjust for landscape mode */
    left: 57%;
  }

}

/* Small devices (portrait tablets and large phones, 600px to 768px) */
@media only screen and (min-width: 600px) and (max-width: 768px) {
  .social-box .social-icons {
    bottom: 550rem; /* Adjust for landscape mode */
    left: 50%;
  }

}

/* Medium devices (landscape tablets, 768px to 992px) */
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .social-box .social-icons {
    bottom: 45rem; /* Adjust for landscape mode */
    left: 50%;
  }

}

/* Large devices (desktops, 992px to 1200px) */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .social-box .social-icons {
    bottom: 56rem; /* Adjust for landscape mode */
    left: 50%;
  }

}

/* Extra large devices (large desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .social-box .social-icons {
    bottom: 55px; /* Adjust for landscape mode */
    left: 50%;
  }

}

.social-box .social-icons a {
  border-radius: 50rem;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color);
  opacity: 0;
  transform: rotateY(180deg);
  visibility: hidden;
  pointer-events: none;
  z-index: -99;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
}

.social-box .social-icons.show a {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  z-index: 0;
  transform: rotateY(0deg);
}
.social-box .social-icons.show a:nth-child(2) {
  transition-delay: 0.1s;
}
.social-box .social-icons.show a:nth-child(3) {
  transition-delay: 0.2s;
}
.social-box .social-icons.show a:nth-child(4) {
  transition-delay: 0.3s;
}
.social-box .social-icons.show a:nth-child(5) {
  transition-delay: 0.4s;
}
.social-box .social-icons.show a:nth-child(6) {
  transition-delay: 0.5s;
}
.social-box .social-icons.show a:nth-child(7) {
  transition-delay: 0.6s;
}

.social-box .social-icons a svg {
  width: 27px;
  height: 27px;
}

@media (max-width: 1138.2px) {
  .option-menu .menu-toggle-btn {
    display: block;
    z-index: 9000;
    background-color: rgba(0,0,0,0.4);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
  .option-menu .menu-hide-btn {
    display: block;
    color: var(--active-bg);
    position: absolute;
    top: 8px;
    z-index: 9000;
    right: 8px;
  }
  .option-menu .menu-body {
    position: fixed;
    flex-direction: column;
    width: 320px;
    height: 100dvh;
    background-color: var(--icon-color);
    top: 0;
    left: -320px;
    z-index: 2;
    align-items: flex-start;
    padding: 30px 0 16px;
    gap: 4px;
  }

  .discover {
    display: block;
    z-index: 9000;
    height: auto;
    width: auto;
    border-radius: 25px;
    z-index: 1;
    position: absolute;
    bottom: 105%;
}

/* .categorImg img{
  object-fit: contain;
  height: 30px;
  width: 30px;
  z-index: -1;
  transition: transform 0.3s ease;
  margin-top: 3.7em;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
} */


  .option-menu .menu-toggle-btn.show + .menu-body {
    left: 0;
  }

  .option-menu .menu-toggle-btn.show::before {
    content: "";
    position: fixed;
    z-index: 1;
    width: 100vw;
    height: 100dvh;
    top: 0;
    left: 0;
    cursor: default;
    background-color: rgba(0, 0, 0, 0.7);
  }

  .option-menu .menu-body .menu-item {
    color: var(--active-bg) !important;
    text-align: left;
    font-size: 1.3rem;
    padding: 16px 16px 20px;
    text-shadow: none;
    border-bottom: 1px solid var(--active-bg) !important;
    width: 90%;
    display: inline-block;
    line-height: 1;
  }
  .option-menu .menu-body .menu-item.tour-btn {
    margin-bottom: 0;
    border-bottom: none;
  }

  .social-box {
    position: absolute;
    bottom: 0;
  }
  .pano .social-box .menu-item.social-btn {
    color: var(--active-bg) !important;
    text-align: left;
    font-size: 1rem;
    font-family: var(--font-family-mono);
    padding: 8px;
    text-shadow: none;
    border-bottom: none !important;
    display: inline-block;
    line-height: 1;
    cursor: default;
    pointer-events: none;
  }
 .pano .social-box .social-icons {
    position: unset;
    flex-direction: row-reverse;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    transform: none;
    padding: 8px;
  }
   .social-box .social-icons a {
    display: inline-block;
    width: unset;
    height: unset;
    background-color: transparent;
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: all;
    z-index: 0;
    color: var(--active-bg);
  }
  .social-box .social-icons a:hover {
    color: var(--primary-color);
  }
}

@media (max-width: 425.2px) {
  .location-name {
    font-size: 2.5rem;
    max-width: 210px;
  }
}


.gallery-slide {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  top: 0;
  right: -283px;
  width: 283px;
  height: 100dvh;
  z-index: 122222;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--icon-color);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slide.show {
  right: 0;
}

.gallery-slide .header {
  padding: 37px 12px 8px;
  border-bottom: 1px solid var(--icon-color);
}
.gallery-slide .header img {
  width: var(--client-logo-gallery-w);
}

.gallery-slide .close-btn {
  color: var(--icon-color);
  line-height: 0em;
  position: absolute;
  left: 10px;
  top: 10px;
}

.gallery-slide .body,
.gallery-slide .gallery-main.show {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 12px;
  gap: 10px;
  overflow: clip overlay;
  width: 100%;
  flex-wrap: nowrap;
}
.gallery-slide .body.hide,
.gallery-slide .gallery-main {
  display: none;
}
.gallery-slide .body .gallery-category,
.gallery-slide .gallery-main .gallery-category {
  margin: 8px 0;
  padding: 8px 16px;
  width: 100%;
  color: var(--icon-color);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid var(--icon-color) !important;
  border-radius: 50rem;
  text-align: unset;
  border-bottom-width: 4px !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-slide .gallery-main .gallery-category {
  justify-content: flex-start;
}
.gallery-slide .body .gallery-category:hover,
.gallery-slide .gallery-main .gallery-category:hover {
  border-color: var(--secondary-color) !important;
  background-color: var(--primary-color) !important;
}
.gallery-slide .body .gallery-category > *,
.gallery-slide .gallery-main .gallery-category > * {
  flex-shrink: 0;
}
.gallery-slide .body .gallery-category span,
.gallery-slide .gallery-main .gallery-category span {
  max-width: calc(100% - 32px);
}

.gallery-slide .gallery-main .gallery-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: clip overlay;
  gap: 16px;
  padding: 8px 0;
  align-self: center;
}
.gallery-slide .gallery-main .gallery-wrapper .gallery-item {
  cursor: pointer;
  flex-shrink: 0;
  height: 80px;
  position: relative;
  overflow: hidden;
  border-radius: 6px 6px 2px 6px;
}

.gallery-slide .gallery-main .gallery-wrapper .gallery-item:hover,
.gallery-slide .gallery-main .gallery-wrapper .gallery-item.selected {
  box-shadow: 0 0 0 2px var(--primary-color);
}

.gallery-slide .gallery-main .gallery-wrapper .gallery-item img {
  object-fit: cover;
  width: 100%;
  height: 80px;
}
.gallery-slide .gallery-main .gallery-wrapper .gallery-item p {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 2px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.37);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  text-shadow: 0 0 7px var(--active-bg);
}

.gallery-slide .footer {
  margin-top: auto;
  padding: 12px 8px;

}

.gallery-slide .footer .copywrite {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.gallery-slide .footer .copywrite * {
  color: var(--icon-color) !important;
  text-shadow: 0 0 4px var(--active-bg);
}

.pins {
  position: fixed;
  display: flex;
  gap: 16px;
  align-items: center;
  left: 25%;
  top: 25%;
  z-index: 500;
}

.pin {
  width: auto;
  position: relative;
}
.pin .pin-img {
  width: 30px;
}

.pin .pin-tooltip {
  position: absolute;
  text-shadow: 0 0 4px var(--active-bg);
  background-color: rgba(0, 0, 0, 0.31);
  padding: 4px 8px;
  font-size: 18px;
  font-weight: 500;
  color: var(--icon-color);
  max-width: 250px;
  text-align: center;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px;
}
.pin .tip {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(0, 0, 0, 0.31);
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 5555;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.popup.show {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  z-index: 5555;
}

.popup .popup-body {
  background-color: var(--icon-color);
  border-radius: 8px;
  position: relative;
  padding: 16px;
  max-width: calc(100vw - 30px);
  width: calc(100vw - 30px);
  max-height: calc(100dvh - 30px);
  height: auto;
  z-index: 500000 !important;
}

.image-popup .model-body {
  position: relative;
  width: min-content;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-popup.show .model-body {
  opacity: 1;
  transform: scale(1);
}

.image-popup .model-body .close-btn {
  color: var(--icon-color);
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 5555;
}

.image-popup img {
  max-width: calc(100vw - 90px);
  max-height: calc(100dvh - 60px);
  object-fit: contain;
}

@media (max-width: 650.2px) {
  .image-popup img {
    max-width: calc(100vw - 40px);
  }
}

.event-popup .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
}

.event-popup .main-wrapper {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.event-popup .main-wrapper .box_1 {
  flex: 1 0 calc(70% - 8px);
  width: calc(70% - 8px);
  align-self: center;
}
.event-popup .main-wrapper .box_2 {
  margin-top: 30px;
  margin-bottom: 30px;
  flex: 1 0 calc(30% - 8px);
  width: calc(30% - 8px);
  overflow: clip overlay;
  max-height: calc(100dvh - 120px);
}

.event-popup .main-wrapper h1 {
  font-family: var(--font-family-mono);
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 16px;
  border-bottom: 4px solid var(--active-bg);
  margin-bottom: 20px;
  max-width: 300px;
}

.event-popup .main-wrapper h4 {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.event-popup .main-wrapper p {
  font-size: 1rem;
  color: #4c4c4c;
  margin-bottom: 16px;
}

@media (max-width: 1024.2px) {
  .popup .popup-body {
    padding-top: 37px;
  }
  .event-popup .main-wrapper {
    overflow: clip overlay;
    max-height: calc(100dvh - 80px);
  }
  .event-popup .main-wrapper .box_1,
  .event-popup .main-wrapper .box_2 {
    flex: 1 0 100%;
    width: 100%;
  }
  .event-popup .main-wrapper .box_2 {
    margin-top: 0;
    margin-bottom: 0;
    overflow: auto;
    max-height: unset;
  }
  .event-popup .main-wrapper h1 {
    max-width: 500px;
  }
}

@media (min-width: 1024.3px) {
  .event-popup .main-wrapper .box_1 {
    flex: 1 0 auto; 
    width: auto; 
    /* max-width: 90%;  */
    min-width: 62dvw;
    margin: 0 auto; 
    padding-bottom: 20px; 
  }
  
  .event-popup .main-wrapper {
    max-height: 90vh; /* Adjust max-height for larger screens */
  }
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.slick-arrow.slick-prev {
  left: 10px;
}
.slick-arrow.slick-next {
  right: 10px;
}

.image-slider .img-fluid {
  object-fit: cover;
  transform: scale(1);
  height: calc(100dvh - 80px);
}

.image-slider .img-fluid.slick-current {
  animation: zoomInOut 8s ease-in-out infinite;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.4);
  }
}

.gallery-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 430px;
}

.gallery-box .item {
  flex: 1 0 50%;
  max-width: calc(50% - 5px);
  height: 100px;
  position: relative;
  overflow: hidden;
  border-radius: 6px 6px 2px 6px;
}

.gallery-box .item:hover {
  box-shadow: 0 0 0 2px var(--primary-color);
}

.gallery-box .item img {
  object-fit: cover;
  width: 100%;
  height: 100px;
}

.gallery-box .item p {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--icon-color);
  padding: 2px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.37);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  text-shadow: 0 0 7px var(--active-bg);
}

@media (max-width: 1024.2px) {
  .image-slider .img-fluid {
    height: auto;
  }
  .gallery-box {
    max-width: unset;
  }
  .gallery-box .item {
    flex: 1 0 25%;
    max-width: calc(24% - 5px);
  }
}
@media (max-width: 831.2px) {
  .gallery-box .item {
    flex: 1 0 33.33%;
    max-width: calc(33% - 5px);
  }
}
@media (max-width: 658.2px) {
  .gallery-box .item {
    flex: 1 0 50%;
    max-width: calc(50% - 5px);
  }
}

.backdrop {
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  z-index: 2;
  width: 100vw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.backdrop.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.item {
  position: relative;
  cursor: pointer;
}

.item::after {
  content: attr(data-info);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

.item:hover::after {
  opacity: 1;
}


/* Modal */
/* Premium Salon Landing Page Styling */

/* Background and Main Wrapper */
/* Premium Salon Landing Page Styling */

/* Background and Main Wrapper */
/* #landing_page_wrapper {
  z-index: 5500;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.15); 
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif; 
  -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;

} */

/* Content Box */
/* .salon-content-box {
  background: rgba(255, 255, 255, 0.7); 
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  max-width: 600px;
  width: 85%;
  transition: all 0.3s ease;
} */

/* Logo Styling */
/* #salonLogo {
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
} */

/* Divider Line */
/* hr {
  width: 50%;
  margin: 1rem auto;
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #9a8478, transparent);
} */

/* Heading Styles */
/* .text-dark h3 {
  color: #333;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
} */

/* .text-dark h3 u {
  text-decoration: none;
  border-bottom: 2px solid #9a8478;
  padding-bottom: 5px;
} */

/* Bullet List Container */
/* .bullet-list-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1.5rem 0;
  width: 100%;
} */

/* Bullet List Items */
/* .bullet-list {
  width: 100%;
} */

/* .bullet-list .item {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  line-height: 1.4;
}

.bullet-list .item::before {
  content: "✨";
  margin-right: 10px;
  color: #9a8478;
  font-size: 1.2rem;
} */

/* Button Styling */
/* #startTourBtn {
  background: linear-gradient(135deg, #9a8478 0%, #7d6b61 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
} */

/* #startTourBtn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #86726a 0%, #6a5a51 100%);
} */

/* Responsive Adjustments */
/* :root {
  --vh: 100%;
}

@media (max-width: 768px) {
  #landing_page_wrapper {
    height: calc(var(--vh, 1vh) * 100);
  }

  .salon-content-box {
    padding: 2rem;
    width: 90%;
  }
  
  .text-dark h3 {
    font-size: 1.7rem;
  }
  
  .bullet-list .item {
    font-size: 0.9rem;
  }
  
  #startTourBtn {
    padding: 0.8rem 1.6rem;
    font-size: 0.9rem;
  }
} */

/* Add a subtle animation to the content box */
/* @keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.salon-content-box {
  animation: fadeIn 1s ease-out forwards !important;
  -webkit-animation: fadeIn 1s ease-out forwards !important;
} */

/* Logo */
#wecareLogo {
  width: 15vw;
  max-width: 180px;
  height: auto;
  border-radius: 12px;
  padding: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 25px rgba(181, 143, 107, 0.2);
}

/* Main Heading */
.text-dark h3 {
  font-family: 'Cinzel', serif;
  color: #B58F6B;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  padding-top: 10px;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
}

.text-dark h3 u {
  text-decoration: none;
  border-bottom: 3px solid #B58F6B;
  padding-bottom: 6px;
  line-height: 37px;
}

/* Subheading / Tagline */
.point h5 {
  font-family: 'Lora', serif;
  color: #B58F6B;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: center;
  padding: 15px;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Call to Action Button */
.btn-grad {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(
    135deg,
    #102B2A 0%,
    #2c4645 25%,
    #B58F6B 75%,
    #B58F6B 100%
  );
  background-size: 250% auto;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 15px 45px;
  font-size: 1.1em;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(181, 143, 107, 0.25);
  transition: 0.4s ease;
  text-align: center;
  display: inline-block;
}

.btn-grad:hover {
 background-position: right center;
  color: #ffffff;
  box-shadow: 0 0 40px rgba(181, 143, 107, 0.6);
  transform: translateY(-2px);
}

/* Responsive Typography Adjustments */
@media (max-width: 1024px) {
  .text-dark h3 {
    font-size: 2rem;
  }

  .point h5 {
    font-size: 1.2rem;
    margin: 15px;
    font-size: 1.4rem !important;
  }
}

@media (max-width: 768px) {
  .text-dark h3 {
    font-size: 1.6rem;
  }

  .point h5 {
    font-size: 1rem;
  }

  .btn-grad {
    font-size: 1em;
    padding: 12px 30px;
  }
}

.tamasha{
   height: 110px !important;
   width: auto !important;
   margin-left: -30px !important;
   background-color: #042726;
   padding: 7px !important;
   border-radius: 12px;
}
@media (max-width: 480px) {
  .tamasha{
    height: 80px !important;
    width: auto !important;
  }
  .text-dark h3 {
    font-size: 1.2rem;
  }

  .point h5 {
    font-size: 0.9rem;
    padding: 10px;
    /* word-spacing: 2px; */
    letter-spacing: 0.7px;
    line-height: 20px;
    padding: 20px;
  }

  .btn-grad {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

@media (max-width: 400px) {
  #music_permission_modal h3 {
    font-size: 1.1rem;
  }

  #music_permission_modal p {
    font-size: 0.9rem;
  }

  #music_permission_modal button {
    width: 100%;
  }
}
/* Parking button with animated gradient highlight - matching brand colors */
.gallery-category[data-gallery-category="#parking"] {
  position: relative;
  overflow: hidden;
}

.gallery-category[data-gallery-category="#parking"] .category {
  position: relative;
  font-weight: 600;
  background: linear-gradient(90deg, #042726, #0a4a47, #e0c090, #0a4a47, #042726);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 2s ease-in-out infinite;
}

/* Running gradient background animation */
.gallery-category[data-gallery-category="#parking"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(4, 39, 38, 0.1), 
    rgba(224, 192, 144, 0.15), 
    rgba(4, 39, 38, 0.1), 
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
  border-radius: inherit;
}

/* Subtle pulsing border */
.gallery-category[data-gallery-category="#parking"]::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(45deg, #042726, #0a4a47, #e0c090, #0a4a47, #042726);
  background-size: 300% 300%;
  border-radius: inherit;
  z-index: -1;
  animation: borderGlow 2.5s ease-in-out infinite;
  opacity: 0.5;
}

/* Keyframe animations */
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes borderGlow {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 0.3;
  }
  50% {
    background-position: 100% 50%;
    opacity: 0.7;
  }
}

#menuArrowGuide {
    position: absolute;
    top: 20px;
    right: 130px; /* or left: 60px based on menu location */
    width: 60px;
    height: auto;
    z-index: 1001;
    animation: blinkArrow 1s infinite;
}

@keyframes blinkArrow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}



/* Optional subtle entrance effect */
@keyframes fadeInMove {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
