/* ==========================================================================
   Wereld Restaurant Samen - Dark Luxury Aesthetic 2026
   ========================================================================== */

:root {
  --primary-gold: #ba8748;
  --primary-light: #d4a86a;
  --primary-dark: #8a5f32;
  --bg-black: #0a0a08;
  --card-bg: #141210;
  --card-border: #2a2520;
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --text-dim: #8a8a8a;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-none: 0px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-full: 9999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  background: var(--bg-black);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.05em;
  color: var(--text-main);
}

a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover { color: var(--primary-light); }

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

/* ==========================================================================
   NAVIGATION - Transparent to Black
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

.top-bar {
  background: rgba(0,0,0,0.6);
  padding: 0.5rem 0;
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid rgba(186,135,72,0.15);
  transition: all 0.4s;
}

.top-bar a {
  color: var(--text-dim);
  transition: color 0.3s;
}

.top-bar a:hover { color: var(--primary-gold); }

.top-bar i { color: var(--primary-gold); }

.main-nav {
  background: transparent;
  padding: 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(186,135,72,0);
}

.main-nav.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--primary-gold);
}

.main-nav.is-sticky + .top-bar,
.site-header.scrolled .top-bar {
  opacity: 0;
  pointer-events: none;
}

.main-nav .container {
  max-width: 1400px;
}

.main-nav .navbar {
  padding: 1.25rem 0;
}

.main-nav.is-sticky .navbar {
  padding: 0.75rem 0;
}

.navbar-brand {
  margin-right: 2.5rem;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.4s;
}

.main-nav.is-sticky .navbar-brand img {
  height: 40px;
}

.main-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 400;
  font-size: 0.8rem;
  padding: 0.5rem 1.15rem !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s;
  position: relative;
}

.main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--primary-gold);
  transition: all 0.3s ease;
}

.main-nav .nav-link:hover::after {
  left: 1.15rem;
  right: 1.15rem;
}

.main-nav .nav-link:hover {
  color: var(--primary-gold) !important;
  background: transparent;
}

.nav-cta {
  background: transparent !important;
  color: var(--primary-gold) !important;
  padding: 0.6rem 1.5rem !important;
  border: 1px solid var(--primary-gold) !important;
  border-radius: 0 !important;
  font-weight: 500 !important;
  margin-left: 1rem;
  letter-spacing: 1.5px !important;
  transition: all 0.3s !important;
}

.nav-cta::after { display: none !important; }

.main-nav .nav-cta:hover {
  background: var(--primary-gold) !important;
  color: var(--bg-black) !important;
  transform: none;
  box-shadow: none;
}

/* Shimmer effect */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.btn-shimmer {
  background-image: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%) !important;
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}

.hamburger span {
  height: 1px;
  background: var(--primary-gold);
  border-radius: 0;
  transition: all 0.3s;
}

.navbar-toggler {
  border: 1px solid rgba(186,135,72,0.3);
  padding: 0.6rem 0.7rem;
  border-radius: 0;
}

.navbar-toggler:focus { box-shadow: none; }

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(0,0,0,0.98);
    margin-top: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(186,135,72,0.2);
  }

  .main-nav .nav-link {
    padding: 0.85rem 0 !important;
    border-bottom: 1px solid rgba(186,135,72,0.1);
  }

  .main-nav .nav-link::after { display: none; }

  .nav-cta {
    margin: 1rem 0 0 0;
    display: block;
    text-align: center;
  }
}

.dropdown-menu {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border-radius: var(--radius-md);
  padding: 0.5rem;
}

.dropdown-item {
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.dropdown-item:hover {
  background: rgba(186,135,72,0.1);
  color: var(--primary-gold);
}

.dropdown-divider {
  border-color: var(--card-border);
}

/* ==========================================================================
   HERO - Full Screen Gala Entry
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(0.8);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 60%, #000000 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-tagline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--primary-gold);
  margin-bottom: 2rem;
  padding: 0.6rem 2rem;
  border: 1px solid rgba(186,135,72,0.4);
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--text-main) !important;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted) !important;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--primary-gold);
  font-size: 1.25rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  opacity: 0.6;
}

.hero-small {
  min-height: 70vh;
  padding-top: 120px;
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-12px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==========================================================================
   BUTTONS - Square Edged, Gold Borders
   ========================================================================== */
.btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  padding: 1rem 2.5rem;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btn-primary {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--bg-black);
}

