@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Color Palette inspired by Edgy Vibrations */
  --primary-color: var(--deep-blue);
  --primary-light: #2c2c47;
  --accent-color: var(--acid-green);
  --accent-hover: #33ff33;
  --text-dark: var(--deep-blue);
  --text-light: #3a3a5a;
  --bg-color: var(--cream-block);
  --bg-white: #ffffff;
  
  --header-height: 100px;
  
  /* Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-statement: 'Playfair Display', serif;
  --font-blackletter: 'UnifrakturMaguntia', cursive;
  
  /* New Exact Theme Variables */
  --gradient-bg: linear-gradient(180deg, #df2a0c 0%, #f3efe5 35%, #f3efe5 100%);
  --acid-green: #00ff00; /* Neon green from the video */
  --deep-blue: #11112b; /* Exact dark blue/purple */
  --cream-block: #f3efe5; /* The beige block color */
}

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

html {
  scroll-behavior: smooth;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

body {
  font-family: var(--font-body);
  background-color: var(--deep-blue);
  color: var(--bg-color);
  line-height: 1.6;
  overflow-x: clip;
}

/* ------------------- Typography ------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 15px auto 0;
}

/* ------------------- Buttons ------------------- */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn-outline {
  background: transparent;
  border-color: var(--bg-white);
  color: var(--bg-white);
}

.btn-outline:hover {
  background: var(--bg-white);
  color: var(--primary-color);
}

.btn-primary {
  background: var(--accent-color);
  color: var(--bg-white);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.header {
  position: absolute; /* In the video, the header is absolute at the top, scrolling with page */
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: transparent !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 1000;
  box-shadow: none !important;
}

.dribbble-logo {
  font-family: var(--font-blackletter);
  font-size: 2.5rem;
  color: #fff; /* or dark blue depending on the top of the gradient */
  text-shadow: 1px 1px 10px rgba(0,0,0,0.2);
}

.dribbble-nav-list {
  display: flex;
  gap: 30px;
}

.dribbble-nav-list .nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0px;
  text-transform: none;
}

.dribbble-btn {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  color: white !important;
  font-weight: 400;
  border-radius: 4px;
  padding: 8px 20px;
}
.dribbble-btn:hover {
  background: rgba(255,255,255,0.1) !important;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--bg-white);
  font-family: var(--font-heading);
  min-width: max-content;
}

.logo-main {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 15px;
  margin: 0 10px;
}

@media (min-width: 769px) {
  #nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
  }
}

.nav-link {
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.location-dropdown {
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  color: var(--bg-white);
  font-size: 1.5rem;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--bg-white);
  transition: 0.3s;
}

/* ------------------- Hero Section ------------------- */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  perspective: 1600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gradient-bg);
}




.carousel-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 600px;
  transform-style: preserve-3d;
  z-index: 1;
}

.carousel-center-info {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(0px);
  text-align: center;
  width: 100%;
  /* No z-index so CSS 3D natural sorting takes over */
}

.carousel {
  will-change: transform;

  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: spin3D 60s linear infinite;
}

.carousel-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 190px;
  margin-top: -95px;
  margin-left: -70px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  /* Added fading animation synced with rotation */
  animation: itemFade 60s linear infinite;
}

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

