/* ============================================
   LIME LIGHT SOCIAL CLUB - Premium Styles
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --lime-neon: #c9e500;
  --fresh-green: #45b649;
  --luxury-black: #080808;
  --dark-charcoal: #121212;
  --dark-surface: #1a1a1a;
  --white: #ffffff;
  --grey: #9e9e9e;
  --grey-muted: #616161;
  --grey-dark: #424242;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Space Grotesk', sans-serif;
  
}

/* ---- Reset & Base ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  /* background-color: var(--luxury-black); */
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--lime-neon);
  color: var(--luxury-black);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--luxury-black);
}
::-webkit-scrollbar-thumb {
  background: var(--dark-charcoal);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--lime-neon);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-brand:hover .nav-logo-img {
  transform: scale(1.05);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--grey) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--lime-neon) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--lime-neon);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  width:50px ;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-reserve {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--lime-neon);
  color: var(--lime-neon) !important;
  padding: 0.5rem 1.25rem !important;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.nav-reserve:hover {
  background: var(--lime-neon);
  color: var(--luxury-black) !important;
}

.nav-reserve::after {
  display: none;
}

/* Toggler */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px var(--lime-neon);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201, 229, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile nav */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    margin-top: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--glass-border);
  }
  .nav-reserve {
    margin-left: 0;
    margin-top: 0.5rem;
    display: inline-block;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 0;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

.hero-video {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 16px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../../assets/images/lounge-interior.jpg') center/cover no-repeat;
  filter: brightness(0.25);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.6) 0%,
    rgba(8, 8, 8, 0.3) 40%,
    rgba(8, 8, 8, 0.6) 100%
  );
  z-index: 1;
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

.hero-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 229, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo-wrapper {
  margin-bottom: 1.5rem;
}

.hero-logo {
  max-width: 600px;
  width: 90%;
  height: auto;
  filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.8));
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime-neon);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.9), 0 0 80px rgba(0, 0, 0, 0.5);
}

.hero-title span:last-child {
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: var(--grey);
  margin-top: 1.5rem;
}

.hero-address {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--grey-muted);
  margin-top: 1rem;
}

.hero-address svg {
  margin-right: 0.4rem;
  vertical-align: text-bottom;
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero-buttons .btn {
  min-width: 180px;
}

/* ---- Buttons ---- */
.btn-lime {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--lime-neon);
  color: var(--luxury-black);
  border: 2px solid var(--lime-neon);
  border-radius: 100px;
  padding: 0.875rem 2.25rem;
  transition: all 0.3s ease;
}

.btn-lime:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--luxury-black);
  box-shadow: 0 0 40px rgba(201, 229, 0, 0.4);
}

.btn-ghost {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 0.875rem 2.25rem;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  border-color: var(--lime-neon);
  color: var(--lime-neon);
}

.btn-outline-lime {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--lime-neon);
  border: 1px solid rgba(201, 229, 0, 0.4);
  border-radius: 0;
  padding: 0.75rem 1.75rem;
  transition: all 0.3s ease;
}

.btn-outline-lime:hover {
  background: var(--lime-neon) !important;
  color: var(--luxury-black);
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime-neon);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  text-shadow: 0 0 30px rgba(201, 229, 0, 0.15);
  margin-bottom: 1.5rem;
}

.section-body {
  font-family: var(--font-body);
  font-size:18px;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 1rem;
  text-align: justify !important;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: #0a0a0a;
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.about-image-wrapper {
  overflow: hidden;
  border-radius: 12px;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.03);
}

/* ============================================
   DRINKS SECTION
   ============================================ */
