* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --bg-color-main: #070a0c;
  --bg-color: rgb(11, 16, 20);
  --para: #acadae;
  --head: #ffffd8;
  --btn: #e2c48e;
  --btn-shade: #ffce74;
  --active: #f2f2f3;
  --overlay: rgb(11, 16, 20, 0.3);
  --overlay-bg: rgb(11, 16, 20, 0.8);
  --overlay-border: rgb(245, 222, 178, 0.2);
  --service-overlay: rgb(11, 16, 20, 0.5);
  --footer-nav-border: rgb(245, 222, 178, 0.1);
}

/* ===========================================
     Resuable Code
======================================= */
html {
  font-size: 62.5%;
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-color);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "DM Serif Display", serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

h2 {
  font-size: 2.8rem; /* 28px */
}

h3 {
  font-size: 2.2rem; /* 22px */
}

h4 {
  font-size: 2rem; /* 20px */
}

p {
  color: var(--para);
  line-height: 1.6;
  font-size: clamp(1.4rem, 2.5vw, 1.6rem);
}

h3 {
  text-transform: capitalize;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.container {
  max-width: 75%;
  margin: 0 auto;
}

.white-color {
  color: var(--active);
}

.cream-color {
  color: var(--btn);
}

.btn {
  display: inline-block;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem; /* 14px */
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  background-color: var(--btn);
  color: var(--bg-color);
  font-weight: 500;
  transition: all 0.3s linear;
}

.btn:hover,
.btn:active {
  background-color: var(--btn-shade);
  transition: all 1.2 linear;
}

.section {
  padding: 7rem 0;
}

.grid {
  display: grid;
}

.grid-two-col {
  grid-template-columns: 1fr 1fr;
}

.grid-three-col {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-four-col {
  grid-template-columns: repeat(4, 1fr);
}

.common-heading {
  max-width: 70rem;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 6rem;
  line-height: 7rem;
}

/* ===========================================
          Navbar Section
======================================= */

.header {
  position: absolute; /* Allows header to sit on top of video */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 12rem;
  padding: 3rem 8rem;
  background: linear-gradient(to bottom, rgba(7, 10, 12, 0.8), transparent); /* Soft shadow for logo visibility */
  transition: background-color 0.4s ease;
}

/* Optional JS class to add solid background on scroll */
.header.scrolled {
  background-color: var(--bg-color-main);
  position: fixed;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  height: 5rem;
}

.nav-list {
  display: flex;
  gap: 4rem;
  list-style: none;
  text-transform: uppercase; /* Uppercase looks more high-end */
  letter-spacing: 1px; /* Spacing adds elegance */
  font-size: 1.3rem; 
  align-items: center;
}

.nav-link a {
  text-decoration: none;
  color: var(--active);
  transition: color 0.3s ease;
}

.nav-link a:hover,
.nav-link a:active {
  color: var(--btn); /* Changes to cream/gold on hover */
}

/* ===========================================
         Hero Section
======================================= */


/* ===========================================
         Redesigned Hero Section (Video)
======================================= */
.hero-section {
  position: relative;
  height: 100vh; /* Full screen height */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 10, 12, 0.5); /* Darkens video to make text pop */
 
  /* ... keep the position/width/height ... */
  background: linear-gradient(
    to bottom, 
    rgba(0, 0, 0, 0.8) 0%,   /* Very dark at the top */
    rgba(0, 0, 0, 0.2) 50%,  /* Mostly clear in the center */
    rgba(0, 0, 0, 0.8) 100%  /* Very dark at the bottom */
  );
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;

  
}

.hero-content h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: clamp(5rem, 8vw, 9rem);
  line-height: 1.1;
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
}

.hero-content p {
  color: var(--active);
  max-width: 60rem;
  margin: 0 auto;
}


.hero-btn {
  margin-top: 4rem;
}

.btn {
  letter-spacing: 2px; /* Adds breathing room to buttons */
}

/* Hero Section glassmorphism  Effect for each letter */
/* Styling for individual glass letters */
.letter-by-letter-title {
  display: flex; /* Ensures letters line up and respect padding/margin better */
  flex-wrap: wrap; /* Wraps words to the next line on smaller screens */
  justify-content: center; /* Centers the words in the flexible title container */
  gap: 0.2rem; /* Adds very subtle space between each letter-box */
  line-height: 1.2; /* Slightly increase line-height for padding/spans */
}

