@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap");

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}
:root {
  --primary-color: #50c878;
  --secondary-green: #2d5016;
  --secondary-color: #fff;
  --tertiary-color: #e0c888;
  /* 	menu page roots */
  --bg: #0f0f0f;
  --panel: #0b0b0b;

  --muted: #b7a882;
  --accent: #bcd3d8;
  --type1: "Playfair Display", serif;
  --type2: "Montserrat", sans-serif;

  --gold: #ffd36a;
  --gold-2: #fff3c4;
  --turq: #00f5ff;
  --turq-2: #7cf9ff;
  --ink: #000;
  --ink-2: #101214;
  --muted: #c9ced1;
  --radius: 16px;
  --container: 1200px;
  --glow: 0 0 18px rgba(0, 245, 255, 0.45), 0 0 48px rgba(0, 245, 255, 0.18);
  --gold-glow: 0 0 18px rgba(255, 211, 106, 0.55),
    0 0 42px rgba(255, 211, 106, 0.25);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: "Unbounded", sans-serif !important;
  font-weight: bold;
  font-style: normal;
}
p,
a,
ul,
li,
button {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}
ul {
  list-style: none !important;
  padding-left: 0 !important;
}
a {
  text-decoration: none !important;
}
p {
  margin-bottom: 0 !important;
}
.py-10 {
  padding: 7rem 0;
}
.banner-head {
  font-size: 4rem;
}

.gradient-text {
  background: linear-gradient(
    90deg,
    rgb(255 215 85 / 95%),
    var(--primary-color)
  ); /* pick your colors */
  -webkit-background-clip: text; /* for Chrome/Safari */
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h1.gradient-text {
  font-family: "Unbounded", sans-serif;
  font-weight: bold;
}

.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
}

.carousel-item img {
  object-fit: cover;
  width: 100%;
}

/* header top */

header .navbar {
  margin-bottom: 0;
}
.backdrop {
  backdrop-filter: blur(5px);
}

.logo {
  width: 100px;
}
.button-head {
  padding: 10px 10px;
}
.bg-tertiary {
  background-color: var(--tertiary-color);
}

.project {
  position: relative;
  height: 100%;
}

.project img {
  object-fit: cover;
  height: 250px;
  width: 100%;
}

.grid__title {
  position: absolute;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  bottom: 0;
  font-weight: 100;
  font-size: 0.8em;
  z-index: 3;
  text-transform: uppercase;
  color: #474545;
  letter-spacing: 2px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 5px 0;
}

.grid__overlay {
  background: linear-gradient(55deg, var(--gold) 0, #00000070 80%);
  height: 100%;
  width: 100%;
  position: absolute;
  display: grid;
  justify-items: center;
  align-items: center;
  transform: translateY(101%);
  transition: all 0.3s ease-in-out;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
}

.project:hover .grid__overlay {
  transform: translateY(0%);
}

.overlay {
  position: fixed !important;
  background: rgba(71, 69, 69, 0.7);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  z-index: 2000;
}

.overlay.open {
  display: grid;
  align-items: center;
  justify-items: center;
}

.overlay__inner {
  background: #393939;
  width: 90%;
  max-width: 700px;
  position: relative;
}

.overlay__inner img {
  width: 100%;
}

.carousel-item .overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.599);
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
  color: #fff;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  border: none;
  background: none;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

/* HEADER */
.header-btn {
  background: linear-gradient(45deg, var(--gold), var(--primary-color));
  border-radius: 50px;
  color: white;
}
.header-btn:hover {
  color: #fff !important;
}
.header-btn:hover span svg {
  fill: #e0c888;
}