.btn-primary:hover {
  background: transparent;
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: none;
  box-shadow: none;
}

.btn-white {
  background: var(--text-main);
  border-color: var(--text-main);
  color: var(--bg-black);
}

.btn-white:hover {
  background: transparent;
  border-color: var(--text-main);
  color: var(--text-main);
  transform: none;
  box-shadow: none;
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: var(--text-main);
}

.btn-outline-white:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.btn-outline-gold,
.btn-outline-primary {
  background: transparent;
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

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

.btn-lg {
  padding: 1.15rem 3rem;
  font-size: 0.85rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/* ==========================================================================
   SECTIONS - All Dark
   ========================================================================== */

/* Standard section */
section {
  position: relative;
}

/* Dark Section (default) */
.section-dark {
  background: var(--bg-black);
  color: var(--text-muted);
  padding: 7rem 0;
}

.section-dark h2, .section-dark h3 {
  color: var(--text-main);
}

/* Card Section - slightly lifted */
.section-card {
  background: var(--card-bg);
  padding: 7rem 0;
}

/* Intro text strip */
.section-intro {
  background: var(--card-bg);
  color: var(--text-muted);
  padding: 4rem 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

/* Primary/Gold CTA section */
.section-primary {
  background: var(--primary-gold);
  color: var(--bg-black);
  padding: 4rem 0;
}

.section-primary h2, .section-primary h3 {
  color: var(--bg-black);
}

.section-primary .btn-outline-gold {
  border-color: var(--bg-black);
  color: var(--bg-black);
}

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

.section-primary a {
  color: var(--bg-black);
}

/* Light gold tinted section */
.section-primary-light {
  background: rgba(186,135,72,0.12);
  padding: 4rem 0;
}

.section-primary-light h2, .section-primary-light h3 {
  color: var(--text-main);
}

/* Split Layout */
.section-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 80vh;
}

@media (min-width: 992px) {
  .section-split { grid-template-columns: 1fr 1fr; }
  .section-split.reverse .split-image { order: -1; }
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem;
  background: var(--bg-black);
}

@media (min-width: 992px) {
  .split-content { padding: 5rem 4rem; }
}

.split-image {
  min-height: 400px;
  overflow: hidden;
  position: relative;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: all 0.6s ease;
}

.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(0,0,0,0.5);
  pointer-events: none;
}

/* Overlay Section */
.section-overlay {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 8rem 0;
}

.section-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
}

.section-overlay > * {
  position: relative;
  z-index: 1;
}

/* Gold line divider */
.gold-line {
  width: 60px;
  height: 1px;
  background: var(--primary-gold);
  margin: 1.5rem auto;
}

.gold-line-left {
  width: 60px;
  height: 1px;
  background: var(--primary-gold);
  margin: 1.5rem 0;
}

/* ==========================================================================
   MENU GRID - Dark Bento Style
   ========================================================================== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
  }
}

.menu-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.menu-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.menu-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) brightness(0.75);
  transition: all 0.6s ease;
}

.menu-item:hover img {
  filter: saturate(1) brightness(0.9);
  transform: scale(1.05);
}

.menu-item::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.4);
  pointer-events: none;
}

.menu-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  z-index: 1;
}

.menu-item-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary-gold);
  margin: 0;
  letter-spacing: 0.05em;
  transform: translateY(5px);
  opacity: 0;
  transition: all 0.4s ease;
}

.menu-item:hover .menu-item-title {
  transform: translateY(0);
  opacity: 1;
}

.menu-item.large .menu-item-title {
  font-size: 1.5rem;
}

/* ==========================================================================
   GALLERY - Asymmetric with Vignette
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65);
  transition: all 0.6s ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.5);
  pointer-events: none;
  transition: box-shadow 0.4s;
}

.gallery-item:hover::after {
  box-shadow: inset 0 0 30px rgba(0,0,0,0.3);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  z-index: 1;
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   CARDS - Dark with Gold Border Hover
   ========================================================================== */
