@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-Regular.woff') format('woff'),
    url('/assets/fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-Medium.woff') format('woff'),
    url('/assets/fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-Bold.woff') format('woff'),
    url('/assets/fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-ExtraBold.woff') format('woff'),
    url('/assets/fonts/Montserrat-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/Montserrat-Black.woff') format('woff'),
    url('/assets/fonts/Montserrat-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Montserrat;
  background: #000;
  color: #fff;
  font-size: 18px;
  overflow-x: hidden;
}
.nav-links {
  width: 250px;
  position: fixed;
  top: 80px;
  right: -300px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  background: rgb(0 0 0 / 0.4);
  border: 1px solid #C9A24D;
  border-radius: 5px;
  box-shadow: -2px 0 10px rgb(145 145 145 / 0.5);
  transition: right 0.4s ease;
  z-index: 15003;
  pointer-events: none;
  cursor: pointer;
  text-align: center;
}
.nav-links.show {
  right: 10px;
  pointer-events: auto;
}
.nav-links li {
  width: 100%;
  margin: 6px 0;
  border-bottom: 1px solid #C9A24D;
}
.nav-links li:last-child{
    border-bottom: none;
}
.nav-links a {
  display: inline-block;
  padding: 12px 18px;
  font-size: 18px;
  line-height: 1.5;
  color: #C9A24D;
  transition: color 0.3s ease;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links .active a {
  color: #efefef;
}
.hamburger {
  display: block;
  width: 35px;
  height: 24px;
  position: relative;
  cursor: pointer;
  margin-top: 0%;
}
.hamburger span {
  background: #C9A24D;
  position: absolute;
  height: 3px;
  width: 100%;
  left: 0;
  transition: 0.3s ease;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 10px;
}
.hamburger span:nth-child(3) {
  top: 20px;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}
/* NAVBAR */
.navbar {
  position: absolute;
  top: 5%;
  right: 3%;
  z-index: 999;
}
nav {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  /*justify-content: space-between;*/
  /* align-items: center; */
  padding: 50px 0 0 50px;
  /* background: rgba(0, 0, 0, 0.4); */
  z-index: 10;
}

.logo {
  width: 160px;
  height: auto;
}
.logo img {
  width: 100%;
  height: auto;
}
.logo2 img {
  width: 15%;
  height: auto;
}
/* BANNER */
.banner {
  position: relative;
  overflow: hidden;
  /*height: 100vh;*/
}
.slides {
  display: flex;
  transition: 0.8s ease-in-out;
  height: 100%;
}

.slides img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(0.8);
}

.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.dot.active {
  background: #fff;
}


/* Continuous pulse animation */
.bnw-btn-trigger {
  position: absolute;
  bottom: 43%;
  right: 2%;
  background: none;
  font-size: 18px;
  color: #C9A24D;
  border: 2px solid #C9A24D;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgb(0, 0, 0);
  cursor: pointer;
  outline: none;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.7);
  animation: pulse 2s infinite;
  text-align: center;
}
.bnw-btn-trigger:hover {
  color: #b4b4b4;
  border: 2px solid #b4b4b4;
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(221, 221, 221, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
  }
}


/* Book Button */

 /* Overlay */
.bnw-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Modal Box */
.bnw-modal-box {
  background: #fff;
  width: 95%;
  max-width: 420px;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  animation: bnwFadeIn 0.3s ease;
}

/* Title */
.bnw-modal-title {
  text-align: center;
  margin-bottom: 15px;
  color:#333;
}

/* Close Button */
.bnw-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 22px;
  border: none;
  background: none;
  cursor: pointer;
  color:#333;
}

/* Form */
.bnw-form-group {
  margin-bottom: 12px;
}

.bnw-form-group label {
  display: block;
  margin-bottom: 4px;
  font-weight: 400;
  color:#333;
  font-size: 16px;
}

.bnw-form-group input,
.bnw-form-group textarea {
  width: 100%;
  padding: 8px;
  border: 2px solid #ccc;
  border-radius: 5px;
  color:#333;
}

/* Quantity */
.bnw-qty-wrapper {
  display: flex;
  gap: 6px;
}