.letter-by-letter-title span {
  display: inline-block; /* Essential for padding, border, transform etc. to work */
  background: rgba(255, 255, 255, 0.05); /* Extremely subtle frosted tint, adjust for brightness */
  backdrop-filter: blur(8px); /* Less blur than the large container for readability */
  -webkit-backdrop-filter: blur(8px);
  padding: 0.8rem 1rem; /* Adjust padding for visual letter balance */
  margin: 0.1rem; /* Even subtler margin if gap isn't enough */
  border-radius: 0.8rem; /* Softened edges for each character span */
  border: 1px solid rgba(255, 255, 255, 0.15); /* Slightly clearer border around each letter */
  position: relative; /* For text-shadow layering */
  
  /* Apply existing fade-up animation properties to each span */
  opacity: 0;
  transform: translateY(20px); /* Smaller vertical movement for individual letters */
  animation: fadeUpLetter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Cinematic Shadow specifically on the letters themselves for pop */
.letter-by-letter-title span {
  text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.7); 
}

/* Staggered delays per letter reveal (for each span, based on its position) */
.letter-by-letter-title span:nth-child(1)  { animation-delay: 0.4s; }  /* 'T' (overall delay + letter 1 delay) */
.letter-by-letter-title span:nth-child(2)  { animation-delay: 0.45s; } /* 'h' */
.letter-by-letter-title span:nth-child(3)  { animation-delay: 0.5s; }  /* 'e' */
.letter-by-letter-title span:nth-child(4)  { animation-delay: 0.55s; } /* 'C' */
.letter-by-letter-title span:nth-child(5)  { animation-delay: 0.6s; }  /* 'a' */
.letter-by-letter-title span:nth-child(6)  { animation-delay: 0.65s; } /* 'e' */
.letter-by-letter-title span:nth-child(7)  { animation-delay: 0.7s; }  /* 's' */
.letter-by-letter-title span:nth-child(8)  { animation-delay: 0.75s; } /* 'a' */
.letter-by-letter-title span:nth-child(9)  { animation-delay: 0.8s; }  /* 'r' */
.letter-by-letter-title span:nth-child(10) { animation-delay: 0.85s; } /* 'G' */
.letter-by-letter-title span:nth-child(11) { animation-delay: 0.9s; }  /* 'r' */
.letter-by-letter-title span:nth-child(12) { animation-delay: 0.95s; } /* 'a' */
.letter-by-letter-title span:nth-child(13) { animation-delay: 1.0s; }  /* 'n' */
.letter-by-letter-title span:nth-child(14) { animation-delay: 1.05s; } /* 'd' */

/* Adjust overall H1 animation delay slightly to coordinate */
.animate-fade-up.delay-1 {
  animation-delay: 0.3s; /* Main H1 content container delay, spans start right after */
}

/* Reuse the fadeUp keyframes from before, just ensure it's named similarly or adjust as needed for small differences like vertical distance */
@keyframes fadeUpLetter {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-about h1 {
  font-size: 7rem;
  padding-bottom: 2rem;
}

.hero-about p {
  max-width: 55rem;
}

.hero-btn {
  padding: 4rem 0;
}

.hero-img-container {
  padding: 6rem 0;
  height: 100%;
  width: 100%;
}

.hero-img-container img {
  background-size: cover;
  height: inherit;
  width: inherit;
}

/* ===========================================
         Luxury Cinematic Animations
======================================= */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Staggered delays for a sequenced reveal */
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================================
         Facility Section
======================================= */

.facility-section {
  position: relative;
  background-image: url("/images/Section-facilities.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Keeps the luxury parallax scrolling effect */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12rem 2rem; /* Added breathing room */
  min-height: 80vh;
  overflow: hidden;
}

.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* A cinematic vignette: darker on the edges, clearer in the middle */
  background: radial-gradient(circle at center, rgba(7, 10, 12, 0.3) 0%, rgba(7, 10, 12, 0.85) 100%);
  z-index: 1;
}

/* ===========================================
         The Glass Card
======================================= */
.facility-glass-card {
  position: relative;
  z-index: 2;
  background: rgba(11, 16, 20, 0.3); /* Highly transparent base */
  backdrop-filter: blur(16px); /* Strong blur for the frosted effect */
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 196, 142, 0.2); /* Subtle cream border */
  border-radius: 4px; /* Very slight rounding looks sharper and more premium */
  padding: 8rem 6rem;
  text-align: center;
  max-width: 80rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6); /* Soft drop shadow */
}