.luxury-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 2.5rem;
  transition: all 0.4s ease;
}

.luxury-card:hover {
  border-color: var(--primary-gold);
}

.luxury-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.luxury-card .price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 0.03em;
}

/* ==========================================================================
   SOCIAL PROOF STRIP
   ========================================================================== */
.proof-strip {
  background: var(--primary-gold);
  border-top: none;
  border-bottom: none;
  padding: 3rem 0;
}

.proof-strip .rating {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--bg-black);
  letter-spacing: 0.05em;
}

.proof-strip .stars {
  color: var(--bg-black);
  font-size: 1.25rem;
  letter-spacing: 3px;
}

.proof-strip .source {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(10,10,8,0.6);
  margin-top: 0.5rem;
}

/* ==========================================================================
   FOOTER - Dark Luxury
   ========================================================================== */
.site-footer {
  background: var(--bg-black);
  color: var(--text-dim);
  padding: 0;
}

.footer-brand img {
  height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.footer-contact li,
.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-dim);
}

.footer-contact li:hover a,
.footer-contact a:hover {
  padding-left: 0;
}

.footer-contact i {
  color: var(--primary-gold);
  width: 16px;
  flex-shrink: 0;
  margin-top: 0.25rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-contact span {
  flex: 1;
  min-width: 0;
}

.hours-table {
  width: 100%;
  font-size: 0.85rem;
}

.hours-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--primary-gold);
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(186,135,72,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  transition: all 0.3s;
  text-decoration: none;
  background: transparent;
  border-radius: 0;
}

.social-icon:hover {
  background: var(--primary-gold);
  color: var(--bg-black);
  border-color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(186,135,72,0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

.footer-bottom a { color: var(--primary-gold); }

/* ==========================================================================
   MOBILE CTA BAR
   ========================================================================== */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg-black);
  border-top: 1px solid var(--primary-gold);
  display: flex;
}

.mobile-cta-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 500;
  gap: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-cta-item i { font-size: 1.1rem; }

.cta-phone {
  background: var(--primary-gold);
  color: var(--bg-black);
}

.cta-location {
  background: var(--card-bg);
  color: var(--text-muted);
}

.cta-reserve {
  background: var(--card-bg);
  color: var(--primary-gold);
  border-left: 1px solid var(--card-border);
}

/* ==========================================================================
   FORMS - Dark
   ========================================================================== */
.form-control {
  font-family: var(--font-body);
  padding: 0.9rem 1rem;
  border: 1px solid var(--card-border);
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 300;
  background: var(--card-bg);
  color: var(--text-main);
  transition: all 0.3s;
}

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 1px rgba(186,135,72,0.3);
  outline: none;
  background: var(--card-bg);
  color: var(--text-main);
}

.form-control::placeholder {
  color: var(--text-dim);
}

.form-label {
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* ==========================================================================
   RESERVATION WIZARD
   ========================================================================== */
#smart-wizard > ul {
  display: flex;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--card-bg);
  list-style: none;
  margin: 0;
  border-bottom: 1px solid var(--card-border);
}

#smart-wizard > ul > li { flex: 1; }

#smart-wizard > ul > li > a {
  display: block;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-dim);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.3s;
}

#smart-wizard > ul > li > a.active {
  background: transparent;
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

#smart-wizard > ul > li > a.done {
  background: rgba(186,135,72,0.1);
  color: var(--primary-gold);
}

#smart-wizard > ul > li > a small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

#smart-wizard > div {
  padding: 2rem;
  background: var(--bg-black);
}

@media (max-width: 768px) {
  #smart-wizard > ul { flex-direction: column; }
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .time-slots { grid-template-columns: repeat(4, 1fr); }
}