.drinks-section {
  background: var(--luxury-black);
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.drink-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.drink-card:hover {
  border-color: rgba(201, 229, 0, 0.3);
  box-shadow: 0 0 30px rgba(201, 229, 0, 0.08);
  transform: translateY(-4px);
}

.drink-icon {
  width: 80px;
  height: 80px;
  background: rgba(201, 229, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.drink-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.drink-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--grey);
  margin-bottom: 0;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menus-section {
  background: linear-gradient(180deg, #0a0a0a 0%, var(--luxury-black) 100%);
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.menu-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease;
}

.menu-card:hover {
  border-color: rgba(201, 229, 0, 0.25);
  box-shadow: 0 8px 40px rgba(201, 229, 0, 0.06);
}

.menu-icon-wrapper {
  width: 72px;
  height: 72px;
  background: rgba(201, 229, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.menu-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.menu-desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--grey);
  margin-bottom: 1.5rem;
}

.btn-menu {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 0.75rem 1.75rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-menu:hover {
  border-color: var(--lime-neon);
  color: var(--lime-neon);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  background: var(--luxury-black);
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.5s ease;
}

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

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.95);
  padding: 1.5rem;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox-inner {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  width: min(1024px, 100%);
}

.gallery-lightbox-img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.gallery-close,
.gallery-nav {
  position: absolute;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.gallery-close:hover,
.gallery-nav:hover {
  background: rgba(0, 0, 0, 0.8);
}

.gallery-close {
  top: 1rem;
  right: 1rem;
  font-size: 1.4rem;
  z-index: 1;
}

.gallery-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
}

.gallery-prev {
  left: 1rem;
}

.gallery-next {
  right: 1rem;
}

.gallery-lightbox-caption {
  margin-top: 1rem;
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
}

/* ============================================
   RESERVATION SECTION
   ============================================ */
.reservation-section {
  background: linear-gradient(180deg, var(--luxury-black) 0%, #0a0a0a 100%);
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.contact-list {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--grey-muted);
  margin-bottom: 0.15rem;
}

.contact-value {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0;
}

.contact-value a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-value a:hover {
  color: var(--lime-neon);
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.map-wrapper iframe {
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--luxury-black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
}

.footer-logo-img {
  height: 60px;
  width: auto;
}

.footer-logo {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--lime-neon);
  margin-bottom: 0.25rem;
}

.footer-sub {
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--grey-muted);
  margin-bottom: 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-link:hover {
  border-color: var(--lime-neon);
  color: var(--lime-neon);
}

.footer-address {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--grey-muted);
  margin-bottom: 0.25rem;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--grey-dark);
  margin-bottom: 0;
}

/* ============================================
   MODAL
   ============================================ */
.modal-content {
  background: rgba(18, 18, 18, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.menu-placeholder-img {
  border-radius: 12px;
  max-height: 70vh;
  object-fit: contain;
}

/* ============================================
   FOCUS STATES (Accessibility)
   ============================================ */
*:focus-visible {
  outline: 2px solid var(--lime-neon);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--lime-neon);
  outline-offset: 2px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
  .about-section,
  .drinks-section,
  .menus-section,
  .gallery-section,
  .reservation-section {
    padding: 80px 0;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-logo {
    max-width: 400px;
  }

  .nav-logo-img {
    height: 40px;
  }

  .footer-logo-img {
    height: 50px;
  }

  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-right: 0 !important;
  }

  .hero-title {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }

  .hero-subtitle,
  .hero-address {
    font-size: 0.95rem;
  }

  .hero-content {
    padding: 0 1.25rem;
  }

  .about-section .row {
    gap: 2rem;
  }

  .about-image-wrapper {
    max-height: 420px;
  }

  .menu-card {
    padding: 2rem 1.5rem;
  }

  .map-wrapper iframe {
    min-height: 280px;
  }

  .hookah-menu-card {
    padding: 1.75rem;
  }

  .hookah-price {
    font-size: 2rem;
  }

  .hookah-modal .modal-header {
    padding: 0.75rem 1rem;
  }

  .hookah-modal .modal-title {
    font-size: 1.25rem;
  }

  .btn-zoom,
  .btn-close-modal {
    width: 36px;
    height: 36px;
  }

  .hookah-modal-image {
    max-width: 95%;
    max-height: 85%;
  }

  .hookah-modal-hint {
    font-size: 0.6875rem;
  }

  .hookah-item:hover {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    background: transparent;
  }

  .hookah-menu-card {
    padding: 1.5rem;
  }

  .hookah-line:hover {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .bottle-section,
  .brunch-section {
    padding: 80px 0;
  }

  .bottle-menu-card,
  .brunch-menu-card {
    padding: 1.75rem;
  }

  .bottle-label,
  .brunch-label {
    width: 70%;
  }

  .bottle-cost,
  .brunch-cost {
    width: 30%;
  }

  .bottle-line:hover {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .brunch-item:hover {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .mimosas-cost {
    font-size: 1.5rem;
  }
}

/* ============================================
   BOTTLE MENU SECTION
   ============================================ */
.bottle-section {
  background: var(--luxury-black);
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.bottle-menu-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 3rem;
  transition: all 0.4s ease;
}

.bottle-menu-card:hover {
  border-color: rgba(201, 229, 0, 0.25);
  box-shadow: 0 8px 40px rgba(201, 229, 0, 0.08);
}

.bottle-category {
  margin-bottom: 2rem;
}

.bottle-cat-title {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime-neon);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bottle-line {
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.2s ease;
}

.bottle-line:hover {
  background: rgba(201, 229, 0, 0.04);
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 8px;
  border-bottom-color: transparent;
}

.bottle-line:last-child {
  border-bottom: none;
}

.bottle-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  display: inline-block;
  width: 75%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: baseline;
}

.bottle-cost {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  color: var(--lime-neon);
  display: inline-block;
  width: 25%;
  text-align: right;
  vertical-align: baseline;
}

.bottle-buckets {
  margin-top: 1rem;
  padding: 1.5rem;
  background: rgba(201, 229, 0, 0.05);
  border: 1px solid rgba(201, 229, 0, 0.15);
  border-radius: 12px;
}

.bottle-buckets .bottle-cat-title {
  border-bottom-color: rgba(201, 229, 0, 0.2);
}

/* ============================================
   BRUNCH MENU SECTION
   ============================================ */
.brunch-section {
  background: linear-gradient(180deg, var(--luxury-black) 0%, #0a0a0a 100%);
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.brunch-menu-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 3rem;
  transition: all 0.4s ease;
}

.brunch-menu-card:hover {
  border-color: rgba(201, 229, 0, 0.25);
  box-shadow: 0 8px 40px rgba(201, 229, 0, 0.08);
}

.brunch-category {
  margin-bottom: 2.5rem;
}

.brunch-cat-title {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime-neon);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brunch-item {
  padding: 1rem 0;
  border-bottom: 1px solid #c7e11c57;
  transition: all 0.2s ease;
}

.brunch-item:hover {
  background: rgba(201, 229, 0, 0.04);
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 8px;
  border-bottom-color: transparent;
}

.brunch-item:last-child {
  border-bottom: none;
}

.brunch-line {
  padding-bottom: 0.25rem;
}

.brunch-label {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
  display: inline-block;
  width: 75%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: baseline;
}

.brunch-cost {
  font-family: var(--font-accent);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--lime-neon);
  display: inline-block;
  width: 25%;
  text-align: right;
  vertical-align: baseline;
}

.brunch-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--grey);
  margin: 0.25rem 0 0;
}

.brunch-add {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--grey-muted);
  margin: 0.5rem 0 0;
}

.brunch-add strong {
  color: var(--lime-neon);
  font-weight: 500;
}

.brunch-note {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--grey-muted);
  margin-bottom: 1rem;
}

.brunch-note-highlight {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lime-neon);
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  background: rgba(201, 229, 0, 0.05);
  border: 1px solid rgba(201, 229, 0, 0.15);
  border-radius: 8px;
  text-align: center;
}