/* HOME */
.bars2 {
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  margin: 0px auto;
}
.bars1 {
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
}
.bars {
  width: 70px;
}
.bar {
  background: var(--gold);
  bottom: 1px;
  height: 9px;
  position: absolute;
  width: 3px;
  animation: sound 0ms -800ms linear infinite alternate;
}
.bar:nth-child(1) {
  left: 1px;
  animation-duration: 474ms;
}
.bar:nth-child(2) {
  left: 5px;
  animation-duration: 433ms;
}
.bar:nth-child(3) {
  left: 9px;
  animation-duration: 407ms;
}
.bar:nth-child(4) {
  left: 13px;
  animation-duration: 458ms;
}
.bar:nth-child(5) {
  left: 17px;
  animation-duration: 500ms;
}
.bar:nth-child(6) {
  left: 21px;
  animation-duration: 400ms;
}
.bar:nth-child(7) {
  left: 25px;
  animation-duration: 510ms;
}
.bar:nth-child(8) {
  left: 29px;
  animation-duration: 430ms;
}
.bar:nth-child(9) {
  left: 33px;
  animation-duration: 580ms;
}
.bar:nth-child(10) {
  left: 37px;
  animation-duration: 480ms;
}
@keyframes sound {
  0% {
    opacity: 0.35;
    height: 3px;
  }
  100% {
    opacity: 1;
    height: 30px;
  }
}
.form-bg {
  background: url("https://tzar-cy.com/wp-content/uploads/2025/05/02_View05-scaled.jpg")
    no-repeat center center;
  background-color: rgba(0, 0, 0, 0.359);
}
.booking-form {
  border-radius: 15px;
  background: linear-gradient(
    242.29deg,
    #d1ae00 15.000000596046448%,
    #ffe669 44.999998807907104%,
    #9e7e00 55.000001192092896%,
    #d1ae00 85.00000238418579%
  );
  padding: 20px;
  box-shadow: 0px 0px 10px 5px #fae6af75;
}
.booking-form label {
  color: white;
  font-size: 1rem;
}
/* .booking-form input,
textarea,
select {
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #fff !important;
  width: 100%;
  border-radius: 5px !important;
  color: #fff !important;
  padding: 5px !important;
} */
/* .booking-form input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-bottom: 1px solid #fff;
} */
.trans-grad {
  background: linear-gradient(89deg, #42ff8170 50%, transparent 100%);
  padding: 10px;
  border-radius: 5px;
}
.form-head {
  font-size: 3rem;
}
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 1;
}
.form-btn {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}
.secondary-dark-bg {
  background-color: #000;
}
.gray-box {
  transition: all 0.3s ease;
}
.black-blur {
  border-radius: 20px;
  background: #000000a6;
}