.bnw-qty-wrapper button {
  width: 35px;
  font-size: 18px;
  border: none;
  background: #333;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.bnw-qty-wrapper input {
  text-align: center;
}

/* Submit */
.bnw-submit-btn {
  width: 100%;
  padding: 10px;
  background: #333;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

/* Animation */
@keyframes bnwFadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Mobile */
@media (max-width: 480px) {
  .bnw-modal-box {
    padding: 16px;
  }
}


.video-wrapper {
  position: relative;
}

.vibz-call-link {
  color: #C9A24D;
  font-weight: 600;
  text-decoration: none;
}

.vibz-call-link2 {
  color: #666;
  font-weight: 500;
  text-decoration: none;
}

.vibz-call-link:hover {
  text-decoration: underline;
}


/* Book Button */

  /* Modal Overlay */
  /*.bn-modal {*/
  /*  position: fixed;*/
  /*  inset: 0;*/
  /*  display: flex;*/
  /*  justify-content: center;*/
  /*  align-items: center;*/
  /*  background: rgba(0,0,0,0);*/
  /*  opacity: 0;*/
  /*  pointer-events: none;*/
  /*  transition: opacity 0.3s ease, background 0.3s ease;*/
  /*  z-index: 9999;*/
  /*}*/

  /*.bn-modal.bn-active {*/
  /*  opacity: 1;*/
  /*  background: rgba(0,0,0,0.5);*/
  /*  pointer-events: auto;*/
  /*}*/

  /* Modal Content (Spring Animation) */
  /*.bn-modal-content {*/
  /*  background: #fff;*/
  /*  width: 90%;*/
  /*  max-width: 400px;*/
  /*  padding: 20px;*/
  /*  border-radius: 12px;*/
  /*  transform: scale(0.7);*/
  /*  opacity: 0;*/
  /*}*/

  /*.bn-modal.bn-active .bn-modal-content {*/
  /*  animation: bnSpringIn 0.6s ease-out forwards;*/
  /*}*/

  /*.bn-modal.bn-closing .bn-modal-content {*/
  /*  animation: bnSpringOut 0.3s ease-in forwards;*/
  /*}*/

  /*@keyframes bnSpringIn {*/
  /*  0% { transform: scale(0.7); opacity: 0; }*/
  /*  60% { transform: scale(1.08); opacity: 1; }*/
  /*  80% { transform: scale(0.96); }*/
  /*  100% { transform: scale(1); }*/
  /*}*/

  /*@keyframes bnSpringOut {*/
  /*  0% { transform: scale(1); opacity: 1; }*/
  /*  100% { transform: scale(0.7); opacity: 0; }*/
  /*}*/

  /* Close Button */
  /*.bn-close {*/
  /*  position: absolute;*/
  /*  top: 10px;*/
  /*  right: 14px;*/
  /*  font-size: 20px;*/
  /*  cursor: pointer;*/
  /*}*/

  /* Form */
  /*.bn-field {*/
  /*  margin-bottom: 12px;*/
  /*}*/

  /*.bn-field label {*/
  /*  display: block;*/
  /*  font-size: 14px;*/
  /*  margin-bottom: 4px;*/
  /*}*/

  /*.bn-field input {*/
  /*  width: 100%;*/
  /*  padding: 10px;*/
  /*  font-size: 15px;*/
  /*  border-radius: 6px;*/
  /*  border: 1px solid #ccc;*/
  /*}*/

  /*.bn-submit-btn {*/
  /*  width: 100%;*/
  /*  padding: 12px;*/
  /*  background: #16a34a;*/
  /*  color: #fff;*/
  /*  border: none;*/
  /*  border-radius: 6px;*/
  /*  font-size: 16px;*/
  /*  cursor: pointer;*/
  /*}*/

.seven-rooms-wrapper {
      position: absolute;
    /* left: 5%; */
    bottom: 23%;
    right: 2%;
}  
  
.vip-access-wrapper {
      position: absolute;
    /* left: 5%; */
    bottom: 33%;
    right: 2%;
}

.vip-access-btn {
  position: relative;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(231, 76, 60, 0);
  border: 2px solid #C9A24D;
  color: #C9A24D;
  font-weight: 600;
  z-index: 1;
  overflow: visible; /* IMPORTANT: Let the dot move outside */
}

/* Dot styling */
.vip-access-btn .dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #C9A24D;
  border-radius: 50%;
  box-shadow: 0 0 10px #f1b50f, 0 0 20px #f1b50f;
  animation: moveOnBorder 4s linear infinite;
  z-index: 3;
}