.facility-glass-card h2 {
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

/* Elegant dividing line */
.separator-line {
  width: 60px;
  height: 2px;
  background-color: var(--btn);
  margin: 0 auto 3rem auto;
}

.facility-glass-card p {
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--active);
  margin-bottom: 5rem;
}

/* ===========================================
         Cinematic Play Button
======================================= */
.play-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.play-btn-luxury {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 8rem;
  width: 8rem;
  border-radius: 50%;
  border: 1px solid var(--btn);
  color: var(--btn);
  font-size: 2.2rem;
  text-decoration: none;
  background: rgba(226, 196, 142, 0.05); /* Very slight gold tint */
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Smooth scale on hover, no layout shift */
.play-btn-luxury:hover {
  background: var(--btn);
  color: var(--bg-color-main);
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(226, 196, 142, 0.3);
}

/* Continuous outer pulse animation */
.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 1px solid var(--btn);
  animation: pulse 2.5s infinite ease-out;
  z-index: -1;
}

.play-text {
  color: var(--btn);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 4px;
}

/* Pulse Keyframes */
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}
/* ===========================================
         Redesigned Service Section
======================================= */
.service-section {
  padding: 10rem 8rem;
  background-color: var(--bg-color); /* Keeps it anchored to your dark theme */
}

.service-grid {
  gap: 3rem; /* Adds breathing room between the luxury cards */
}

/* ===========================================
         Service Cards Base Styling
======================================= */
.service-card {
  position: relative;
  height: 55rem; /* Tall, elegant portrait ratio */
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.card-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden; /* Ensures the zoomed image doesn't break the card shape */
}

.card-img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); /* Cinematic slow zoom */
}

/* Permanent gradient to ensure text is always readable */
.card-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(7, 10, 12, 0.95) 0%, rgba(7, 10, 12, 0.6) 40%, transparent 100%);
  z-index: 1;
}

/* ===========================================
         Service Cards Content & Typography
======================================= */
.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4rem 3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  color: var(--active);
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  transition: transform 0.5s ease;
}

/* The details container that holds the paragraph and link */
.card-details {
  height: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-details p {
  font-size: 1.4rem;
  color: #d1d1d1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.explore-link {
  display: inline-block;
  color: var(--btn);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid var(--btn);
  padding-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.explore-link:hover {
  color: var(--active);
  border-bottom-color: var(--active);
}

/* ===========================================
         Interactive Hover States
======================================= */
/* Zooms the image gracefully */
.service-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

/* Slides the title up slightly */
.service-card:hover .card-content h3 {
  transform: translateY(-5px);
  color: var(--btn); /* Turns title cream/gold on hover */
}

/* Reveals the hidden paragraph and link */
.service-card:hover .card-details {
  height: auto;
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================
         Gallary Section
======================================= */

/* ===========================================
         Redesigned Gallery Section
======================================= */
.gallery-section {
  padding: 10rem 0;
}

.gallery-text h2 {
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===========================================
         Editorial Asymmetrical Grid
======================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 28rem; /* Sets the base height for 1 square */
  gap: 1.5rem; /* Clean, crisp spacing between photos */
  width: 100%;
}

/* Grid Shape Modifiers */
.item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.item-tall {
  grid-row: span 2;
}

.item-wide {
  grid-column: span 2;
}

/* ===========================================
         Gallery Item & Interactive Hover
======================================= */
.gallery-item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden; /* Keeps the zoomed image inside the box */
  border-radius: 4px; /* Slight softening for luxury feel */
  margin: 0;
  cursor: crosshair; /* Subtle touch for a visual/gallery element */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Absolutely critical: prevents stretching/squishing */
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1); /* Slow, cinematic zoom */
}

/* The dark gradient that fades in to protect the text */
.gallery-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(7, 10, 12, 0.85) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

/* The elegant caption */
.gallery-item figcaption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  color: var(--active);
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  letter-spacing: 1px;
  z-index: 2;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Hover States */
.gallery-item:hover img {
  transform: scale(1.08); /* Zooms image in */
}

.gallery-item:hover::after {
  opacity: 1; /* Shows gradient */
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0); /* Slides text up */
}