/* TILT IMAGES - CLUB SECTION */
.tilt-images {
  min-height: 320px;
  max-height: 420px;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.tilt-images > div {
  flex-shrink: 0;
  max-width: 180px;
  max-height: 320px;
  margin: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tilt-images img {
  width: 100%;
  height: auto;
  max-width: 180px;
  max-height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
@media (max-width: 1200px) {
  .tilt-images {
    min-height: 220px;
    max-height: 300px;
  }
  .tilt-images > div,
  .tilt-images img {
    max-width: 120px;
    max-height: 200px;
  }
}
@media (max-width: 992px) {
  .tilt-images {
    min-height: 160px;
    max-height: 180px;
  }
  .tilt-images > div,
  .tilt-images img {
    max-width: 90px;
    max-height: 120px;
  }
}
.tilt-images div:hover {
  transform: rotate(0deg);
}
.socials li svg {
  color: #fff;
  transition: all 0.3s ease;
}
.socials li svg:hover {
  color: #e0c888;
}
.about-bg {
  background: url("https://tzar-cy.com/wp-content/uploads/2025/05/02_View06-scaled.jpg")
    no-repeat center center;
  background-color: rgba(0, 0, 0, 0.359);
}
.img-front {
  animation: updown 5s ease-in-out infinite;
  animation-delay: 1s;
}
.img-back {
  top: 15%;
  left: 15%;
  animation: updown 5s ease-in-out infinite;
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.tertiary-text {
  background: linear-gradient(
    90deg,
    rgb(255 215 85 / 95%),
    var(--primary-color)
  ); /* pick your colors */
  -webkit-background-clip: text; /* for Chrome/Safari */
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.facilities-bg {
  background: url("https://tzar-cy.com/wp-content/uploads/2025/05/02_View07-scaled.jpg")
    no-repeat center center;
  background-color: rgba(0, 0, 0, 0.359);
}
.facilities-box {
  background-color: #1e1e1e;
  border: 2px solid #00f7ff47;
  transition: all 0.3s ease;
}
.facilities-box:hover {
  border: 2px solid #00f7ff7a;
  box-shadow: var(--glow);
}
.facilities-box h4 {
  /* font-family: "Lexend", sans-serif; */
  font-family: "Poppins", sans-serif;
}
.gradient-border {
  border: 3px solid transparent;
  -o-border-image: transparent;
  border-image: transparent;
  background-image: linear-gradient(
    242.29deg,
    #f9f295 15.000000596046448%,
    #e0aa3e 44.999998807907104%,
    #f9f295 55.000001192092896%,
    #e0aa3e 85.00000238418579%
  );
}

.nav-tabs {
  border: 0 !important;
}
.nav-link {
  border-radius: 0 !important;
  color: #fff !important;
}
.nav-link:hover {
  border-color: #000 !important;
  color: #000 !important;
}
.nav-link.active {
  background-color: transparent !important;
  border: 2px solid #000 !important;
  font-weight: 700;
  color: #000 !important;
}
.grad-back {
  background: radial-gradient(
    circle at 30% 20%,
    #d4af37 0%,
    #f4e4bc 25%,
    #d4af37 50%,
    #b8860b 75%,
    #d4af37 100%
  );
  background-size: 200% 200%;
  animation: pulse 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.grad-back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 70% 80%,
      rgba(212, 175, 55, 0.8) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 60%,
      rgba(244, 228, 188, 0.6) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 40%,
      rgba(184, 134, 11, 0.7) 0%,
      transparent 50%
    );
  animation: float 8s ease-in-out infinite;
  z-index: 1;
}

.grad-back::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  z-index: 1;
}

.grad-back > * {
  position: relative;
  z-index: 2;
}

.gold-heading {
  color: #000 !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(45, 80, 22, 0.4);
  font-weight: 700 !important;
  letter-spacing: 2px;
  background: linear-gradient(45deg, #000, #00000088);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

@keyframes pulse {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateY(5px) rotate(-1deg);
  }
}

/* ABOUT */
.banner-section {
  padding: 8.3rem 0;
  background-image: url("https://tzar-cy.com/wp-content/uploads/2025/05/02_View26-scaled.jpg");
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.359);
}
.active-page {
  font-family: "Rubik Mono One", monospace !important;
  color: var(--gold);
  font-weight: 800;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  color: var(--gold) !important;
  font-size: 2.5rem !important;
  border: 1px solid var(--gold) !important;
}
.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
  background-color: #393939 !important;
}
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background: rgba(0, 0, 0, 0.5) !important;
  color: white;
  pointer-events: all;
}
.offer-bg {
  background: url("https://tzar-cy.com/wp-content/uploads/2025/05/02_View22-scaled.jpg")
    no-repeat center center;
  background-color: rgba(0, 0, 0, 0.359);
}
.mw-300 {
  max-width: 150px;
}
.responsive-width {
  width: 80%;
}
.tzar-timeline-section .timeline {
  position: relative;
}

.tzar-timeline-section .timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, gold 0%, #444 100%);
  z-index: 0;
  transform: translateY(-50%);
}

.tzar-timeline-section .timeline-step {
  position: relative;
  z-index: 1;
  background: rgba(24, 24, 24, 0.95);
  border-radius: 1rem;
  padding: 2rem 1rem;
  min-width: 160px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
  .tzar-timeline-section .timeline {
    flex-direction: column !important;
  }

  .tzar-timeline-section .timeline::before {
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, gold 0%, #444 100%);
    transform: translateX(-50%);
  }

  .tzar-timeline-section .timeline-step {
    margin-bottom: 2rem;
  }
}