/* Optional glowing trail */
.vip-access-btn .dot::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #C9A24D;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.5;
  animation: trailFade 4s linear infinite;
}

/* Animate along border path */
@keyframes moveOnBorder {
  0% {
    top: -4px;
    left: 0;
    transform: translateX(-50%);
  }
  25% {
    top: -4px;
    left: 100%;
    transform: translateX(-50%);
  }
  50% {
    top: 100%;
    left: 100%;
    transform: translate(-50%, -50%);
  }
  75% {
    top: 100%;
    left: 0;
    transform: translate(-50%, -50%);
  }
  100% {
    top: -4px;
    left: 0;
    transform: translateX(-50%);
  }
}

/* Optional: glow trail animation */
@keyframes trailFade {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}

/* Model for get VIP Acess */
.vip-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.vip-modal-box {
  background: #fff;
  width: 95%;
  max-width: 420px;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.vip-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

.vip-modal-title {
  text-align: center;
  margin-bottom: 15px;
  color: #333;
}

.vip-form-group {
  margin-bottom: 12px;
}

.vip-form-group label {
  display: block;
  margin-bottom: 4px;
  font-weight: 400;
  color: #333;
}

.vip-form-group input,
.vip-form-group textarea {
  width: 100%;
  padding: 8px;
  border: 2px solid #ccc;
  border-radius: 5px;
}

.vip-submit-btn {
  width: 100%;
  padding: 10px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.join-guest-wrapper {
    position: absolute;
    right: 2%;
    bottom: 38%;
}

.join-guest {
  position: relative;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(231, 76, 60, 0);
  border: 2px solid #C9A24D;
  color: #C9A24D;
  font-weight: 600;
  z-index: 1;
  overflow: visible; /* IMPORTANT: Let the dot move outside */
}

/* Dot styling */
.join-guest .dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #C9A24D;
  border-radius: 50%;
  box-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
  animation: moveOnBorder 4s linear infinite;
  z-index: 3;
}

/* Optional glowing trail */
.join-guest .dot::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #C9A24D;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.5;
  animation: trailFade 4s linear infinite;
}