/* 32 items, 60s loop, Radius 500px (spoke facing) */
.item-1 { transform: rotateY(0deg) translateZ(500px) rotateY(90deg); animation-delay: 0s; }
.item-2 { transform: rotateY(11.25deg) translateZ(500px) rotateY(90deg); animation-delay: -58.125s; }
.item-3 { transform: rotateY(22.5deg) translateZ(500px) rotateY(90deg); animation-delay: -56.25s; }
.item-4 { transform: rotateY(33.75deg) translateZ(500px) rotateY(90deg); animation-delay: -54.375s; }
.item-5 { transform: rotateY(45deg) translateZ(500px) rotateY(90deg); animation-delay: -52.5s; }
.item-6 { transform: rotateY(56.25deg) translateZ(500px) rotateY(90deg); animation-delay: -50.625s; }
.item-7 { transform: rotateY(67.5deg) translateZ(500px) rotateY(90deg); animation-delay: -48.75s; }
.item-8 { transform: rotateY(78.75deg) translateZ(500px) rotateY(90deg); animation-delay: -46.875s; }
.item-9 { transform: rotateY(90deg) translateZ(500px) rotateY(90deg); animation-delay: -45s; }
.item-10 { transform: rotateY(101.25deg) translateZ(500px) rotateY(90deg); animation-delay: -43.125s; }
.item-11 { transform: rotateY(112.5deg) translateZ(500px) rotateY(90deg); animation-delay: -41.25s; }
.item-12 { transform: rotateY(123.75deg) translateZ(500px) rotateY(90deg); animation-delay: -39.375s; }
.item-13 { transform: rotateY(135deg) translateZ(500px) rotateY(90deg); animation-delay: -37.5s; }
.item-14 { transform: rotateY(146.25deg) translateZ(500px) rotateY(90deg); animation-delay: -35.625s; }
.item-15 { transform: rotateY(157.5deg) translateZ(500px) rotateY(90deg); animation-delay: -33.75s; }
.item-16 { transform: rotateY(168.75deg) translateZ(500px) rotateY(90deg); animation-delay: -31.875s; }
.item-17 { transform: rotateY(180deg) translateZ(500px) rotateY(90deg); animation-delay: -30s; }
.item-18 { transform: rotateY(191.25deg) translateZ(500px) rotateY(90deg); animation-delay: -28.125s; }
.item-19 { transform: rotateY(202.5deg) translateZ(500px) rotateY(90deg); animation-delay: -26.25s; }
.item-20 { transform: rotateY(213.75deg) translateZ(500px) rotateY(90deg); animation-delay: -24.375s; }
.item-21 { transform: rotateY(225deg) translateZ(500px) rotateY(90deg); animation-delay: -22.5s; }
.item-22 { transform: rotateY(236.25deg) translateZ(500px) rotateY(90deg); animation-delay: -20.625s; }
.item-23 { transform: rotateY(247.5deg) translateZ(500px) rotateY(90deg); animation-delay: -18.75s; }
.item-24 { transform: rotateY(258.75deg) translateZ(500px) rotateY(90deg); animation-delay: -16.875s; }
.item-25 { transform: rotateY(270deg) translateZ(500px) rotateY(90deg); animation-delay: -15s; }
.item-26 { transform: rotateY(281.25deg) translateZ(500px) rotateY(90deg); animation-delay: -13.125s; }
.item-27 { transform: rotateY(292.5deg) translateZ(500px) rotateY(90deg); animation-delay: -11.25s; }
.item-28 { transform: rotateY(303.75deg) translateZ(500px) rotateY(90deg); animation-delay: -9.375s; }
.item-29 { transform: rotateY(315deg) translateZ(500px) rotateY(90deg); animation-delay: -7.5s; }
.item-30 { transform: rotateY(326.25deg) translateZ(500px) rotateY(90deg); animation-delay: -5.625s; }
.item-31 { transform: rotateY(337.5deg) translateZ(500px) rotateY(90deg); animation-delay: -3.75s; }
.item-32 { transform: rotateY(348.75deg) translateZ(500px) rotateY(90deg); animation-delay: -1.875s; }

@keyframes spin3D {
  from { transform: rotateX(-20deg) rotateY(0deg); }
  to { transform: rotateX(-20deg) rotateY(-360deg); }
}

@keyframes itemFade {
  0%, 100% { opacity: 1; filter: brightness(1); }
  15% { opacity: 1; filter: brightness(0.9); }
  25% { opacity: 0.2; filter: brightness(0.6); }
  40% { opacity: 0; filter: brightness(0.2); }
  50% { opacity: 0; filter: brightness(0.2); }
  60% { opacity: 0; filter: brightness(0.2); }
  75% { opacity: 0.2; filter: brightness(0.6); }
  85% { opacity: 1; filter: brightness(0.9); }
}