/* CONTACT */
.contact-form input,
.contact-form textarea {
  background-color: transparent !important;
  border: none;
  border-bottom: 1px solid #fff !important;
  transition: all 0.4s;
  color: #fff !important;
}
.contact-form input:hover,
.contact-form textarea:hover {
  border-bottom: 1px solid var(--gold) !important;
}
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: none !important;
  border-bottom: 1px solid var(--gold) !important;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #fff !important;
}
.contact-info-bg {
  background: url("https://tzar-cy.com/wp-content/uploads/2025/05/02_View18-scaled.jpg")
    no-repeat center center;
  background-color: rgba(0, 0, 0, 0.359);
}

/* FOOTER */
footer span {
  /* font-family: "Lexend", sans-serif; */
  font-family: "Poppins", sans-serif;
}
@media (max-width: 992px) {
  .banner-head {
    font-size: 2rem;
  }
  .carousel-caption h3 {
    font-size: 1rem;
  }
}
/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .logo {
    width: 60px;
  }
  .carousel-caption p {
    font-size: 1rem;
  }

  .responsive-width {
    width: 100%;
  }
}

/* Small screens and mobile adjustments */
@media (max-width: 576px) {
  .carousel-caption h2 {
    font-size: 1.2rem;
  }
  .carousel-caption p {
    font-size: 0.9rem;
  }
}
.fixed-back {
  background-size: cover;
  background-blend-mode: multiply;
  background-attachment: fixed;
}
/* OVERRIDING CSS */
.vc_column_container > .vc_column-inner,
.wpb_content_element,
#main > .wf-wrap,
#main {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
#footer > .wf-wrap,
#footer #bottom-bar > .wf-wrap,
#footer .wf-container-footer {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}
.footer .widget {
  width: 100% !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}
.wf-container,
#footer .wf-container {
  margin: 0 !important;
}
.vc_row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
a:hover {
  color: var(--gold) !important;
}
.branding a img,
.branding img {
  width: 100px;
}
.transparent:not(.photo-scroller-album)
  .masthead:not(#phantom):not(.sticky-on):not(.sticky-mobile-on) {
  backdrop-filter: blur(10px) !important;
  background-color: rgb(255 255 255 / 0%) !important;
}
.transparent .top-bar-bg {
  background: rgb(33 37 41) !important;
}

/* LOGO css overriding */
@media screen and (max-width: 992px) {
  .show-device-logo .branding img.mobile-logo,
  .show-device-logo .mobile-branding img.mobile-logo {
    width: 50px;
  }
  @media screen and (min-width: 779px) and (max-width: 992px) {
    .sticky-mobile-on .mobile-branding .sticky-mobile-logo-first-switch img,
    .sticky-mobile-on .mobile-branding .sticky-mobile-logo-first-switch {
      display: block;
      width: 50px;
    }
  }
}
@media screen and (max-width: 778px) {
  .sticky-mobile-on.masthead
    .mobile-branding
    .sticky-mobile-logo-second-switch
    img {
    width: 50px;
  }
}