.marquee-container {
  width: 100%;
  position: absolute;
  overflow: hidden;
  white-space: nowrap;
  color: #C9A24D;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgb(0, 0, 0);
  padding: 10px 0;
  bottom: 1.5%;
  right: 0;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 30s linear infinite;
  background: rgba(0, 0, 0, 0.1);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* Optional: pause on hover */
.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

.center-logo img {
  position: absolute;
  width: 40%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* opacity: 0.5;
  transition: opacity 0.6s ease-in-out; */
}

/* Social media wraper */
.social-wrapper {
  position: absolute;
  bottom: 9%;
  right: 3%;
  display: flex;
  flex-direction: column-reverse; /* Button at bottom */
  align-items: center;
  z-index: 1001;
  animation: pulse2 2s infinite;
  /* box-shadow: 0 0 0 rgba(0, 0, 0, 0.7); */
}

@keyframes pulse2 {
  0% {
    transform: scale(1.15);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.social-btn {
  width: 60px;
  height: 60px;
  font-size: 28px;
  color: #C9A24D;
  border-radius: 50%;
  border: 3px solid #C9A24D;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s;
  margin-top: 10px; /* space above button when list is open */
}

.social-btn:hover {
  color: #666;
  border: 3px solid #666;
}
.social-list {
  display: none;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
}

.social-list.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.social-list a {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, background 0.2s, color 0.2s;
  text-decoration: none;
}
.whatsapp{
    color: green;
    font-size: 50px;
}
.social-list a:hover {
  transform: scale(1.15);
  color: #fff;
}
.social-list a.instagram:hover {
  background: #c20242;
}
.social-list a.facebook:hover {
  background: #013093;
}
.social-list a.youtube:hover {
  background: #ff0000;
}
.social-list a.tiktok:hover {
  background: #000;
}
.social-list a.maps:hover {
  background: #0261fb;
}
.social-list a.whatsapp:hover {
  background: #009a43;
}

/* Text Animation */
.scroll-up-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-in-out;
}

.scroll-up-text.visible {
  opacity: 1;
  transform: translateY(0);
}
/* FEATURED EVENTS */
section {
  padding: 0 5%;
  text-align: center;
}
.video-section{
    margin-top:100px;
}
video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 900;
  display: block;
  margin: 0 auto;
}

/* Hide native controls by default */
video:not(:hover) {
  outline: none;
}
video:not(:hover)[controls]::-webkit-media-controls-panel {
  display: none !important;
  opacity: 0 !important;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* gap: 16px; */
  /* padding: 20px; */
  margin-top: 0px;
  height: auto;
}
.video-item {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.video-item video {
  width: 100%;
  height: auto;
  display: block;
}
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
  transition: color 0.3s, transform 0.3s;
  text-shadow: 2px 2px 4px rgb(0, 0, 0);
  display: none;
}
.video-item:hover .play-overlay {
  color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}
.play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
/* Hide native big play button in Chrome/Safari */
video::-webkit-media-controls-overlay-play-button {
  display: none !important;
}
.featured {
  position: relative;
}
.heading1 {
  font-size: 50px;
  margin-top: 50px;
  margin-bottom: 30px;
  text-shadow: 0px 0px 8px rgb(28, 163, 222);
}
.heading2 {
  font-size: 30px;
  color: #C9A24D;
  margin: 30px 0 30px;
  /* text-shadow: 0px 0px 10px rgba(241, 181, 15, 0.68); */
  text-align: center;
}
.featured p {
  margin-bottom: 50px;
  margin: 0 auto;
  line-height: 26px;
  text-align: justify;
}
.heading3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #C9A24D;
}
.feat-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  cursor: pointer;
  font-size: 2em;
  color: #fff;
}
.feat-arrow.left {
  left: 20px;
}
.feat-arrow.right {
  right: 20px;
}
.feat-slider-wrapper {
  position: relative;
  overflow: hidden;
}
.feat-slider {
  display: flex;
  transition: transform 0.8s ease-in-out;
}
.feat-slide {
  width: 25%;
  flex-shrink: 0;
}
.feat-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
/* GALLERY */
.gall-banner H1 {
  position: absolute;
  width: 100%;
  font-size: 70px;
  font-weight: 600;
  bottom: 30%;
  text-align: center;
  text-shadow: 2px 2px 5px rgb(0, 0, 0);
  text-shadow: 0px 0px 15px rgba(251, 4, 25, 0.68);
}
.gallery-grid-home {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}
.gallery-grid-home img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}
.gallery-grid-home img:hover {
  transform: scale(1.05);
}
/* PARTNERS & FOOTER */
.lifestyle {
  padding: 0 40px;
}
.lifestyle-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: #fff;
  margin-top: 30px;
}
.lifestyle-list li {
  padding-left: 1.2em;
  margin-bottom: 10px;
  position: relative;
  font-weight: 500;
  display: flex;
  text-align:  left;
}
.lifestyle-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: #00f0ff;
  border-radius: 50%;
  display: none;
}
footer {
  background: #111;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
  background-image: url("/assets/footer-bg.png");
  background-size: contain;
  background-repeat: repeat;
  background-position: left;
}
.footer-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin: auto;
  padding: 0 50px;
}
.footer-box {
  flex: 1 1 220px;
}
.footer-box:last-child {
  justify-items: end;
}
.footer-info input {
  padding: 8px;
  width: 70%;
  margin-right: 5px;
  border: none;
  border-radius: 4px;
  margin-top: 10px;
  background: #efefef;
}
.footer-info button {
  padding: 10px 15px;
  border: 2px solid #C9A24D;
  background: #111;
  color: #C9A24D;
  border-radius: 5px;
  margin-top: 10px;
  font-family: Montserrat;
  font-weight: 500;
}
.footer-info button:hover {
  border: 2px solid #efefef;
  color: #efefef;
}
.cright {
  text-align: center;
  color: #666;
  font-size: 14px;
  border-top: 2px solid #333;
  padding: 15px 0;
  background: #111;
}
.footer-logo img {
  width: 70%;
  height: auto;
  margin: 10px 0;
}
.social-icons {
  width: 100%;
  margin-top: 10px;
  text-align: right;
}
.social-icons a {
  font-size: 35px;
  text-decoration: none;
  /* transition: transform 0.3s ease, color 0.3s ease; */
  /* padding: 5px; */
  /* font-size: 20px; */
  color: #666;
  margin-right: 15px;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.2);
}
.social-icons a:hover .fa-instagram {
  color: #d20247;
}
.social-icons a:hover .fa-facebook {
  color: #0238ac;
}
.social-icons a:hover .fa-youtube {
  color: #ff0000;
}
.social-icons a:hover .fa-tiktok {
  color: #e1306c; /* Add accent if needed */
}
input[type='email'] {
  padding: 10px;
  width: 70%;
  border-radius: 5px;
  border: 2px solid #C9A24D;
  color: #C9A24D;
  background: #111;
  margin-right: 10px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li a {
  color: #efefef;
  text-decoration: none;
  display: block;
  margin: 20px 5px 0;
  transition: color 0.3s ease;
  font-weight: 500;
}
.footer-links li a:hover {
  color: #C9A24D;
}
.footer-address {
    line-height: 30px;
    color: #666;
}
.reserve-table{
    width: 210px;
    padding: 10px;
    color:#666;
    border: 2px solid #C9A24D;
    cursor: pointer;
    border-radius: 20px;
    margin-bottom: 20px;
    text-align: center;
}
.guest-list {
  display: inline-block;
  padding: 10px;
  color: #C9A24D;
  border: 2px solid #C9A24D;
  border-radius: 10px;
  margin-top: 50px;
}
.guest-list:hover {
  border: 2px solid #efefef;
  color: #efefef;
}
.open-hours {
  margin-top: 15px;
  font-size: 16px;
  color: #666;
}
/* Banner */
.about-banner {
  position: relative;
  height: 100vh;
  background: url('/assets/banner4.jpg') center/cover no-repeat;
  text-align: center;
}
.about-banner H1 {
    position: absolute;
    width: 100%;
    font-size: 70px;
    font-weight: 600;
    bottom: 30%;
    text-align: center;
  /* text-shadow: 2px 2px 5px rgb(0, 0, 0); */
  /* text-transform: var(--e-global-typography-1408a79-text-transform); */
  text-shadow: 0px 1px 15px rgba(243, 6, 148, 0.78);
  left: 50%;
  transform: translate(-50%);
}
.contact-banner {
  position: relative;
  height: 100vh;
  background: url('/assets/contact-bg1.jpg') center/cover no-repeat;
}
.banner-h1 {
  position: absolute;
  width: 80%;
  font-size: 60px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20%;
  text-align: center;
  text-shadow: 2px 2px 4px rgb(0, 0, 0);
}
/* History section */
.history {
  max-width: 90%;
  margin: 50px auto;
  text-align: center;
}
.history h2 {
  font-size: 40px;
  margin-bottom: 30px;
}
.history p {
  text-align: justify;
  line-height: 26px;
}
/* Image grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
  padding-bottom: 40px;
  margin-top: 30px;
}
.image-grid img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 4px;
}
/* ****  Gallery **** */
.gall-banner {
  position: relative;
  height: 100vh;
  background: url('/assets/banner9.jpg') center/cover no-repeat;
}
.gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 20px;
}
.gallery img {
  width: 100%;
  height: 325px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}