@media (max-width: 768px) {
  .carousel-item {
    width: 100px;
    height: 140px;
    margin-top: -70px;
    margin-left: -50px;
  }
  .item-1 { transform: rotateY(0deg) translateZ(200px); }
  .item-2 { transform: rotateY(22.5deg) translateZ(200px); }
  .item-3 { transform: rotateY(45deg) translateZ(200px); }
  .item-4 { transform: rotateY(67.5deg) translateZ(200px); }
  .item-5 { transform: rotateY(90deg) translateZ(200px); }
  .item-6 { transform: rotateY(112.5deg) translateZ(200px); }
  .item-7 { transform: rotateY(135deg) translateZ(200px); }
  .item-8 { transform: rotateY(157.5deg) translateZ(200px); }
  .item-9 { transform: rotateY(180deg) translateZ(200px); }
  .item-10 { transform: rotateY(202.5deg) translateZ(200px); }
  .item-11 { transform: rotateY(225deg) translateZ(200px); }
  .item-12 { transform: rotateY(247.5deg) translateZ(200px); }
  .item-13 { transform: rotateY(270deg) translateZ(200px); }
  .item-14 { transform: rotateY(292.5deg) translateZ(200px); }
  .item-15 { transform: rotateY(315deg) translateZ(200px); }
  .item-16 { transform: rotateY(337.5deg) translateZ(200px); }
  
  .statement-container {
    padding: 60px 30px !important;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: white;
  margin-bottom: 0;
  margin-top: 20px;
  margin-top: auto;
  max-width: 900px;
  padding: 0 20px;
}

.blackletter-title {
  color: var(--deep-blue);
  font-size: clamp(4rem, 10vw, 8.5rem);
  margin-bottom: 0;
  margin-top: 20px;
  font-family: var(--font-blackletter);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.hero-subtext {
  font-family: var(--font-body);
  color: var(--deep-blue);
  max-width: 450px;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
}

.btn-acid-video {
  display: inline-block;
  background-color: var(--acid-green);
  color: #000;
  font-family: var(--font-body);
  font-weight: 600;
  padding: 15px 40px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.btn-acid-video:hover {
  transform: scale(1.05);
}

.hero-content p {
  color: #f0f0f0;
  font-size: 1.2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  line-height: 1.8;
}

/* Booking Widget */
.booking-widget {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  padding: 20px 40px;
  display: flex;
  gap: 30px;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  margin-top: auto;
  margin-bottom: 50px;
  animation: slideUp 1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

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

.booking-field {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bg-white);
  padding: 10px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.booking-field:last-of-type {
  border-right: none;
}

.booking-field i {
  font-size: 1.2rem;
  color: var(--bg-white);
}

.booking-field span {
  font-family: var(--font-body);
  font-size: 1rem;
}

.btn-reserve {
  background: transparent;
  border: 1px solid var(--bg-white);
  color: var(--bg-white);
  border-radius: 30px;
  padding: 10px 25px;
  margin-left: 10px;
}

.btn-reserve:hover {
  background: var(--bg-white);
  color: var(--primary-color);
}

/* ------------------- Statement Section ------------------- */
.btn-acid {
  background: var(--acid-green) !important;
  color: var(--deep-blue) !important;
  font-weight: 700;
}
.btn-acid:hover {
  background: var(--acid-green-hover) !important;
}

.statement-section {
  background-color: var(--deep-blue);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.statement-container {
  background-color: var(--cream-block);
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 100px;
  position: relative;
  cursor: default;
}

.statement-text {
  font-family: var(--font-statement);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--deep-blue);
  line-height: 1.1;
  text-align: left;
  margin: 0;
  position: relative;
  z-index: 2;
  font-weight: 500;
  pointer-events: none;
}

.neon-dot {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: var(--acid-green);
    margin: 0 4px;
    vertical-align: baseline;
    position: relative;
    cursor: crosshair;
    z-index: 10;
  }
  .neon-dot::after {
    content: '';
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    z-index: 11;
  }

.hover-image-reveal {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 300px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.4s ease;
  z-index: 100;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.hover-image-reveal.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hover-image-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.statement-columns {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  gap: 40px;
}
.statement-columns .col {
  width: 45%;
}
.statement-columns .col p {
  font-family: var(--font-body);
  color: var(--deep-blue);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
}

.giant-locations {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  border-top: 2px solid rgba(17, 17, 43, 0.1);
  padding-top: 40px;
}

.loc-item {
  text-align: center;
}
.loc-item h3 {
  font-family: var(--font-blackletter);
  font-size: clamp(5rem, 15vw, 12rem);
  color: var(--deep-blue);
  margin-bottom: -20px;
  line-height: 1;
}
.loc-item span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--deep-blue);
}

.loc-center-img {
  width: 200px;
  height: 300px;
  position: relative;
  overflow: hidden;
}
.loc-center-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-marquee-section {
  position: relative;
  background-color: var(--cream-block);
  overflow: hidden;
}

.full-width-image-container {
  position: relative;
  width: 100%;
  height: 80vh;
}

.full-width-image-container .full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-img {
  position: absolute;
  top: 10%;
  left: 30%;
  width: 300px;
  height: 200px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.floating-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marquee-bar {
  background-color: var(--deep-blue);
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

.marquee-content span {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--acid-green);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  margin-right: 20px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* ------------------- Intro Section ------------------- */
.section {
  padding: 80px 40px;
  background-color: var(--cream-block);
  color: var(--deep-blue);
  border-radius: 40px;
  margin: 40px 20px;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
    border-radius: 20px;
    margin: 20px 10px;
  }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intro-text {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ------------------- Facilities Grid ------------------- */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.facility-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.facility-img-container {
  height: 250px;
  overflow: hidden;
}

.facility-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-card:hover .facility-img {
  transform: scale(1.05);
}

.facility-content {
  padding: 25px;
}

.facility-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* ------------------- Dining & Events ------------------- */
.split-layout {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 100px;
}

.split-layout:nth-child(even) {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
}

.split-image {
  flex: 1;
  position: relative;
}

.split-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.split-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border: 2px solid var(--accent-color);
  z-index: -1;
  border-radius: 8px;
}

.split-layout:nth-child(even) .split-image::after {
  left: 20px;
  right: -20px;
}

/* ------------------- Footer ------------------- */
.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

.footer-col h3 {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-col p {
  color: #ccc;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-col p i {
  color: var(--accent-color);
  margin-top: 5px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
  font-size: 0.9rem;
}

/* ------------------- Responsive ------------------- */
@media (max-width: 992px) {
  .header {
    padding: 0 20px;
  }
  
  .split-layout, .split-layout:nth-child(even) {
    flex-direction: column;
  }
  
  .split-image::after, .split-layout:nth-child(even) .split-image::after {
    display: none;
  }
}

@media (max-width: 768px) {
  #nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  
  #nav-menu.active {
    max-height: 600px;
  }
  
  .nav-list {
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
  }
  
  .nav-list li {
    text-align: center;
    padding: 15px 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .header-actions {
    display: none !important;
  }
  
  .booking-widget {
    flex-direction: column;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    padding: 20px;
  }
  
  .booking-field {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    justify-content: center;
    padding: 15px 10px;
  }
  
  .btn-reserve {
    margin-top: 15px;
    margin-left: 0;
    width: 100%;
  }
}

.page-padding {
  padding-top: 130px;
  padding-bottom: 50px;
}



/* Brands Grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.brand-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.brand-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.brand-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.brand-info {
  padding: 20px;
  text-align: center;
}

.brand-info h3 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-bottom: 5px;
}

.brand-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.02);
}

/* Contact Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .enquiry-form .form-row {
    flex-direction: column;
    gap: 10px;
  }
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.enquiry-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.enquiry-form .form-field {
  flex: 1;
}

.enquiry-form input, .enquiry-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: #f9f9f9;
}

.enquiry-form input:focus, .enquiry-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: white;
}

























/* Performance Optimizations for GSAP Animations */
.section-title, .section-text, .facility-card, .room-card, .gallery-img, .brand-card, .footer-col, .split-text, .split-image, .btn {
  will-change: transform, opacity;
}


/* Desktop Menu Toggle Default (Hidden) */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--bg-white);
  cursor: pointer;
  z-index: 1001;
}

/* Mobile Responsive Optimizations */
@media (max-width: 768px) {
  /* Header & Navigation */
  .menu-toggle {
    display: block;
  }
  .header-actions {
    display: none; /* Hide location and book now on mobile to save space */
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--primary-color);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding-top: 80px;
  }
  .nav.active {
    right: 0;
  }
  .nav-list {
    flex-direction: column !important;
    gap: 20px;
    align-items: center;
  }
  
  /* Layouts & Grids */
  .split-layout {
    flex-direction: column !important;
    text-align: center;
  }
  .split-text {
    padding: 0;
  }
  .split-text .section-title {
    text-align: center !important;
  }
  .split-image img {
    margin-top: 20px;
  }
  .grid, .footer-grid, .booking-grid, .facilities-grid {
    grid-template-columns: 1fr !important;
  }
  .statement-columns-anim {
    flex-direction: column;
    gap: 20px;
  }
  
  /* Typography & Spacing */
  .large-title {
    font-size: 3.5rem !important;
  }
  .section-title {
    font-size: 2rem !important;
  }
  .hero-subtext {
    font-size: 1rem !important;
  }
  .section {
    padding: 60px 20px;
  }
  .header {
    padding: 0 20px;
  }
  
  /* Carousel Adjustments */
  .carousel-item img {
    width: 250px;
    height: 350px;
  }
}