.brunch-mimosas {
  margin-top: 1rem;
  padding: 1.5rem;
  background: rgba(201, 229, 0, 0.05);
  border: 1px solid rgba(201, 229, 0, 0.15);
  border-radius: 12px;
}

.mimosas-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mimosas-label {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--white);
}

.mimosas-cost {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--lime-neon);
}

/* ============================================
   HOOKAH MENU SECTION
   ============================================ */
.hookah-section {
  background: linear-gradient(180deg, #0a0a0a 0%, var(--luxury-black) 100%);
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.hookah-menu-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 3rem;
  transition: all 0.4s ease;
}

.hookah-menu-card:hover {
  border-color: rgba(201, 229, 0, 0.25);
  box-shadow: 0 8px 40px rgba(201, 229, 0, 0.08);
}

.hookah-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.hookah-menu-icon {
  width: 72px;
  height: 72px;
  background: rgba(201, 229, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hookah-menu-pricing {
  text-align: right;
}

.hookah-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--lime-neon);
  line-height: 1;
  display: block;
}

.hookah-price-label {
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-muted);
}

.hookah-menu-list {
  margin-bottom: 2rem;
}

.hookah-line {
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.2s ease;
}

.hookah-line:hover {
  background: rgba(201, 229, 0, 0.04);
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 8px;
  border-bottom-color: transparent;
}