.gallery img:hover {
  transform: scale(1.05);
}
.gallery-box {
  width: 100%;
  margin: 50px auto;
}
.gallery-box h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.gallery-box p {
  margin-bottom: 30px;
}
/* Lightbox overlay */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.lightbox.visible {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
}
.lb-btn {
  position: absolute;
  top: 50%;
  font-size: 2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px;
  cursor: pointer;
  transform: translateY(-50%);
}
.lb-prev {
  left: 20px;
}
.lb-next {
  right: 20px;
}
.lb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
}
/* contact us page */
.contact-banner H1 {
  position: absolute;
  width: 100%;
  font-size: 70px;
  font-weight: 600;
  bottom: 30%;
  text-align: center;
  text-shadow: 0px 0px 15px rgba(4, 144, 251, 0.68);
}
.contact-wraper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 50px;
  border-radius: 10px;
  border: 3px solid #efefef;
  background: url('/assets/vibz-contact.jpg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.contact-map {
  margin-top: 100px;
}
iframe {
  width: 100%;
  height: 400px;
}
/* Image grid */
.contact-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
  padding: 40px 0px;
  margin: 50px 0;
  overflow: hidden;
}
.contact-image-grid img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease;
}
.contact-image-grid img:hover {
  transform: scale(1.1);
}
.contact-form-container {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
}
.contact-form {
  text-align: left;
}
.contact-form h2 {
  margin-bottom: 25px;
  color: #333;
}
.contact-sec span {
  color: #C9A24D;
  font-weight: bold;
}
.contact-form label {
  display: inline;
  margin-bottom: 5px;
  font-weight: 600;
  color:#333;
}
.contact-form input {
  width: 50%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 2px solid #333;
  border-radius: 6px;
  transition: border-color 0.3s;
  display: block;
  background: transparent;
}
.contact-form textarea {
  width: 50%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 2px solid #333;
  border-radius: 6px;
  transition: border-color 0.3s;
  display: block;
  background: transparent;
  color: #efefef;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #C9A24D;
  outline: none;
}
.contact-form button {
  width: 150px;
  padding: 12px;
  background-color: #999;
  color: #000;
  font-weight: 600;
  border: 2px solid #ccc;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-form button:hover {
  background-color: rgb(0, 0, 0);
  color: #C9A24D;
  border: 2px solid #efefef;
}
.contact-sec {
  margin-top: 100px;
}
.contact-details p {
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
  line-height: 30px;
  color: #333;
}
.contact-details h3 {
  font-size: 30px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 10px;
  color: #333;
}
.opening-hours {
  margin-top: 50px;
}
.contact-details p i {
  margin-right: 10px;
}
/* ***** menu ***** */
.menu-wraper {
  position: relative;
  z-index: 1;
  padding: 60px 15%;
}
.menu-wraper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url('/assets/icy-logo.png') no-repeat center center;
  background-size: contain;
  opacity: 0.1;
  width: 80%;
  height: 80%;
  z-index: 0;
  pointer-events: none;
}
.menu-container {
  position: relative;
  z-index: 2;
  margin: auto;
  padding: 0px 30px;
  border: 2px solid #efefef;
  border-radius: 10px;
}
.menu-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-top: 50px;
  margin-bottom: 40px;
  text-shadow: 0px 0px 8px rgba(243, 6, 148, 0.78);
}
.menu-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns on desktop */
  gap: 50px;
}
/* Base hidden state */
.menu-section {
  opacity: 0;
  transform: translateX(50px); /* Slide in from right by default */
  transition: opacity 0.8s ease, transform 0.8s ease;
}
/* Alternate direction for even sections */
.menu-section.left-slide {
  transform: translateX(-50px); /* Slide in from left */
}
/* Visible state */
.menu-section.visible {
  opacity: 1;
  transform: translateX(0);
}
/* Stagger effect on <li> elements inside .menu-section */
.menu-section.visible li {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.6s forwards;
}
.menu-section.visible li:nth-child(1) {
  animation-delay: 0.1s;
}
.menu-section.visible li:nth-child(2) {
  animation-delay: 0.2s;
}
.menu-section.visible li:nth-child(3) {
  animation-delay: 0.3s;
}
.menu-section.visible li:nth-child(4) {
  animation-delay: 0.4s;
}
.menu-section.visible li:nth-child(5) {
  animation-delay: 0.5s;
}
.menu-section.visible li:nth-child(6) {
  animation-delay: 0.6s;
}
/* Add more delays if needed */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu-section h2 {
  font-size: 24px;
  font-weight: bold;
  /* border-bottom: 2px solid #000; */
  padding-bottom: 5px;
  margin-bottom: 20px;
  /* text-shadow: 0px 0px 5px rgba(42, 6, 243, 0.78); */
  /* text-decoration: underline; */
  /* text-align: left; */
}
.menu-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-section li {
  display: grid;
  grid-template-columns: 1fr 80px;
  text-align: left;
}
.menu-section li.header {
  font-weight: bold;
  /* border-bottom: 2px solid #777; */
  margin-bottom: 5px;
}
.menu-section li .left-text {
  display: block;
  word-break: break-word;
  padding: 10px 0;
  text-align: left;
}
.menu-section li .right-text {
  display: block;
  word-break: break-word;
  padding: 10px 0;
  text-align: right;
}
.menu-footer {
  text-align: center;
  margin-top: 60px;
  font-size: 14px;
  color: #efefef;
  font-style: italic;
}
.pasta {
  margin-top: 50px;
}
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 30%;
  z-index: 1000;
  background-color: #f30694;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.back-to-top:hover {
  background-color: #c10478;
  transform: scale(1.1);
}
.tab-button {
  background-color: #f30694;
  color: white;
  border: none;
  padding: 10px 18px;
  margin: 0 8px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.tab-button:hover,
.tab-button.active {
  background-color: #c10478;
}
.menu-tabs-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 30px;
}
.menu-tabs {
  display: flex;
  gap: 12px;
  padding: 10px 20px;
  flex-wrap: nowrap;
  white-space: nowrap;
  justify-content: flex-start;
}
.tab-button {
  background-color: #f30694;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.tab-button:hover {
  background-color: #c10478;
  transform: scale(1.05);
}
.tab-button.active {
  background-color: #000;
  color: #fff;
  transform: scale(1.1);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}