.time-slot {
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  color: var(--text-muted);
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.time-slot:hover:not(.time-slot-closed) {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.time-slot.selected {
  border-color: var(--primary-gold);
  background: var(--primary-gold);
  color: var(--bg-black);
}

.time-slot-closed {
  opacity: 0.3;
  cursor: not-allowed;
  background: rgba(255,255,255,0.02);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Fade in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

/* ==========================================================================
   BOOTSTRAP-LIKE GRID (Dark Context)
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-fluid {
  width: 100%;
  padding: 0 1.5rem;
}

.container-narrow {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}

.row > * {
  padding: 0 0.75rem;
  width: 100%;
}

.col { flex: 1 0 0%; }
.col-auto { flex: 0 0 auto; width: auto; }
.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }

@media (min-width: 576px) {
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-4 { flex: 0 0 33.333%; max-width: 33.333%; }
}

@media (min-width: 768px) {
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-8 { flex: 0 0 66.666%; max-width: 66.666%; }
}

@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-lg-5 { flex: 0 0 41.666%; max-width: 41.666%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7 { flex: 0 0 58.333%; max-width: 58.333%; }
  .col-lg-8 { flex: 0 0 66.666%; max-width: 66.666%; }
  .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
  .col-lg-10 { flex: 0 0 83.333%; max-width: 83.333%; }
}

/* Gap utilities */
.g-0 { margin: 0; }
.g-0 > * { padding: 0; }
.g-3 { margin: -0.5rem; }
.g-3 > * { padding: 0.5rem; }
.g-4 { margin: -0.75rem; }
.g-4 > * { padding: 0.75rem; }
.g-5 { margin: -1.5rem; }
.g-5 > * { padding: 1.5rem; }

/* CSS Grid */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 991px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Flexbox utilities */
.d-flex { display: flex !important; }
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.align-items-start { align-items: start; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-end { justify-content: flex-end; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.gap-5 { gap: 2rem; }

@media (min-width: 768px) {
  .d-md-none { display: none !important; }
  .d-md-block { display: block !important; }
  .d-md-flex { display: flex !important; }
}

@media (min-width: 992px) {
  .d-lg-none { display: none !important; }
  .d-lg-block { display: block !important; }
  .d-lg-flex { display: flex !important; }
  .text-lg-end { text-align: right; }
  .text-lg-start { text-align: left; }
  .justify-content-lg-end { justify-content: flex-end; }
}

/* Spacing */
.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.ms-auto { margin-left: auto !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.my-auto { margin-top: auto !important; margin-bottom: auto !important; }

.p-0 { padding: 0 !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

/* Text utilities */
.text-center { text-align: center !important; }
.text-start { text-align: left !important; }
.text-end { text-align: right !important; }
.fw-bold { font-weight: 700 !important; }
.fw-600 { font-weight: 600 !important; }
.text-uppercase { text-transform: uppercase !important; }
.text-muted { color: var(--text-muted) !important; }
.text-danger { color: #ef4444 !important; }

/* Width/Height */
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

/* Position */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.text-gold { color: var(--primary-gold) !important; }
.text-primary { color: var(--primary-gold) !important; }
.text-white { color: var(--text-main) !important; }
.bg-black { background: var(--bg-black) !important; }
.bg-card { background: var(--card-bg) !important; }
.bg-charcoal { background: var(--card-bg) !important; }
.bg-primary { background: var(--primary-gold) !important; }
.bg-white { background: var(--text-main) !important; }
.bg-cream { background: var(--card-bg) !important; }
.rounded-xl { border-radius: var(--radius-lg) !important; }
.rounded-lg { border-radius: var(--radius-md) !important; }
.shadow-xl { box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important; }
.shadow-lg { box-shadow: 0 10px 40px rgba(0,0,0,0.4) !important; }
.overflow-hidden { overflow: hidden !important; }

/* Image utilities */
.img-fluid { max-width: 100%; height: auto; }
.object-cover { object-fit: cover; }

/* Vignette for images */
.vignette {
  position: relative;
}
.vignette::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(0,0,0,0.6);
  pointer-events: none;
}

/* ==========================================================================
   CONTACT INFO BOX - Gold Accent
   ========================================================================== */
.contact-info-box {
  background: var(--primary-gold);
  padding: 2.5rem;
  border-radius: 0;
  color: var(--bg-black);
}

.contact-info-box h3 {
  color: var(--bg-black);
}

.contact-info-box strong {
  color: var(--bg-black);
}

.contact-info-box p,
.contact-info-box a {
  color: rgba(10,10,8,0.75);
}

.contact-info-box a:hover {
  color: var(--bg-black);
}

.contact-info-box .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10,10,8,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-box .icon-circle i {
  color: var(--bg-black);
}

.contact-info-box .social-icon {
  border-color: rgba(10,10,8,0.25);
  color: var(--bg-black);
}

.contact-info-box .social-icon:hover {
  background: var(--bg-black);
  color: var(--primary-gold);
  border-color: var(--bg-black);
}

/* ==========================================================================
   ALERTS - Dark Context
   ========================================================================== */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 0;
  border: 1px solid;
  font-weight: 400;
  font-size: 0.9rem;
}

.alert-success {
  background: rgba(16,185,129,0.1);
  color: #34d399;
  border-color: rgba(16,185,129,0.2);
}
.alert-danger {
  background: rgba(239,68,68,0.1);
  color: #f87171;
  border-color: rgba(239,68,68,0.2);
}
.alert-warning {
  background: rgba(245,158,11,0.1);
  color: #fbbf24;
  border-color: rgba(245,158,11,0.2);
}
.alert-info {
  background: rgba(59,130,246,0.1);
  color: #60a5fa;
  border-color: rgba(59,130,246,0.2);
}

/* ==========================================================================
   TABLES (Backend) - Dark
   ========================================================================== */
.table {
  color: var(--text-muted);
}

.table thead th {
  border-bottom-color: var(--card-border);
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.table td {
  border-bottom-color: rgba(255,255,255,0.05);
}

.table-striped tbody tr:nth-of-type(odd) {
  background: rgba(255,255,255,0.02);
}

.table-hover tbody tr:hover {
  background: rgba(186,135,72,0.05);
  color: var(--text-main);
}

/* Badge overrides */
.badge {
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.35em 0.75em;
  border-radius: 0;
}

.badge-success, .bg-success { background: rgba(16,185,129,0.2) !important; color: #34d399; }
.badge-danger, .bg-danger { background: rgba(239,68,68,0.2) !important; color: #f87171; }
.badge-warning, .bg-warning { background: rgba(245,158,11,0.2) !important; color: #fbbf24; }

/* Card overrides for backend */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0;
  color: var(--text-muted);
}

.card-header { background: rgba(255,255,255,0.02); border-bottom-color: var(--card-border); }

/* ==========================================================================
   PAGE CONTENT SPACING (for fixed header)
   ========================================================================== */
main {
  /* Push content below fixed header */
}

/* Pages without a hero need top padding */
.page-content {
  padding-top: 120px;
}

/* ==========================================================================
   FAB - Floating Action Button
   ========================================================================== */
.fab-reserve {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  width: 60px;
  height: 60px;
  background: var(--primary-gold);
  color: var(--bg-black);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(186,135,72,0.4);
  transition: all 0.3s ease;
}

.fab-reserve:hover {
  background: var(--primary-light);
  color: var(--bg-black);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(186,135,72,0.5);
}

.fab-reserve .fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-black);
  color: var(--primary-gold);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary-gold);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.fab-reserve:hover .fab-tooltip {
  opacity: 1;
}

@media (max-width: 768px) {
  .fab-reserve {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
  }

  .fab-reserve .fab-tooltip {
    display: none;
  }
}

/* ============================================================
   Backend dashboard dark theme
   ============================================================ */

/* Card */
.card {
    background: var(--card-bg) !important;
    border: 1px solid var(--card-border) !important;
    border-radius: 0 !important;
    color: var(--text-muted) !important;
}
.card-body {
    background: var(--card-bg);
    color: var(--text-muted);
    border-bottom: 1px solid var(--card-border);
}
.card-body h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}
.card a:not([class]) {
    color: var(--primary-gold);
}
hr {
    border-color: var(--card-border);
    opacity: 1;
}

/* Table */
.table {
    color: var(--text-main) !important;
    --bs-table-color: var(--text-main);
    --bs-table-bg: transparent;
    --bs-table-striped-bg: #111009;
    --bs-table-hover-bg: rgba(186,135,72,0.07);
    --bs-table-border-color: var(--card-border);
    margin-bottom: 0;
}
.table th {
    background: #1a1714 !important;
    color: var(--primary-gold) !important;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-color: var(--card-border) !important;
    font-weight: 600;
}
.table td {
    background: var(--card-bg) !important;
    color: var(--text-main) !important;
    border-color: var(--card-border) !important;
    vertical-align: middle;
}
.table-hover tbody tr:hover td {
    background: rgba(186,135,72,0.07) !important;
}
.table-striped tbody tr:nth-of-type(odd) td {
    background: #111009 !important;
}

/* Links */
.text-warning { color: var(--primary-gold) !important; }
.text-info    { color: #7eb8d4 !important; }
.text-danger  { color: #f87171 !important; }

/* Buttons */
.btn-outline-primary {
    background: rgba(186,135,72,0.08) !important;
    border: 1px solid var(--primary-gold) !important;
    color: var(--primary-gold) !important;
    border-radius: 0 !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 500;
}
.btn-outline-primary:hover {
    background: var(--primary-gold) !important;
    color: var(--bg-black) !important;
}
.btn-primary {
    background: transparent !important;
    border: 1px solid var(--primary-gold) !important;
    color: var(--primary-gold) !important;
    border-radius: 0 !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.btn-primary:hover {
    background: var(--primary-gold) !important;
    color: var(--bg-black) !important;
}
.btn-success {
    background: transparent !important;
    border: 1px solid #4ade80 !important;
    color: #4ade80 !important;
    border-radius: 0 !important;
}
.btn-success:hover {
    background: #4ade80 !important;
    color: #000 !important;
}
.btn-danger {
    background: transparent !important;
    border: 1px solid #f87171 !important;
    color: #f87171 !important;
    border-radius: 0 !important;
}
.btn-danger:hover {
    background: #f87171 !important;
    color: #000 !important;
}
.btn-outline-danger {
    border-color: #f87171 !important;
    color: #f87171 !important;
    border-radius: 0 !important;
}
.btn-outline-danger:hover {
    background: #f87171 !important;
    color: #000 !important;
}

/* Badges */
.badge-success { background: rgba(74,222,128,0.15); color: #4ade80; border: 1px solid #4ade80; }
.badge-danger  { background: rgba(248,113,113,0.15); color: #f87171; border: 1px solid #f87171; }
.badge-warning { background: rgba(186,135,72,0.15); color: var(--primary-gold); border: 1px solid var(--primary-gold); }

/* Form inputs */
.form-control,
.form-control:disabled,
.form-control[readonly] {
    background: #1e1b17 !important;
    background-color: #1e1b17 !important;
    color: var(--text-main) !important;
    border: 1px solid rgba(186,135,72,0.2) !important;
    border-radius: 0 !important;
    -webkit-text-fill-color: var(--text-main);
}
.form-control:focus {
    border-color: var(--primary-gold) !important;
    box-shadow: 0 0 0 1px rgba(186,135,72,0.3) !important;
}
.form-control::placeholder {
    color: var(--text-dim) !important;
}
label,
.form-label {
    color: var(--text-dim) !important;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-text.text-muted,
small.form-text {
    color: var(--text-dim) !important;
    font-size: 0.78rem;
}
.invalid-feedback { color: #f87171; }

/* Modal */
.modal-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 0;
    color: var(--text-muted);
}
.modal-header {
    border-color: var(--card-border);
}
.modal-header .modal-title,
.modal-header h5 {
    color: var(--text-main);
    font-family: var(--font-heading);
}
.modal-footer { border-color: var(--card-border); }
.close, .btn-close { filter: invert(1); }

/* List group */
.list-group-item {
    background: #1e1b17;
    border-color: var(--card-border);
    color: var(--text-muted);
}
.list-group-item:hover {
    background: rgba(186,135,72,0.1);
    color: var(--primary-gold);
}

/* Page title bar */
.dashboard-header {
    padding: 0 0 2rem;
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dashboard-header h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--text-main);
    margin: 0;
}

/* Form group spacing (BS5 removed margin-bottom from .form-group) */
.form-group {
    margin-bottom: 1.25rem;
}

/* File input */
input[type="file"].form-control {
    padding: 0.375rem 0.75rem;
    cursor: pointer;
}
input[type="file"].form-control::file-selector-button {
    background: rgba(186,135,72,0.12);
    border: 0;
    border-right: 1px solid rgba(186,135,72,0.3);
    color: var(--primary-gold);
    padding: 0.375rem 0.75rem;
    margin-right: 0.75rem;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
input[type="file"].form-control::file-selector-button:hover {
    background: rgba(186,135,72,0.25);
}

/* Summernote bs4 dark theme overrides */
.note-editor.note-frame {
    border: 1px solid rgba(186,135,72,0.2) !important;
    border-radius: 0 !important;
}
.note-toolbar {
    background: #1a1714 !important;
    border-bottom: 1px solid rgba(186,135,72,0.2) !important;
    padding: 4px 6px !important;
}
.note-toolbar .note-btn,
.note-toolbar button {
    background: transparent !important;
    border: 1px solid rgba(186,135,72,0.2) !important;
    color: var(--text-muted) !important;
    border-radius: 0 !important;
}
.note-toolbar .note-btn:hover,
.note-toolbar button:hover {
    background: rgba(186,135,72,0.15) !important;
    color: var(--primary-gold) !important;
    border-color: rgba(186,135,72,0.5) !important;
}
.note-toolbar .note-btn.active,
.note-toolbar button.active {
    background: rgba(186,135,72,0.25) !important;
    color: var(--primary-gold) !important;
}

/* ==========================================================================
   Backend / Dashboard - Lighter Layout
   ========================================================================== */
.backend-section {
    padding: 9rem 0 4rem;
}
.backend-section .card {
    border: 1px solid var(--card-border);
    background: var(--card-bg);
}
.backend-section .card-body {
    padding: 1.5rem;
}
.backend-section .table {
    margin-bottom: 0;
    font-size: 0.9rem;
}
.backend-section .table th {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    border-bottom-width: 1px;
    padding: 0.75rem 1rem;
}
.backend-section .table td {
    padding: 0.75rem 1rem;
    vertical-align: middle;
}

/* Sidebar filter panel */
.backend-filter-sidebar .card {
    position: sticky;
    top: 7rem;
}
.backend-filter-sidebar h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-light);
    margin-bottom: 1.25rem;
}
.backend-filter-sidebar .form-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}
.backend-filter-sidebar .form-control-sm {
    font-size: 0.85rem;
}
.backend-filter-sidebar .mb-3:last-of-type {
    margin-bottom: 0.5rem !important;
}

.note-editable {
    background: #1e1b17 !important;
    color: var(--text-main) !important;
    min-height: 200px;
    caret-color: var(--primary-gold);
}
.note-statusbar {
    background: #1a1714 !important;
    border-top: 1px solid rgba(186,135,72,0.2) !important;
    color: var(--text-dim) !important;
}
.note-popover .popover-content,
.dropdown-menu.note-check {
    background: #1a1714 !important;
    border: 1px solid rgba(186,135,72,0.2) !important;
}
.dropdown-menu.note-check .dropdown-item,
.note-popover .popover-content .dropdown-item {
    color: var(--text-muted) !important;
}
.dropdown-menu.note-check .dropdown-item:hover {
    background: rgba(186,135,72,0.15) !important;
    color: var(--primary-gold) !important;
}