.hookah-line:last-child {
  border-bottom: none;
}

.hookah-label {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--white);
  display: inline-block;
  width: 75%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: baseline;
}

.hookah-cost {
  font-family: var(--font-accent);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--lime-neon);
  display: inline-block;
  width: 25%;
  text-align: right;
  vertical-align: baseline;
}

.hookah-refill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: rgba(201, 229, 0, 0.05);
  border: 1px solid rgba(201, 229, 0, 0.15);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.hookah-refill-label {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
}

.hookah-refill-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--lime-neon);
}

.hookah-address {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--grey-muted);
  text-align: center;
  letter-spacing: 0.02em;
}

.hookah-address svg {
  vertical-align: text-bottom;
  margin-right: 0.3rem;
}

/* ============================================
   HOOKAH FULL SCREEN MODAL WITH ZOOM
   ============================================ */
.hookah-modal .modal-dialog {
  margin: 0;
  max-width: 100%;
  height: 100vh;
}

.hookah-modal .modal-content {
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: none;
  border-radius: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.hookah-modal .modal-header {
  background: rgba(8, 8, 8, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.hookah-modal .modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-zoom,
.btn-close-modal {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.btn-zoom:hover,
.btn-close-modal:hover {
  border-color: var(--lime-neon);
  color: var(--lime-neon);
  background: rgba(201, 229, 0, 0.08);
}

.btn-close-modal {
  margin-left: 0.5rem;
}

.hookah-modal .modal-body {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  cursor: grab;
}

.hookah-modal .modal-body:active {
  cursor: grabbing;
}

.hookah-modal-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.hookah-modal-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
  transform-origin: center center;
  border-radius: 8px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  user-select: none;
  -webkit-user-drag: none;
}

.hookah-modal .modal-footer {
  background: rgba(8, 8, 8, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hookah-modal-hint {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--grey-muted);
  margin: 0;
  letter-spacing: 0.05em;
}

/* Modal animation */
.hookah-modal.fade .modal-dialog {
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.hookah-modal.show .modal-dialog {
  transform: scale(1);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;

    scroll-behavior: auto !important;
  }
  .hero-glow {
    animation: none;
  }
}
 
    /* ============================================
       ABOUT PAGE – PAGE-SPECIFIC STYLES
       ============================================ */
       .about-hero {
      min-height: 70vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
 
    .about-hero-bg {
      position: absolute;
      inset: 0;
      background:url(../images/breadcrumb2.jpg) ;
      background-size: cover;
      background-position: center;
      filter: brightness(0.55);
      z-index: 0;
    }
 
    /* .about-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(8,8,8,0.7) 0%,
        rgba(8,8,8,0.2) 50%,
        rgba(8,8,8,0.85) 100%
      );
      z-index: 1;
    }
  */
    .about-hero-glow {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
    }
 
    .about-hero-glow::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(201,229,0,0.06) 0%, transparent 70%);
      border-radius: 50%;
    }
 
    .about-hero-content {
      position: relative;
      z-index: 2;
      max-width: 880px;
      margin: 0 auto;
      padding: 0 1rem;
      text-align: center;
    }

    .about-hero-content h1 {
      font-family: var(--font-display);
      font-size: clamp(2.75rem, 6vw, 4rem);
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 1rem;
    }

    .breadcrumb-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 0.1rem;
      margin-bottom: 1.5rem;
    }

    .breadcrumb-nav a {
      font-family: var(--font-accent);
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--grey-muted);
      text-decoration: none;
      transition: color 0.2s ease;
    }
 
    .breadcrumb-nav a:hover { color: var(--lime-neon); }
 
    .breadcrumb-sep {
      font-size: 0.625rem;
      color: var(--grey-dark);
    }
 
    .breadcrumb-current {
      font-family: var(--font-accent);
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--lime-neon);
    }
 
    .about-hero-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 8vw, 6rem);
      font-weight: 400;
      line-height: 1.05;
      color: var(--white);
      text-shadow: 0 2px 40px rgba(0,0,0,0.9);
      margin-bottom: 1.5rem;
    }
 
    .about-hero-lead {
      font-family: var(--font-body);
      font-size: 1.125rem;
      line-height: 1.8;
      color: var(--grey);
      max-width: 580px;
    }
 
    /* ---- Divider Line ---- */
    .lime-divider {
      width: 60px;
      height: 1px;
      background: var(--lime-neon);
      margin-bottom: 1.5rem;
      display: block;
    }
 
    /* ---- Story Section ---- */
    .story-section {
      background: #0a0a0a;
      padding: 120px 0;
      position: relative;
      z-index: 2;
    }
 
    .story-image-wrapper {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
    }
 
    .story-image-wrapper img {
      width: 100%;
      height: 540px;
      object-fit: cover;
      transition: transform 0.7s ease;
      display: block;
    }
 
    .story-image-wrapper:hover img {
      transform: scale(1.04);
    }
 
    .story-badge {
      position: absolute;
      bottom: -1px;
      left: -1px;
      background: var(--lime-neon);
      color: var(--luxury-black);
      padding: 1.25rem 2rem;
      border-radius: 0 12px 0 0;
    }
 
    .story-badge-year {
      font-family: var(--font-display);
      font-size: 2.25rem;
      font-weight: 400;
      line-height: 1;
      display: block;
    }
 
    .story-badge-label {
      font-family: var(--font-accent);
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }
 
    .story-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: 1px solid rgba(201,229,0,0.25);
      padding: 0.375rem 0.875rem;
      border-radius: 100px;
      font-family: var(--font-accent);
      font-size: 0.6875rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--lime-neon);
      margin-bottom: 1.25rem;
    }
 
    /* ---- Who We Are ---- */
    .whoweare-section {
      background: var(--luxury-black);
      padding: 120px 0;
      position: relative;
      z-index: 2;
    }
 
    .experience-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 2.5rem 2rem;
      text-align: center;
      transition: all 0.35s ease;
    }
 
    .experience-card:hover {
      border-color: rgba(201,229,0,0.3);
      box-shadow: 0 8px 40px rgba(201,229,0,0.07);
      transform: translateY(-4px);
    }
 
    .experience-number {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 400;
      color: var(--lime-neon);
      line-height: 1;
      margin-bottom: 0.5rem;
    }
 
    .experience-label {
      font-family: var(--font-accent);
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--grey-muted);
    }
 
    .whoweare-image-wrapper {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
    }
 
    .whoweare-image-wrapper img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      transition: transform 0.7s ease;
      display: block;
    }
 
    .whoweare-image-wrapper:hover img {
      transform: scale(1.04);
    }
 
    .accent-line-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0;
    }
 
    .accent-line-list li {
      font-family: var(--font-body);
      font-size: 0.9375rem;
      color: var(--grey);
      padding: 0.6rem 0;
      border-bottom: 1px solid var(--glass-border);
      display: flex;
      align-items: center;
      gap: 0.30rem;
    }
 
    .accent-line-list li:last-child { border-bottom: none; }
 
    .accent-line-list .bi-check-circle-fill {
      color: var(--lime-neon) !important;
      flex-shrink: 0;
    }
 
    /* ---- Why Choose Us ---- */
    .why-section {
      background: #0a0a0a;
      padding: 120px 0;
      position: relative;
      z-index: 2;
    }
 
    .why-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 2.5rem 2rem;
      height: 100%;
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
    }
 
    .why-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--lime-neon);
      transform: scaleX(0);
      transition: transform 0.35s ease;
    }
 
    .why-card:hover {
      border-color: rgba(201,229,0,0.25);
      box-shadow: 0 12px 50px rgba(201,229,0,0.07);
      transform: translateY(-6px);
    }
 
    .why-card:hover::before {
      transform: scaleX(1);
    }
 
    .why-icon {
      width: 72px;
      height: 72px;
      background: rgba(201,229,0,0.08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: background 0.3s ease;
    }
 
    .why-card:hover .why-icon {
      background: rgba(201,229,0,0.14);
    }
 
    .why-title {
      font-family: var(--font-display);
      font-size: 1.375rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 0.75rem;
    }
 
    .why-desc {
      font-family: var(--font-body);
      font-size: 0.9375rem;
      line-height: 1.75;
      color: var(--grey);
      margin-bottom: 0;
    }
 
    /* ---- Process Section ---- */
    .process-section {
      background: var(--luxury-black);
      padding: 120px 0;
      position: relative;
      z-index: 2;
    }

    .process-track {
      position: relative;
    }
 
    .process-track::before {
      content: '';
      position: absolute;
      top: 36px;
      left: calc(16.666% - 1px);
      right: calc(16.666% - 1px);
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,229,0,0.3), transparent);
    }
 
    .process-step {
      text-align: center;
      position: relative;
    }
 
    .process-number {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      border: 1px solid rgba(201,229,0,0.3);
      background: rgba(201,229,0,0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--lime-neon);
      transition: all 0.3s ease;
    }
 
    .process-step:hover .process-number {
      background: var(--lime-neon);
      color: var(--luxury-black);
      box-shadow: 0 0 30px rgba(201,229,0,0.3);
    }
 
    .process-step-title {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 0.75rem;
    }
 
    .process-step-desc {
      font-family: var(--font-body);
      font-size: 0.875rem;
      line-height: 1.7;
      color: var(--grey);
      margin-bottom: 0;
    }
 
    /* ---- Stats Section ---- */
    .stats-section {
      background: linear-gradient(135deg, #0f0f0f 0%, #080808 100%);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
      z-index: 2;
    }
 
    .stats-section::before {
      content: '';
      position: absolute;
      top: -200px;
      left: 50%;
      transform: translateX(-50%);
      width: 900px;
      height: 600px;
      background: radial-gradient(ellipse, rgba(201,229,0,0.05) 0%, transparent 70%);
      pointer-events: none;
    }
 
    .stat-item {
      text-align: center;
      padding: 2rem 1rem;
      position: relative;
      z-index: 1;
    }
 
    .stat-number {
      font-family: var(--font-display);
      font-size: clamp(3rem, 5vw, 4.5rem);
      font-weight: 400;
      color: var(--lime-neon);
      line-height: 1;
      margin-bottom: 0.5rem;
    }
 
    .stat-label {
      font-family: var(--font-accent);
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--grey-muted);
    }
 
    .stat-divider {
      width: 1px;
      height: 80px;
      background: var(--glass-border);
      margin: auto;
    }
 
    /* ---- Team Section ---- */
    .team-section {
      background: #0a0a0a;
      padding: 120px 0;
      position: relative;
      z-index: 2;
    }
 
    .team-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.35s ease;
    }
 
    .team-card:hover {
      border-color: rgba(201,229,0,0.25);
      box-shadow: 0 12px 50px rgba(201,229,0,0.07);
      transform: translateY(-6px);
    }
 
    .team-img-wrapper {
      position: relative;
      overflow: hidden;
    }
 
    .team-img-wrapper img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      transition: transform 0.6s ease;
      display: block;
      filter: grayscale(20%);
    }
 
    .team-card:hover .team-img-wrapper img {
      transform: scale(1.06);
      filter: grayscale(0%);
    }
 
    .team-socials {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.25rem;
      background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 100%);
      display: flex;
      gap: 0.5rem;
      transform: translateY(100%);
      transition: transform 0.35s ease;
    }
 
    .team-card:hover .team-socials {
      transform: translateY(0);
    }
 
    .team-social-link {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--grey);
      text-decoration: none;
      font-size: 0.8125rem;
      transition: all 0.2s ease;
    }
 
    .team-social-link:hover {
      border-color: var(--lime-neon);
      color: var(--lime-neon);
    }
 
    .team-info {
      padding: 1.5rem;
    }
 
    .team-name {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 0.25rem;
    }
 
    .team-role {
      font-family: var(--font-accent);
      font-size: 0.6875rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--lime-neon);
      margin-bottom: 0.75rem;
    }
 
    .team-bio {
      font-family: var(--font-body);
      font-size: 0.875rem;
      line-height: 1.7;
      color: var(--grey);
      margin-bottom: 0;
    }
 
    /* ---- Values Section ---- */
    .values-section {
      background: var(--luxury-black);
      padding: 120px 0;
      position: relative;
      z-index: 2;
    }
 
    .value-card {
      display: flex;
      gap: 1.5rem;
      padding: 2rem;
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      height: 100%;
      transition: all 0.35s ease;
    }
 
    .value-card:hover {
      border-color: rgba(201,229,0,0.25);
      box-shadow: 0 8px 40px rgba(201,229,0,0.06);
    }
 
    .value-icon-wrap {
      flex-shrink: 0;
      width: 56px;
      height: 56px;
      background: rgba(201,229,0,0.08);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s ease;
    }
 
    .value-card:hover .value-icon-wrap {
      background: rgba(201,229,0,0.14);
    }
 
    .value-title {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 0.5rem;
    }
 
    .value-desc {
      font-family: var(--font-body);
      font-size: 0.9rem;
      line-height: 1.75;
      color: var(--grey);
      margin-bottom: 0;
    }
 
    /* ---- CTA Section ---- */
    .cta-section {
      background: linear-gradient(135deg, #0d0d0d 0%, #0a0a0a 100%);
      padding: 120px 0;
      position: relative;
      overflow: hidden;
      z-index: 2;
    }
 
    .cta-section::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(201,229,0,0.06) 0%, transparent 65%);
      pointer-events: none;
    }
 
    .cta-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../images/lounge-interior.jpg') center/cover no-repeat;
      opacity: 0.30;
      z-index: 0;
    }
 
    .cta-content {
      position: relative;
      z-index: 1;
    }
 
    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 400;
      color: var(--white);
      text-shadow: 0 0 40px rgba(201,229,0,0.1);
      margin-bottom: 1.25rem;
    }
 
    .cta-subtitle {
      font-family: var(--font-body);
      font-size: 1.0625rem;
      line-height: 1.8;
      color: var(--grey);
      max-width: 560px;
      margin: 0 auto 2.5rem;
    }
 
    .cta-meta {
      font-family: var(--font-accent);
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--grey-muted);
      margin-top: 1.5rem;
    }
 
    /* ---- Responsive Tweaks ---- */
    @media (max-width: 991px) {
      .process-track::before { display: none; }
      .story-image-wrapper img,
      .whoweare-image-wrapper img { height: 380px; }
    }
 
    @media (max-width: 767px) {
      .about-hero { min-height: 38vh; padding: 3rem 0; }
      .about-hero-content h1 { font-size: clamp(2rem, 10vw, 3rem); }
      .about-hero-glow::before {
        width: 420px;
        height: 420px;
      }
      .breadcrumb-nav { gap: 0.1rem; }
      .breadcrumb-nav a,
      .breadcrumb-current { font-size: 0.75rem; }
      .whoweare-section,
      .process-section,
      .values-section,
      .cta-section { padding: 80px 0; }
      .whoweare-image-wrapper img { height: 300px; }
      .experience-card { padding: 1.75rem 1.5rem; }
      .value-card { flex-direction: column; gap: 1rem; }
      .value-icon-wrap { width: 48px; height: 48px; }
      .value-title { font-size: 1.15rem; }
      .value-desc { font-size: 0.9rem; }
      .process-number { width: 60px; height: 60px; font-size: 1.25rem; margin-bottom: 1.25rem; }
      .process-step-title { font-size: 1.1rem; }
      .process-step-desc { font-size: 0.9rem; }
      .cta-section { padding: 60px 0; }
      .cta-title { font-size: clamp(2rem, 8vw, 2.75rem); }
      .cta-subtitle { font-size: 1rem; }
      .cta-section .btn { width: 100%; max-width: 320px; }
      .story-image-wrapper img,
      .whoweare-image-wrapper img { height: 260px; }
      .team-img-wrapper img { height: 260px; }
      .stat-divider { display: none; }
    }

  