.fade-in {
  animation: fadeIn 0.6s ease-out;
}
.fade-out {
  animation: fadeOut 0.6s ease-in forwards;
}
/* Vertical side images */
.menu-images-left {
  position: absolute;
  top: 0px; /* adjust based on your layout */
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
  left: -150px;
}
.menu-images-right {
  position: absolute;
  top: 0px; /* adjust based on your layout */
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
  right: -150px;
}
.menu-images-left img {
  width: 120px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.menu-images-right img {
  width: 120px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.menu-images-left img:hover {
  transform: scale(1.1);
}
.menu-images-right img:hover {
  transform: scale(1.1);
}
/* Positioning for left and right image blocks */
.menu-wraper {
  position: relative;
}
/* Image gallery below menu */
.image-gallery {
  margin-top: 60px;
  text-align: center;
}
.gallery-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}
.gallery-row img {
  width: 200px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.gallery-row img:hover {
  transform: scale(1.05);
}
/*Terms and Conditions*/
.tcpp{
    color: #C9A24D;
    font-size: 18px;
    line-height: 30px;
    text-decoration: none;
}

/* Terms and Conditions, payment policies */
/* Base Reset */
.terms-banner{
  position: relative;
  height: 70vh;
  background: url('/assets/banner10.jpg') center/cover no-repeat;
}

.terms-banner H1 {
  position: absolute;
  width: 100%;
  font-size: 70px;
  font-weight: 600;
  bottom: 30%;
  text-align: center;
  text-shadow: 0px 0px 15px rgba(4, 144, 251, 0.68);
}

/* Page Container */
.vibz-policy-container {
  max-width: 80%;
  margin: auto;
  padding: 30px;
  background: #0d0d0d;
  color: #ffffff;
}

/* Headings */
.vibz-policy-title {
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
}

.vibz-policy-intro {
  font-size: 15px;
  color: #cccccc;
  text-align: center;
  margin-bottom: 25px;
}

/* Policy Cards */
.vibz-policy-card {
  background: #151515;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vibz-policy-card h2 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #f5c16c; /* Accent color – adjust to VIBZ branding */
}

.vibz-policy-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #dddddd;
}

/* Mobile Optimization */
@media (max-width: 600px) {
  .vibz-policy-title {
    font-size: 24px;
  }

  .vibz-policy-card h2 {
    font-size: 15px;
  }

  .vibz-policy-card p {
    font-size: 13px;
  }
}

/*Guest Registration Form*/
.qr-banner{
    width: 600px;
    position: relative;
    height: 100vh;
    background: url(/assets/vibz-club.jpg) center / cover no-repeat;
    left: 50%;
    transform: translateX(-50%);
}
.guest-wrapper {
  max-width: 700px;
  margin: 60px auto;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border: 2px solid #C9A24D;
}

.guest-heading {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  color:#333;
}

.input-group {
  margin-bottom: 14px;
}

.input-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 400;
  color:#333;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #333;
  border-radius: 4px;
  background: transparent;
  color: #333;
}

