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

:root {
  --color-bg: #0a0a0a;
  --color-gold: #c5a059;
  --color-gold-hover: #e0be77;
  --color-text: #ffffff;
  --color-text-muted: #a0a0a0;

  --font-serif: 'Cinzel', serif;
  --font-sans: 'Inter', sans-serif;

  --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.3s ease;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/Background.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(8px) brightness(0.4);
  opacity: 0.7;
  z-index: -1;
  pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-font {
  font-family: var(--font-serif);
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

/* Glassmorphism Header */
.navbar-glass {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding: 1rem 0;
  transition: var(--transition-fast);
}

.navbar-brand {
  position: relative;
  display: inline-block;
}

.navbar-brand::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(197,160,89,0.45) 0%, rgba(197,160,89,0.18) 25%, rgba(197,160,89,0.06) 50%, transparent 70%);
  filter: blur(18px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.95;
  animation: logoGlow 4s ease-in-out infinite;
}

.navbar-brand img {
  height: 110px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  will-change: transform, box-shadow;
}

@keyframes logoGlow {
  0% {
    transform: translate(-50%, -50%) scale(0.98);
    opacity: 0.75;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.98);
    opacity: 0.75;
  }
}

.navbar-brand img:hover {
  transform: scale(1.08);
}

/* Reduce logo and glow size on very small screens */
@media (max-width: 576px) {
  .navbar-brand::before {
    width: 96px;
    height: 96px;
    filter: blur(12px);
  }
  .navbar-brand img {
    height: 72px;
  }
}

.nav-link {
  color: var(--color-text) !important;
  font-family: var(--font-sans);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin: 0 1rem;
  transition: var(--transition-fast);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 50%;
  background-color: var(--color-gold);
  transition: width 0.3s ease, left 0.3s ease;
}

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

/* Custom Buttons */
.btn-gold {
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  font-family: var(--font-serif);
  padding: 0.75rem 2rem;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.btn-gold:hover {
  background-color: var(--color-gold);
  color: var(--color-bg);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

/* Antigravity / Weightless Animation */
@keyframes weightless {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(1.5deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.weightless {
  animation: weightless 8s infinite ease-in-out;
  will-change: transform;
}

.weightless-delay-1 {
  animation-delay: -2s;
}

.weightless-delay-2 {
  animation-delay: -4s;
}

.weightless-delay-3 {
  animation-delay: -6s;
}

/* Ethereal Transitions (Scroll Reveal) */
.ethereal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.9s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform;
}

.ethereal.visible {
  opacity: 1;
  transform: translateY(0);
}

.ethereal.delay-100 {
  transition-delay: 0.1s;
}

.ethereal.delay-200 {
  transition-delay: 0.2s;
}

.ethereal.delay-300 {
  transition-delay: 0.3s;
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Hero logo (centered above main heading) */
.hero-logo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero-logo-wrapper::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(197,160,89,0.45) 0%, rgba(197,160,89,0.18) 30%, rgba(197,160,89,0.06) 55%, transparent 75%);
  filter: blur(20px);
  z-index: 1;
  pointer-events: none;
  animation: heroLogoPulse 4s ease-in-out infinite;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 160px;
  height: auto;
  display: block;
  border-radius: 50%;
  box-shadow: 0 28px 60px rgba(0,0,0,0.6), 0 10px 30px rgba(197,160,89,0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 36px 80px rgba(0,0,0,0.65), 0 14px 40px rgba(197,160,89,0.26);
}

/* Homepage top hero logo (fluid width so it never overflows on small screens) */
.hero-top-logo {
  width: clamp(160px, 45vw, 500px);
  max-width: 100%;
  height: auto;
  filter:
    drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.35))
    drop-shadow(6px 6px 5px rgba(0, 0, 0, 0.25))
    drop-shadow(-1px -1px 1px rgba(0, 0, 0, 0.6));
  transform: perspective(800px) rotateX(2deg);
  transition: all 0.3s ease;
}

@keyframes heroLogoPulse {
  0% { transform: translate(-50%, -50%) scale(0.98); opacity: 0.85; }
  50% { transform: translate(-50%, -50%) scale(1.04); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(0.98); opacity: 0.85; }
}

@media (max-width: 768px) {
  .hero-logo-wrapper::before { width: 140px; height: 140px; filter: blur(14px); }
  .hero-logo { width: 110px; }
  .brand-font.display-1 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .hero-section { padding-top: 100px; }
  .hero-top-logo { width: clamp(140px, 55vw, 220px); }
  .hero-subtitle { letter-spacing: 2px; font-size: 0.95rem; }
}

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

.hero-subtitle {
  font-size: 1.1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.floating-bg-item {
  position: absolute;
  opacity: 0.4;
  z-index: 1;
  filter: blur(2px) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.bg-item-1 {
  top: 15%;
  left: 5%;
  width: 300px;
}

.bg-item-2 {
  bottom: 10%;
  right: 5%;
  width: 400px;
}

/* Menu Sections */
.menu-category-title {
  text-align: center;
  margin: 4rem 0 3rem;
  font-size: 2.5rem;
  position: relative;
}

.menu-category-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--color-gold);
  margin: 1rem auto 0;
}

.menu-item {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.5rem;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-text);
  margin: 0;
}