/* LUXURY BOOKING FORM */
.luxury-booking-form {
  background: rgba(30, 30, 30, 0.55);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.luxury-form {
  position: relative;
  z-index: 2;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.luxury-label {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.input-wrapper {
  position: relative;
}

.luxury-input,
.luxury-select,
.luxury-textarea {
  width: 100%;
  padding: 5px 20px !important;
  background: rgba(255, 255, 255, 0.221) !important;
  border: 2px solid rgba(45, 80, 22, 0.2) !important;
  border-radius: 12px !important;
  border: 0 !important;
  font-size: 1rem !important;
  color: #fff !important;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
  border-top: 0 !important;
}

.luxury-input::placeholder,
.luxury-textarea::placeholder {
  color: #fff !important;
  opacity: 0.7;
}

.luxury-input:focus,
.luxury-select:focus,
.luxury-textarea:focus {
  outline: none;
  border: 1px solid var(--gold);
}

.luxury-textarea {
  min-height: 100px;
  resize: vertical;
}

.luxury-select {
  cursor: pointer;
}

.luxury-select option {
  background: #000;
  color: white;
  padding: 10px;
}

.input-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #000, #000);
  transition: width 0.3s ease;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-icon {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.luxury-submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

/* Calendar and time picker styling */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.3) sepia(1) saturate(5) hue-rotate(90deg);
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* Responsive design */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .luxury-booking-form {
    padding: 30px 20px;
  }

  .form-title {
    font-size: 1.8rem;
  }

  .luxury-input,
  .luxury-select,
  .luxury-textarea {
    padding: 12px 16px;
  }

  .luxury-submit-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

/* Animation for form elements */
.luxury-input,
.luxury-select,
.luxury-textarea {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.luxury-input:nth-child(1) {
  animation-delay: 0.1s;
}
.luxury-input:nth-child(2) {
  animation-delay: 0.2s;
}
.luxury-input:nth-child(3) {
  animation-delay: 0.3s;
}
.luxury-input:nth-child(4) {
  animation-delay: 0.4s;
}
.luxury-input:nth-child(5) {
  animation-delay: 0.5s;
}
.luxury-input:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gold Glow Section */
.gold-glow-section {
  position: relative;
  border-radius: 30px;
  box-shadow: 0 0 40px 10px rgba(212, 175, 55, 0.13),
    0 0 0 6px rgba(244, 228, 188, 0.05);
  border: 1.5px solid #d4af37;
  overflow: hidden;
  margin-bottom: 40px;
  background: linear-gradient(
    120deg,
    rgba(244, 228, 188, 0.07) 0%,
    rgba(212, 175, 55, 0.09) 100%
  );
}

/* Sparkle Overlay */
.sparkle-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("https://www.transparenttextures.com/patterns/stardust.png"),
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.07) 0 2px,
      transparent 2px 40px
    );
  opacity: 0.18;
  animation: sparkleMove 12s linear infinite;
}
@keyframes sparkleMove {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 200px 200px, 100px 100px;
  }
}

/* Gold Underline for Heading */
.gold-underline {
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}
.gold-underline::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  margin: 0 auto;
  background: linear-gradient(90deg, #d4af37 0%, #f4e4bc 100%);
  border-radius: 2px;
  position: absolute;
  left: 20%;
  bottom: 0;
  box-shadow: 0 2px 8px 0 #d4af3799;
}

/* Gold Glow for Heading */
.gold-glow {
  text-shadow: 0 0 12px #d4af37cc, 0 2px 8px #fff8, 0 0 2px #b8860b;
}