.guest-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.guest-control input {
  width: 60px;
  text-align: center;
  font-weight: bold;
}

#guestGender option {
  background-color: transparent;
  color: #000;
  font-weight: 600;
}

.control-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
}

.control-btn:hover {
  background: #C9A24D;
}

.action-btn {
  width: 50%;
  padding: 12px;
  background: #C9A24D;
  border: none;
  color: #000;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 50%;
  margin-right: 50%;
  transform: translate(-50%, -50%);
  margin-top: 20px;
}

.action-btn:hover {
  background: #efefef;
}

input[type="date"] {
  pointer-events: auto;
  cursor: pointer;
}

a .insta-button {
    width: 38%;
    position: absolute;
    padding: 15px;
    font-size: 20px;
    font-weight: 600;
    overflow: hidden;

    /* Silver metallic base */
    background: linear-gradient(
        135deg,
        #f7f7f7 0%,
        #dddddd 25%,
        #bfbfbf 45%,
        #ffffff 50%,
        #bfbfbf 55%,
        #dddddd 75%,
        #f7f7f7 100%
    );

    border: 1px solid #a0a0a0;
    border-radius: 10px;
    color: #222;

    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.8),
        inset 0 -1px 2px rgba(0,0,0,0.25),
        0 4px 10px rgba(0,0,0,0.25);

    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Static shine highlight */