.menu-item-price {
  font-family: var(--font-serif);
  color: var(--color-gold);
  font-size: 1.2rem;
}

.menu-item-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Featured Cards (Menu, Catering) */
.glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 160, 89, 0.1);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: var(--transition-fast);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(197, 160, 89, 0.4);
  transform: translateY(-5px);
}

.glass-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

/* Map overlay actions inside the glass card */
.map-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
}

.map-fallback-note {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 3;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Leaflet / Map styles */
.map-wrapper {
  height: 100%;
  padding: 0;
}

#map {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  z-index: 1;
}

/* Forms */
.form-control,
.form-select {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text);
  padding: 1rem;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-gold);
  color: var(--color-text);
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.2);
}

.form-label {
  color: var(--color-gold);
  font-family: var(--font-serif);
  letter-spacing: 1px;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  background: #0a0a0a;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 1.5rem;
}

.footer-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.text-gold {
  color: var(--color-gold) !important;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-icon {
  color: var(--color-text-muted);
  font-size: 1.5rem;
  transition: var(--transition-fast);
}

.social-icon:hover {
  color: var(--color-gold);
  text-shadow: 0 0 10px rgba(197, 160, 89, 0.6);
}

/* Home Hero Specific */
.hero-home {
  background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)), url('../assets/hero-ambiance.png') center/cover no-repeat;
}

.hero-catering {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 50% 50%, rgba(197, 160, 89, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: floatParticles 20s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes floatParticles {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-40px);
  }
}

/* Table Selection Grid */
.table-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.table-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: var(--color-text);
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
  font-family: var(--font-serif);
}

.table-btn:hover:not(:disabled) {
  background: rgba(197, 160, 89, 0.2);
  border-color: var(--color-gold);
}

.table-btn.selected {
  background: var(--color-gold);
  color: var(--color-bg);
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

.table-btn:disabled {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
  position: relative;
}

.table-btn:disabled::after {
  content: 'Booked';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  font-size: 0.7rem;
  color: #ff4d4d;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.order-item-row {
  gap: 1rem;
  margin-bottom: 1rem;
}

.order-item-select,
.order-item-row .form-control {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.order-item-select option,
.order-item-row .form-control option {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
}

.order-item-row .form-control::placeholder,
.order-item-row .form-select::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.glass-card .form-control,
.glass-card .form-select {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.glass-card .form-control::placeholder,
.glass-card .form-select::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.order-summary {
  min-height: 100%;
}

.order-map {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#orderMap {
  width: 100%;
  min-height: 260px;
}

.order-summary .form-label {
  color: var(--color-text);
}

.order-summary .form-control,
.order-summary .form-select {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border-color: rgba(255, 255, 255, 0.1);
}

.order-summary .form-control::placeholder,
.order-summary .form-select::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.order-summary .form-control:focus,
.order-summary .form-select:focus {
  background: rgba(0, 0, 0, 0.6);
  border-color: var(--color-gold);
  color: white;
  box-shadow: 0 0 0 0.2rem rgba(197, 160, 89, 0.25);
}

#tableNo option {
  background: rgba(0, 0, 0, 0.9);
  color: white;
}

.order-summary .btn {
  letter-spacing: 1px;
}

/* Dashboard Table */
.table-dark {
  background-color: rgba(25, 25, 25, 0.8);
  color: var(--color-text);
}

.table-dark th {
  color: var(--color-gold);
  border-color: rgba(197, 160, 89, 0.3);
}

.table-dark td {
  border-color: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Antigravity Rewrite Styles
   ========================================================================== */

/* 1. Global Background - Hide crossfade container */
.bg-crossfade-container,
.bg-layer,
.bg-overlay {
  display: none !important;
}

/* ==========================================================================
   Professional Menu Gallery & Modal
   ========================================================================== */

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(0px);
  }
}

.antigravity-float {
  animation: float 4s infinite ease-in-out;
  cursor: zoom-in;
  transition: filter 0.3s ease, transform 0.3s ease;
  will-change: transform;
}

.antigravity-float:hover {
  filter: brightness(1.6) drop-shadow(0 20px 40px rgba(201, 162, 78, 0.2));
}

.menu-gallery-img {
  border-radius: 12px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.image-modal .modal-content {
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
  animation: modalZoom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  background: transparent;
}

@keyframes modalZoom {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 3010;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--color-gold);
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.5);
  /* Dark elegant overlay */
}

