@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 {
  position: fixed;
  top: 80px;
  right: -300px;
  margin-top: 30px;
  padding: 10px 30px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  background: rgb(0 0 0 / 0.5);
  border: 1px solid #1ca3de;
  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;
}
.nav-links.show {
  right: 10px;
  pointer-events: auto;
}
.nav-links li {
  margin: 6px 0;
}
.nav-links a {
  display: inline-block;
  padding: 12px 18px;
  font-size: 18px;
  line-height: 1.5;
  color: #1ca3de;
  transition: color 0.3s ease;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links .active a {
  color: #1ca3de;
}
.hamburger {
  display: block;
  width: 35px;
  height: 24px;
  position: relative;
  cursor: pointer;
  margin-top: 0%;
}
.hamburger span {
  background: #1ca3de;
  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: 200px;
  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 */
.pulse-button {
  position: absolute;
  top: 5%;
  right: 14%;
  background: none;
  font-size: 18px;
  color: #1ca3de;
  border: 2px solid #1ca3de;
  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;
  z-index: 1001;
  text-align: center;
}
.pulse-button:hover {
  color: #1ca3de;
  border: 2px solid #1ca3de;
}
@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);
  }
}

.vip-access-wrapper {
  position: absolute;
  left: 5%;
  bottom: 10%;
}

.vip-access {
  position: relative;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(231, 76, 60, 0);
  border: 2px solid #1ca3de;
  color: #1ca3de;
  font-weight: 600;
  z-index: 1;
  overflow: visible; /* IMPORTANT: Let the dot move outside */
}

/* Dot styling */
.vip-access .dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #1ca3de;
  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 .dot::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #1ca3de;
  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;
  }
}

.join-guest-wrapper {
  position: absolute;
  right: 14%;
  bottom: 10%;
}

.join-guest {
  position: relative;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(231, 76, 60, 0);
  border: 2px solid #1ca3de;
  color: #1ca3de;
  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: #1ca3de;
  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: #1ca3de;
  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: #efefef;
  font-weight: 600;
  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: fixed;
  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;
  background: #fff;
  font-size: 28px;
  color: #000;
  border-radius: 50%;
  border: 3px solid #1ca3de;
  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 {
  background: #000000;
  color: #1ca3de;
  border: 3px solid #efefef;
}
.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;
}
.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 {
  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);
}
.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: #1ca3de;
  margin: 30px 0;
  /* text-shadow: 0px 0px 10px rgba(241, 181, 15, 0.68); */
  text-align: center;
}
.featured p {
  width: 90%;
  margin-bottom: 50px;
  text-align: center;
  margin: 0 auto;
  line-height: 26px;
  text-align: justify;
}
.heading3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1ca3de;
}
.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;
  align-items: 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: #000; */
  /* border-top: 2px solid #6c6c6c; */
  background: #111;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}
.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-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 #1ca3de;
  background: #111;
  color: #1ca3de;
  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: 80%;
  height: auto;
  margin: 10px 0;
}
.social-icons {
  width: 100%;
  margin-top: 5px;
}
.social-icons a {
  font-size: 35px;
  text-decoration: none;
  /* transition: transform 0.3s ease, color 0.3s ease; */
  /* padding: 5px; */
  /* font-size: 20px; */
  color: #1ca3de;
  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 #1ca3de;
  color: #1ca3de;
  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: #1ca3de;
}
.footer-address {
  line-height: 46px;
}
.guest-list {
  display: inline-block;
  padding: 10px;
  color: #1ca3de;
  border: 2px solid #1ca3de;
  border-radius: 10px;
  margin-top: 50px;
}
.guest-list:hover {
  border: 2px solid #efefef;
  color: #efefef;
}
.open-hours {
  margin-top: 15px;
  font-size: 16px;
}
/* Banner */
.about-banner {
  position: relative;
  height: 100vh;
  background: url('/assets/banner34.jpg') center/cover no-repeat;
  text-align: center;
}
.about-banner H1 {
  position: absolute;
  width: 90%;
  font-size: 70px;
  font-weight: 600;
  bottom: 25%;
  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;
}
.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: rgba(255, 255, 255, 0.1);
}
.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: #1ca3de;
  font-weight: bold;
}
.contact-form label {
  display: inline;
  margin-bottom: 5px;
  color: #efefef;
  font-weight: 600;
}
.contact-form input {
  width: 50%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 2px solid #efefef;
  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 #efefef;
  border-radius: 6px;
  transition: border-color 0.3s;
  display: block;
  background: transparent;
  color: #efefef;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1ca3de;
  outline: none;
}
.contact-form button {
  width: 150px;
  padding: 12px;
  background-color: #efefef;
  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: #1ca3de;
  border: 2px solid #efefef;
}
.contact-sec {
  margin-top: 100px;
}
.contact-details p {
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
  line-height: 30px;
}
.contact-details h3 {
  font-size: 30px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 10px;
}
.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);
}