/* ===========================================
         Responsive Adjustments
======================================= */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* Drops to 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
    grid-auto-rows: 35rem; /* Make them a bit taller on phones */
  }
  
  /* Reset spans for mobile so they don't break the layout */
  .item-large, .item-tall, .item-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ===========================================
         Accommodation Interactive Tour
======================================= */
.accommodation-section {
  padding: 0; /* Remove default padding for full-bleed effect */
  background-color: var(--bg-color-main);
}

.suite-tour-container {
  display: flex;
  min-height: 100vh; /* Full screen height */
  width: 100%;
}

/* ===========================================
         Left Side: Immersive Video Base
======================================= */
.suite-visuals {
  width: 55%;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-color-main); /* Fallback dark background */
}

.suite-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  /* The "Curtain Sweep" animation effect */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1), transform 1.2s ease;
  z-index: 1;
}

/* State class added by JS to hide the image gracefully */
.suite-img.sweep-out {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transform: scale(1.05); /* Slight zoom out as it leaves */
}

/* Subtle dark gradient overlay to ensure the image feels rich */
.suite-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(7, 10, 12, 0.5) 100%);
  z-index: 2;
}

.suite-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1); /* Centers the video like background-size: cover */
  object-fit: cover;
  
  /* The Royal "Curtain Sweep" effect */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1), transform 1.2s ease;
  z-index: 1;
}

/* State class added by JS when changing suites */
.suite-video.sweep-out {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transform: translate(-50%, -50%) scale(1.08); /* Cinematic push out as it leaves */
}

/* Soft atmospheric overlay for readability and luxury grading */
.suite-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(7, 10, 12, 0.2) 0%, rgba(7, 10, 12, 0.6) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Keep the rest of your .suite-interactive and details styles from the previous prompt unchanged */

/* ===========================================
         Right Side: Interactive Interface
======================================= */
.suite-interactive {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8rem 6rem;
  background-color: var(--bg-color);
  border-left: 1px solid rgba(226, 196, 142, 0.1);
}

.suite-section-title {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 4rem;
}

/* Suite Navigation List */
.suite-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 6rem;
}