/* Gold Shimmer Animation for Heading */
.gold-shimmer {
  background: linear-gradient(
    90deg,
    #d4af37 20%,
    #f4e4bc 40%,
    #d4af37 60%,
    #b8860b 80%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGold 2.5s linear infinite;
}
@keyframes shimmerGold {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Decorative Gold Icon */
.gold-deco-icon svg {
  display: block;
  margin: 0 auto 8px auto;
  filter: drop-shadow(0 2px 8px #d4af37cc);
}

/* Socials Gold Background */
.gold-socials-bg {
  background: linear-gradient(90deg, #d4af37 0%, #f4e4bc 100%);
  box-shadow: 0 2px 8px #d4af3722;
}
.gold-social-link img {
  transition: transform 0.2s, filter 0.2s;
  filter: drop-shadow(0 2px 6px #d4af37cc);
  border-radius: 50%;
  background: #fff2;
  padding: 4px;
}
.gold-social-link:hover img {
  transform: scale(1.15) rotate(-8deg);
  filter: drop-shadow(0 4px 12px #d4af37cc) brightness(1.2);
  background: #fff6;
}

/* Gold Accent Line Under Heading */
.gold-accent-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #f4e4bc 100%);
  border-radius: 2px;
  margin-left: 0;
  margin-right: 0;
  box-shadow: 0 2px 8px 0 #d4af3799;
}

/* Gold Image Frame */
.gold-image-frame {
  background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
  padding: 8px;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(212, 175, 55, 0.18);
  display: inline-block;
}

.gold-image-frame img {
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.12);
}

/* Clean up gold-glow-section for new look */
.gold-glow-section {
  position: relative;
  border-radius: 30px;
  box-shadow: 0 0 40px 10px rgba(212, 175, 55, 0.13),
    0 0 0 6px rgba(244, 228, 188, 0.05);
  border: 1.5px solid #d4af37;
  overflow: hidden;
  margin-bottom: 40px;
  background: linear-gradient(
    120deg,
    rgba(244, 228, 188, 0.07) 0%,
    rgba(212, 175, 55, 0.09) 100%
  );
}

@media (max-width: 992px) {
  .gold-glow-section {
    border-radius: 18px;
    margin-bottom: 24px;
  }
  .gold-image-frame {
    border-radius: 14px;
    padding: 4px;
  }
  .gold-image-frame img {
    border-radius: 8px;
  }
  .gold-accent-line {
    width: 40px;
    height: 3px;
  }
}

/* Gallery Images Overlapping Layout */
.gallery-images {
  min-height: 320px;
  max-width: 440px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-images .gold-image-frame {
  position: absolute;
  width: 180px;
  height: 240px;
  padding: 4px;
  z-index: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-img-1 {
  left: 0;
  top: 30px;
  z-index: 2;
  transform: rotate(-8deg) scale(0.95);
}
.gallery-img-2 {
  left: 80px;
  top: 0;
  z-index: 3;
  transform: rotate(4deg) scale(1.05);
  box-shadow: 0 8px 32px 0 rgba(212, 175, 55, 0.18),
    0 1.5px 8px 0 rgba(0, 0, 0, 0.1);
}
.gallery-img-3 {
  left: 160px;
  top: 50px;
  z-index: 2;
  transform: rotate(10deg) scale(0.93);
}
.gallery-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.12);
}
.gallery-images .gold-image-frame:hover {
  z-index: 10;
  transform: scale(1.08) rotate(0deg);
  box-shadow: 0 12px 36px 0 rgba(212, 175, 55, 0.28),
    0 4px 16px 0 rgba(0, 0, 0, 0.13);
}
@media (max-width: 992px) {
  .gallery-images {
    min-height: 180px;
    max-width: 260px;
  }
  .gallery-images .gold-image-frame {
    width: 90px;
    height: 120px;
    padding: 3px;
  }
  .gallery-img-1 {
    left: 0;
    top: 18px;
  }
  .gallery-img-2 {
    left: 40px;
    top: 0;
  }
  .gallery-img-3 {
    left: 80px;
    top: 28px;
  }
}
@media (max-width: 576px) {
  .gallery-images {
    min-height: 120px;
    max-width: 160px;
  }
  .gallery-images .gold-image-frame {
    width: 100%;
    height: 100%;
    padding: 2px;
  }
  .gallery-img-1 {
    left: 0;
    top: 8px;
  }
  .gallery-img-2 {
    left: 20px;
    top: 0;
  }
  .gallery-img-3 {
    left: 40px;
    top: 12px;
  }
}

/* Slider Enhancements */
.slider .carousel-inner {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 3px solid;
  border-image: linear-gradient(90deg, #b8860b, #fffbe6, #b8860b) 1;
}

.slider .carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  bottom: 20%;
  left: 10%;
  right: 10%;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.slider .carousel-caption h2,
.slider .carousel-caption h3 {
  font-weight: bold;
  letter-spacing: 1px;
}

.slider .carousel-caption p {
  font-size: 1.1rem;
}

.slider .overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(184, 134, 11, 0.2) 100%
  );
  z-index: 1;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.zoom-out {
  animation: zoomOut 5s linear forwards;
}

/* @media (max-width: 768px) {
  .slider .carousel-caption {
    padding: 1rem 0.5rem;
    font-size: 0.95rem;
    bottom: 10%;
    left: 2%;
    right: 2%;
  }
  .slider .carousel-caption h2 {
    font-size: 1.5rem;
  }
  .slider .carousel-caption h3 {
    font-size: 1.1rem;
  }
} */

/* Modern Slider Styles */
/* .slider-modern {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  background: #111;
}
.slider-modern-inner {
  position: relative;
  width: 100%;
  height: 100vh;
}
.slider-modern-slide {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s, transform 1.2s;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.slider-modern-slide.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1) translateY(0);
  transition: opacity 1s, transform 1.2s;
}
.slider-modern-slide:not(.active) {
  transform: scale(1.05) translateY(20px);
}
.slider-modern-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.7) 60%,
    rgba(184, 167, 11, 0.3) 100%
  );
  z-index: 2;
}
.slider-modern-caption {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(30, 30, 30, 0.55);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  text-align: center;
  color: #fff;
  backdrop-filter: blur(6px);
  border: 2px solid rgba(184, 167, 11, 0.3);
}
.slider-modern-caption h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 12px #000;
}
.slider-modern-caption h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #fffbe6;
}
.slider-modern-caption p {
  font-size: 1.1rem;
  color: #eee;
  margin-bottom: 0;
}
.slider-modern-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 2.5rem;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  cursor: pointer;
  z-index: 10;
}
.slider-modern-arrow:hover {
  color: #fff;
}
.slider-modern-arrow.prev {
  left: 2vw;
}
.slider-modern-arrow.next {
  right: 2vw;
}
.slider-modern-indicators {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}
.slider-modern-indicators span {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.3s, border 0.3s;
}
.slider-modern-indicators span.active {
  background: var(--gold);
  border: 2px solid #fffbe6;
}
@media (max-width: 768px) {
  .slider-modern-caption {
    padding: 1.2rem 0.7rem;
    max-width: 95vw;
  }
  .slider-modern-caption h1 {
    font-size: 1.5rem;
  }
  .slider-modern-caption h2 {
    font-size: 1.1rem;
  }
  .slider-modern-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .slider-modern-indicators {
    bottom: 16px;
  }
  .slider-modern-indicators span {
    width: 10px;
    height: 10px;
  }
} */

/* Menu page css */
.menu-wrap {
  padding: 28px;
  padding-top: 8rem;
  margin: 28px auto;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.6));
  border: 2px solid rgba(200, 160, 60, 0.03);
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

/* decorative header frame */
.menu-header {
  border: 4px double rgba(200, 160, 60, 0.12);
  padding: 18px 30px;
  margin-bottom: 22px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-title h1 {
  font-family: var(--type1);
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 4px;
  font-size: 46px;
  margin: 0;
  text-align: center;
}

.subtitle {
  font-family: var(--type2);
  color: var(--muted);
  letter-spacing: 2px;
  text-align: center;
  margin-top: 6px;
  font-size: 14px;
}

/* body columns */
.menu-body {
  display: grid;
  grid-template-columns: 1fr 0.95fr 0.95fr;
  gap: 28px;
  align-items: start;
}

/* section titles */
.section-title {
  font-family: var(--type1);
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 28px;
  margin: 10px 0 18px 6px;
  text-align: left;
  position: relative;
}

.small {
  font-size: 20px;
  color: var(--gold);
}

/* footer */
.menu-footer {
  margin-top: 22px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
}
.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 4px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
}
.lb-close {
  position: absolute;
  right: 28px;
  top: 28px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 6px;
}

/* responsive */
@media (max-width: 980px) {
  .menu-body {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .menu-wrap {
    margin: 12px;
    padding: 18px;
  }
  .menu-title h1 {
    font-size: 36px;
  }
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.video-wrapper video {
  display: block;
  width: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 21, 21, 0.48); /* #1515157a */
  z-index: 1;
  border-radius: 1rem;
  transition: opacity 0.3s ease;
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: opacity 0.3s ease;
}

.video-wrapper.hovered .video-overlay,
.video-wrapper.hovered .video-play-icon {
  opacity: 0;
  pointer-events: none;
}
.gold-text {
  color: var(--gold);
}
/* .slide-logo-img {
  width: 200px;
} */

/* REWAMPED CSS */
.bg-video {
  object-fit: cover;
}
.hero-content h1 {
  color: var(--gold);
  font-size: 3.5rem;
  text-shadow: 0 0 12px rgba(255, 211, 106, 0.45),
    0 0 28px rgba(0, 245, 255, 0.25);
}
.hero-content h4 {
  color: var(--gold);
}
.glow-btn.gold{
  border-color: rgba(255, 211, 106, 0.6);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #000;
  box-shadow: var(--gold-glow);
}
.glow-btn,.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  letter-spacing: 0.3px;
  font-weight: 900;
  border: 1px solid rgba(0, 245, 255, 0.45);
  cursor: pointer;
  color: var(--turq);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: var(--glow);
  transition: transform 0.15s ease, box-shadow 0.25s ease;
  background-clip: padding-box;
  animation: neonPulse 4s ease-in-out infinite;
  overflow: hidden;
}
.glow-btn::before,.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform: translateX(-120%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
  animation: sweepLine 2.6s ease-in-out infinite;
  pointer-events: none;
}

.glow-btn:hover {
  color: var(--turq) !important;
}
.glow-btn.gold:hover {
  color: black !important;
}

.kicker {
  color: var(--turq);
  letter-spacing: 2px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
  animation: glowText 3.8s ease-in-out infinite;
}
.hero h1 {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(255, 211, 106, 0.45),
    0 0 28px rgba(0, 245, 255, 0.25);
}
.hero p {
  color: #d9dee2;
  margin-bottom: 28px;
}

.headline {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(255, 211, 106, 0.4),
    0 0 24px rgba(0, 245, 255, 0.18);
}

.glow-sec {
  box-shadow: var(--gold-glow);
}

/* menu bar page */
.accordion {
  display: grid;
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}
.acc-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
}
.acc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
}
.acc-head h4 {
  margin: 0;
  color: var(--gold);
  font-size: 18px;
}
.acc-head .badge {
  font-size: 12px;
  color: var(--turq);
  border: 1px solid rgba(0, 245, 255, 0.45);
  border-radius: 999px;
  padding: 4px 10px;
  text-shadow: 0 0 8px rgba(0, 245, 255, 0.35);
}
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;  
}

.acc-item.open .acc-body {
  max-height: 100%; 
  padding:0 16px 16px
}

.menu-list {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 18px;
  row-gap: 10px;
  margin-top: 12px;
}
.menu-list .desc {
  grid-column: 1 / -1;
  color: #bac1c6;
  font-size: 14px;
  margin-top: -6px;
  margin-bottom: 8px;
}
.price {
  color: var(--gold);
  font-weight: 800;
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1.35s ease;
}
.contact-box {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
  background: #0e0e0e;
}

@keyframes sweepLine {
  0% {
    transform: translateX(-40%);
  }

  100% {
    transform: translateX(140%);
  }
}
@keyframes neonPulse {
  0%,
  100% {
    box-shadow: var(--glow);
  }

  50% {
    box-shadow: 0 0 32px rgba(0, 245, 255, 0.7),
      0 0 72px rgba(0, 245, 255, 0.28);
  }
}
@keyframes glowText {
  0%,
  100% {
    text-shadow: 0 0 10px var(--turq), 0 0 24px rgba(0, 245, 255, 0.35);
  }
  50% {
    text-shadow: 0 0 16px var(--turq), 0 0 42px rgba(0, 245, 255, 0.5);
  }
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}