/* bg-img */
.background-img {
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url(../images/limestone1.jpg) !important;
    
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.background-img-11 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/limestone1.jpg) !important;
    
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.background-img-2 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url(../images/stone2.jpg);

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.background-img-3 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url(../images/stone.jpg) !important;
    
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.background-img-3 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
    url(../images/stone.jpg) !important;
    
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



/* Contact Section Styles */
.contact-section {
    background: linear-gradient(160deg, #0e0e0e 0%, #121a08 100%);
}

.contact-badge {
    color: #c9e500; 
    background: rgba(201, 229, 0, 0.05); 
    border: 1px solid rgba(201, 229, 0, 0.25); 
    font-family: 'Space Grotesk', sans-serif; 
    letter-spacing: 0.25em; 
    font-size: 0.7rem;
}

.contact-title {
    font-family: 'Playfair Display', serif;
}

.contact-title span {
    color: #c9e500;
}

.contact-desc {
    font-family: 'DM Sans', sans-serif;
}

/* Contact Info Card */
.info-card {
    background: rgba(255, 255, 255, 0.02); 
    border: 1px solid rgba(255, 255, 255, 0.07); 
    backdrop-filter: blur(16px); 
    -webkit-backdrop-filter: blur(16px);
}

.info-card-title {
    font-family: 'Playfair Display', serif;
}

.info-icon-wrapper {
    width: 44px; 
    height: 44px; 
    background: rgba(201, 229, 0, 0.08); 
    border: 1px solid rgba(201, 229, 0, 0.15); 
    color: #c9e500;
}

.info-label {
    font-family: 'Space Grotesk', sans-serif; 
    font-size: 0.7rem; 
    letter-spacing: 0.12em;
}

.info-value {
    font-family: 'DM Sans', sans-serif; 
    font-size: 0.95rem;
}

/* Social Media Icons */
.social-links-wrapper {
    border-color: rgba(255,255,255,0.08) !important;
}

.social-btn {
    width: 42px; 
    height: 42px; 
    border: 1px solid rgba(255,255,255,0.1); 
    color: rgba(255,255,255,0.6); 
    background: transparent;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #c9e500 !important; 
    color: #080808 !important; 
    border-color: #c9e500 !important;
}

/* Message Form Card */
.form-card {
    background: #fdfcf8;
}

.form-card-title {
    font-family: 'Playfair Display', serif; 
    color: #1a1a1a;
}

.custom-form-label {
    font-family: 'Space Grotesk', sans-serif; 
    font-size: 0.7rem; 
    letter-spacing: 0.12em; 
    color: #444444;
}

.custom-form-input {
    border: 1px solid rgba(0,0,0,0.08); 
    font-family: 'DM Sans', sans-serif;
}

.custom-form-textarea {
    border: 1px solid rgba(0,0,0,0.08); 
    font-family: 'DM Sans', sans-serif; 
    resize: vertical;
}

/* Submit Button */
.submit-btn {
    background: #1a1a1a; 
    font-family: 'Space Grotesk', sans-serif; 
    font-size: 0.875rem; 
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #c7e11c !important; 
    color: #1a1a1a !important; 
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3) !important;
}