.insta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;          /* fixed highlight position */
    width: 40%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.25) 45%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0.25) 55%,
        transparent 100%
    );
}





.registration-button{
    width: 55%;
    position: absolute;
    padding: 15px;
    font-size: 20px;
    font-weight: 600;
    background: #C9A24D;
    border: 1px solid #000;
    border-radius: 10px;
    color: #000;
    bottom: 30%;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
}

/* Guest Book Button */

 /* Overlay */
.guest-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Modal Box */
.guest-modal-box {
  background: #fff;
  width: 95%;
  max-width: 420px;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  animation: bnwFadeIn 0.3s ease;
}

/* Title */
.guest-modal-title {
  text-align: center;
  margin-bottom: 15px;
  color:#333;
}

/* Close Button */
.guest-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 22px;
  border: none;
  background: none;
  cursor: pointer;
  color:#333;
}

/* Form */
.guest-form-group {
  margin-bottom: 12px;
}

.guest-form-group label {
  display: block;
  margin-bottom: 4px;
  font-weight: 400;
  color:#333;
  font-size: 16px;
}

.guest-form-group input,
.guest-form-group textarea {
  width: 100%;
  padding: 8px;
  border: 2px solid #333;
  border-radius: 5px;
  color:#333;
}

/* Quantity */
.guest-qty-wrapper {
  display: flex;
  gap: 6px;
}

.guest-qty-wrapper button {
  width: 35px;
  font-size: 18px;
  border: none;
  background: #333;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.guest-qty-wrapper input {
  text-align: center;
}

/* Submit */
.guest-submit-btn {
  width: 100%;
  padding: 10px;
  background: #333;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

/* Animation */
@keyframes bnwFadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Mobile */
@media (max-width: 480px) {
  .guest-modal-box {
    padding: 16px;
  }
}


.modal-seven-rooms {
  display: none; /* IMPORTANT: hide modal by default */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-content-seven-rooms {
  width: 70%;
  height: 80%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.modal-seven-rooms iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.reserve-modal-close {
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 800;
}