/* 2. Hero Section Adjustments */
.antigravity-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
}

.gold-accent {
  color: #C9A24E;
  text-shadow: 0 4px 15px rgba(201, 162, 78, 0.3);
}

/* 3. Infinite Horizontal Food Carousel */
.carousel-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem 0;
  border-top: 1px solid rgba(201, 162, 78, 0.2);
  border-bottom: 1px solid rgba(201, 162, 78, 0.2);
  white-space: nowrap;
  position: relative;
}

.carousel-marquee {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: scrollMarquee 25s linear infinite;
  will-change: transform;
  /* Add this: */
  padding-right: 0;
  margin-right: 0;
}

.carousel-marquee img {
  height: 250px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
  }
}

/* 4. Antigravity Meal Sections */
.antigravity-meals-section {
  padding-top: 5rem;
  padding-bottom: 8rem;
}

.meal-row {
  margin-bottom: 6rem;
}

.meal-img {
  max-width: 90%;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
}

@keyframes floatY {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0px);
  }
}

.float {
  animation: floatY 4s ease-in-out infinite;
  will-change: transform;
}

.meal-highlights li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* 5. Sticky CTA */
.sticky-order-cta {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e0be77, #C9A24E);
  color: #0a0a0a;
  font-family: var(--font-serif);
  font-weight: bold;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 2px;
  box-shadow: 0 10px 25px rgba(201, 162, 78, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.sticky-order-cta:hover {
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 0 15px 35px rgba(201, 162, 78, 0.6);
  color: #000;
}

/* Scroll-to-Reveal Animation */
.reveal-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   Menu Page - Horizontal Scrolling Glassmorphism Gallery
   ========================================================================== */
.gallery-glass-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gallery-scroll-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem 1.5rem;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-scroll-track::-webkit-scrollbar {
  display: none;
}

.gallery-scroll-track.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.gallery-glass-item {
  flex: 0 0 auto;
  width: 280px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(197, 160, 89, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.6rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.gallery-glass-item:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(197, 160, 89, 0.55);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(197, 160, 89, 0.15);
}

.gallery-glass-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  animation: none !important;
}

.gallery-nav-btn {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(197, 160, 89, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-gold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 2;
}

.gallery-nav-btn:hover {
  background: var(--color-gold);
  color: var(--color-bg);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.gallery-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 576px) {
  .gallery-glass-item {
    width: 220px;
  }

  .gallery-glass-item img {
    height: 260px;
  }

  .gallery-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ==========================================================================
   Menu Page - "Our Special Packages" Deals Menu Flipbook
   ========================================================================== */
.deals-toggle-btn {
  display: inline-flex;
  align-items: center;
}

.deals-toggle-icon {
  transition: transform 0.35s ease;
  font-size: 0.8rem;
}

.deals-toggle-btn[aria-expanded="true"] .deals-toggle-icon {
  transform: rotate(180deg);
}

.deals-flipbook-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.deals-flipbook {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.deals-flip-stage {
  position: relative;
  width: min(380px, 72vw);
  aspect-ratio: 1413 / 2000;
  perspective: 2200px;
}

.deals-page {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  background: #0a0a0a;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-origin: left center;
  transform: rotateY(0deg);
  transition: transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.deals-page img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.deals-page-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.deals-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.5);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}

.deals-dot.active {
  background: var(--color-gold);
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.6);
}

@media (max-width: 576px) {
  .deals-flipbook {
    gap: 0.5rem;
  }

  .deals-flip-stage {
    width: min(280px, 62vw);
  }
}