.suite-list-item {
  color: #666;
  font-size: 2.2rem;
  font-family: "DM Serif Display", serif;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.suite-list-item::before {
  content: "";
  display: inline-block;
  width: 0px;
  height: 1px;
  background-color: var(--btn);
  transition: width 0.4s ease;
}

.suite-list-item:hover {
  color: var(--active);
}

.suite-list-item.active {
  color: var(--btn);
}

.suite-list-item.active::before {
  width: 40px; /* Draws a gold line next to the active suite */
}

/* ===========================================
         Dynamic Suite Details
======================================= */
.suite-details-wrapper {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Class added by JS to fade out text when changing rooms */
.suite-details-wrapper.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

.suite-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 3rem;
}

.suite-specs {
  display: flex;
  gap: 4rem;
  margin-bottom: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 0;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.spec-label {
  color: var(--btn);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.spec-value {
  color: var(--active);
  font-size: 1.6rem;
}

.suite-desc {
  margin-bottom: 4rem;
  max-width: 90%;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .suite-tour-container {
    flex-direction: column;
  }
  .suite-visuals, .suite-interactive {
    width: 100%;
  }
  .suite-visuals {
    height: 50vh;
  }
}

/* ===========================================
        Member Section
======================================= */
/* ===========================================
         Membership Section Redesign
======================================= */
/* ===========================================
         Member Section (Bento Grid)
======================================= */
.member-section {
  padding: 10rem 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(28rem, auto);
  gap: 2rem;
  width: 100%;
}

/* Base style for every cell in the grid */
.bento-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ===========================================
         Grid Placements & Spans
======================================= */
/* Makes the main header span 2 columns */
.bento-main {
  grid-column: span 2;
  padding: 4rem;
  align-items: flex-start;
  background: transparent;
}

.uppercase-spaced {
  font-size: 1.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.bento-title {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

/* Make specific images tall or wide for that magazine look */
.bento-tall {
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
}

/* The Call to Action Box */
.bento-cta {
  grid-column: span 2;
  background: var(--btn);
  padding: 4rem;
  align-items: center;
  text-align: center;
}

.bento-cta h2 {
  color: var(--bg-color-main);
  font-size: 4.2rem;
  margin-bottom: 1rem;
}

.bento-cta p {
  color: rgba(7, 10, 12, 0.8);
  margin-bottom: 3rem;
}

/* Dark variant of the button for the gold background */
.btn-outline {
  background: transparent;
  color: var(--bg-color-main);
  border: 1px solid var(--bg-color-main);
}
.btn-outline:hover {
  background: var(--bg-color-main);
  color: var(--btn);
}

/* ===========================================
         Text & Image Block Styling
======================================= */
.bento-text {
  background: rgba(11, 16, 20, 0.6);
  border: 1px solid rgba(226, 196, 142, 0.1);
  padding: 4rem 3rem;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bento-text h3 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: var(--active);
  transition: color 0.3s ease;
}

.bento-text p {
  color: var(--para);
  font-size: 1.4rem;
  line-height: 1.7;
}

/* Interactive Hover for Text Blocks: Soft Gold Glow */
.bento-text:hover {
  border-color: rgba(226, 196, 142, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(226, 196, 142, 0.1);
}
.bento-text:hover h3 {
  color: var(--btn);
}

/* Image blocks */
.bento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bento-img .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 10, 12, 0.2);
  transition: background 0.4s ease;
  pointer-events: none;
}

/* Interactive Hover for Images: Cinematic Zoom */
.bento-img:hover img {
  transform: scale(1.08);
}
.bento-img:hover .img-overlay {
  background: transparent;
}

/* ===========================================
         Responsive Adjustments
======================================= */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .bento-grid {
    grid-template-columns: 1fr; /* Stack everything on phones */
  }
  .bento-main, .bento-tall, .bento-wide, .bento-cta {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ===========================================
        Event Section
======================================= */

/* ===========================================
         Event Section (Editorial Overlap)
======================================= */
.event-section {
  padding: 10rem 0;
}

.uppercase-spaced {
  font-size: 1.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(4rem, 6vw, 5.5rem);
  line-height: 1.1;
  letter-spacing: 1px;
}

/* ===========================================
         Grid & Layout
======================================= */
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 6rem;
}

/* The card needs padding at the bottom so the absolute text box doesn't get cut off */
.event-card {
  position: relative;
  padding-bottom: 8rem; 
  cursor: pointer;
}

/* ===========================================
         Image Wrapper
======================================= */
.event-img-wrapper {
  height: 45rem;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.event-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ===========================================
         Overlapping Text Details
======================================= */
.event-details {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%; /* Sits slightly inside the image boundaries */
  background: var(--bg-color-main);
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(226, 196, 142, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.event-details h3 {
  font-size: 2.6rem;
  letter-spacing: 1px;
}

.event-details p {
  font-size: 1.4rem;
  color: var(--para);
  line-height: 1.6;
}

.explore-btn {
  color: var(--active);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid var(--active);
  padding-bottom: 0.5rem;
  transition: color 0.3s ease, border-color 0.3s ease;
  margin-top: 1rem;
}

/* ===========================================
         Interactive Hover States
======================================= */
/* Zoom the image */
.event-card:hover .event-img-wrapper img {
  transform: scale(1.06);
}

/* Lift the text box and illuminate the border */
.event-card:hover .event-details {
  transform: translate(-50%, -10px);
  border-color: var(--btn);
}

/* Highlight the link */
.event-card:hover .explore-btn {
  color: var(--btn);
  border-bottom-color: var(--btn);
}

/* ===========================================
         Responsive Adjustments
======================================= */
@media (max-width: 992px) {
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .event-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .event-details {
    width: 90%;
  }
}

/* ===========================================
        Payment Section
======================================= */

.payment-section {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.payment-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 50%;
  text-align: left;
  gap: 3rem;
}

.payment-heading h2 {
  font-size: 6rem;
  line-height: 6rem;
  text-transform: capitalize;
}

.payment-heading p {
  font-size: 1.6rem;
}

/* ===========================================
        Footer Section
======================================= */

/*  Footer Contact Section */

.contact-section {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 3rem;
}

.contact-address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 3rem;
  font-style: normal;
}

.contact-address h3 {
  font-size: 2.2rem;
}

.socialmedia-logo {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

.socialmedia-logo a {
  text-decoration: none;
  color: var(--active);
  font-size: 1.6rem;
  transition: all 0.2s linear;
}
.socialmedia-logo a :hover {
  color: var(--btn);
}

.contact-here {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
}

.contact-here h3 {
  font-size: 2.8rem;
}

.contact-submit {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.contact-submit input {
  font-size: 2rem;
  text-align: left;
  padding: 1rem;
  width: 40rem;
  height: 100%;
  outline: none;
}

/* Footer Navbar Section */

.footer-navbar {
  border-top: 1px solid var(--footer-nav-border);
}

.footer-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 10rem;
}

.footer-link a {
  text-transform: capitalize;
  color: var(--para);
  font-size: 1.5rem;
  transition: all 0.2s linear;
}
.footer-link a:hover,
.footer-link a:active {
  color: var(--active);
  transition: all 0.2s linear;
}

/* Footer Copyright Section */

.copyright-section {
  padding: 0 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copyright-section h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
}

/* Responsive Code */

.mobile-navbar-btn {
  display: none;
  cursor: pointer;
  text-align: center;
}
.mobile-navbar-btn .mobile-nav-icon[name="close-outline"] {
  display: none;
}

/* 1500px */

@media (min-width: 1500px) {
  html {
    font-size: 56.25%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 56.25%;
  }
}

@media (max-width: 94em) {
  html {
    font-size: 50%; /* 1rem = 8px */
  }
  .nav-logo {
    height: 5rem;
  }
}

@media (max-width: 1120px) {
  p {
    font-size: 1.6rem;
  }

  .btn {
    font-size: 1.4rem;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  h3 {
    font-size: 2rem;
  }

  /* Navbar Section */

  .header {
    position: relative;
  }
  .navbar {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s linear;
    background-color: var(--btn-shade);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    z-index: 999;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    font-size: 5rem;
    align-items: center;
    justify-content: flex-start;
    padding: 4rem;
  }
  .nav-link a {
    color: var(--bg-color-main);
  }

  .nav-btn {
    color: var(--btn);
    background-color: var(--bg-color-main);
    font-size: 7.5rem;
    padding: 4rem 3rem;
  }

  .nav-logo {
    height: 7rem;
  }
  .mobile-navbar-btn {
    z-index: 9999;
    display: block;
  }
  .mobile-nav-icon {
    height: 4rem;
    width: 4rem;
    color: var(--active);
    font-size: 6rem;
    z-index: 9999;
  }

  .mobile-navbar-btn .mobile-nav-icon[name="close-outline"] {
    color: var(--bg-color-main);
  }
  .active .navbar {
    visibility: visible;
    transform: translateX(0%);
    pointer-events: auto;
    opacity: 1;
    z-index: 9999;
  }
  .active .mobile-navbar-btn .mobile-nav-icon[name="close-outline"] {
    display: block;
  }
  .active .mobile-navbar-btn .mobile-nav-icon[name="menu-outline"] {
    display: none;
  }

  /* Body Section  */

  p {
    font-size: clamp(1.4rem, 2vw, 1.6rem);
  }

  .btn {
    font-size: 2.5rem;
    padding: 2rem 3.5rem;
  }
  .container {
    max-width: 90%;
    margin: 0 auto;
  }

  .common-heading {
    max-width: 100vh;
    line-height: normal;
  }
  /* Hero Section  */

  .hero-section {
    padding-left: 10rem;
  }

  .hero-about h1 {
    font-size: clamp(2.8rem, 6vw, 4rem);
  }

  .hero-about p {
    max-width: 68rem;
  }
  .hero-about h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
  }

  .hero-about h1 {
    font-size: 8.5rem;
  }

  /* Facility Section  */

  .facility-details {
    width: 90%;
    padding: 8rem 5rem;
  }

  .facility-section h2 {
    font-size: 8rem;
    max-width: 100%;
  }
  .facility-section p {
    font-size: 2.3rem;
    max-width: 100%;
  }

  .play-btn a i {
    font-size: 3.5rem;
    padding: 2.5rem;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-section h2 {
    font-size: 8rem;
  }

  .image-holder h3 {
    font-size: 3.8rem;
  }

  /* Gallary Section  */

  .gallary-text p {
    font-size: 2.3rem;
  }
  .gallary-text h2 {
    font-size: 8rem;
  }

  /* Member Section  */

  .member-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .member-grid-main {
    grid-column: 1/3;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    max-width: 100%;
  }

  .member-grid-btn {
    grid-column: 1/3;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    padding: 2.5rem;
    text-align: center;
  }
  .member-holder p {
    font-size: 2.3rem;
  }

  .member-grid-main h2 {
    font-size: 8.5rem;
    padding-top: 0rem;
  }

  .member-grid-main h3 {
    font-size: 3rem;
  }

  .member-grid-text h3 {
    font-size: 3.5rem;
  }

  .member-grid-btn h2 {
    font-size: 4.5rem;
    color: var(--btn);
    padding: 2rem;
  }

  /* Event Section  */

  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-text h2 {
    font-size: 8rem;
    padding-bottom: 2rem;
  }

  .event-text p {
    font-size: 2.3rem;
  }

  .event-grid-text h3 {
    font-size: 4.5rem;
  }
  .event-grid-text p {
    font-size: 2rem;
  }

  #Parties {
    grid-column: 2/3;
    grid-row: 3/4;
  }
  #Conference {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  #Weddings {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  /* Payment Section  */

  .payment-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    gap: 5rem;
    text-align: center;
  }
  .payment-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    text-align: center;
  }
  .payment-heading h2 {
    font-size: 8rem;
    line-height: normal;
  }
  .payment-heading p {
    font-size: 2.3rem;
  }

  /* Footer Contact Section  */

  .contact-section {
    flex-direction: row;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .contact-here h3 {
    font-size: 4rem;
  }

  .contact-address {
    row-gap: 5rem;
  }
  .contact-here {
    gap: 5rem;
  }
  .contact-address h3 {
    font-size: 3rem;
  }
  .socialmedia-logo a {
    font-size: 2rem;
  }
  .contact-submit input {
    font-size: 2.2rem;
  }

  /* Footer Link Section  */

  .footer-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  .footer-link a {
    font-size: 2rem;
  }

  .copyright-section h3 {
    font-size: 2rem;
  }
}

@media (max-width: 780px) {
  html {
    font-size: 35%;
  }

  /* Service Section  */

  .service-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }

  /* Gallary Section  */

  .gallary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallary-grid-1,
  .gallary-grid-2,
  .gallary-grid-3,
  .gallary-grid-3,
  .gallary-grid-4,
  .gallary-grid-5,
  .gallary-grid-6 {
    grid-row: auto;
  }
}
@media (max-width: 600px) {
  /* Gallary Section  */

  .gallary-grid {
    display: flex;
    flex-direction: column;
  }

  /* Member Section  */

  .member-grid {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    gap: 10rem;
  }

  .member-grid-main h2 {
    line-height: 9rem;
  }
  .member-grid-btn h2 {
    font-size: 7rem;
  }

  .member-holder {
    grid-column: 1/3;
  }
  #casino {
    grid-row: 4/5;
  }
  #vouchers {
    grid-row: 6/7;
  }
  .member-grid-text {
    text-align: center;
    align-items: center;
  }

  .member-grid-text h3 {
    font-size: 6rem;
  }

  .member-grid-main h3 {
    font-size: 4rem;
  }
  /* Event Section  */

  .event-grid {
    display: grid;
    gap: 5rem;
    grid-template-columns: 1fr;
  }
  .event-grid-text h3 {
    font-size: 7rem;
  }

  #Parties {
    grid-column: auto;
    grid-row: 5/6;
  }
  #Conference {
    grid-column: auto;
    grid-row: 3/4;
  }
  #Weddings {
    grid-column: auto;
    grid-row: 1/2;
  }

  /* Contact Section  */

  .contact-section {
    display: grid;
    grid-template-columns: 1fr;
  }
  .contact-address,
  .contact-here {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 500px) {
  html {
    font-size: 20%;
  }
}