.arro-icon-w{
  width: 14px;
}

.gallery-lightbox-caption{
  display: none;
}

.gallery-nav gallery-prev, .gallery-nav gallery-next{
  width: 50px !important;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-section{
  padding: 130px 0;
}

@media (max-width: 767px) {
 
  /* .fixed-top {
    position: absolute !important;
  } */

  .res-card-sec{
    margin-bottom: 0 !important;
    padding-bottom: 0;
  }

.home-section {
    padding: 90px 0;
}

@media (max-width: 991.98px){

    html,
    body{
        overflow-x: hidden !important;
        width: 100%;
    }

    *{
        max-width: 100%;
    }

    .container,
    .container-fluid{
        padding-left: 12px;
        padding-right: 12px;
    }

    .row{
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    img,
    video,
    iframe{
        max-width: 100%;
        height: auto;
    }
}
.ab-pad{
  padding:0;
}

.bottle-menu-card {
    padding: 1rem;
    
}
.brunch-menu-card {
    padding: 1rem;
}
.hookah-menu-card {
    padding: 1rem;
}
 
.info-card {
    padding: 15px !important;
}
.form-card{
  padding: 10px !important;
}

.seides-menu{
  display: inline !important;
}
.sides-p{
  padding-top: 50px  ;
}

.drink-menu-m{
  margin-bottom: 0px !important;
}

.brunch-section {
    padding: 41px 0;
    
}




}

iframe {
  height: 400px !important;
}

.braunch-menu-c{
  text-align: center !important;
}

