/* ============================================================
   House of Flavors â€” Global Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #0b1014;
  --bg-secondary: #11161a;
  --bg-tertiary: #1a2228;
  --bg-dark: #05080a;
  --gold: #dda247;
  --gold-dark: #b8860b;
  --white: #ffffff;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gold-10: rgba(221, 162, 71, 0.1);
  --gold-20: rgba(221, 162, 71, 0.2);
  --gold-30: rgba(221, 162, 71, 0.3);
  --white-5: rgba(255, 255, 255, 0.05);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-15: rgba(255, 255, 255, 0.15);
  --font: "Inter", sans-serif;
}

/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  overflow-x: hidden;
}
img,
video {
  max-width: 100%;
  display: block;
}
/* Only apply height:auto to images WITHOUT an explicit Tailwind h- class */
img:not([class*="h-"]) {
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  background: transparent;
}
::selection {
  background: var(--gold);
  color: var(--bg-primary);
}
input,
textarea,
select {
  font-family: var(--font);
}

/* Utility — used by JS to toggle visibility (e.g. mobile menu icons) */
.hidden {
  display: none !important;
}

/* ============================================================
   HEADER
   ============================================================ */
header#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition-property: all;
  transition-duration: 300ms;
  background-color: transparent;
}
header#site-header:has(.mobile-menu.open) {
  z-index: 1001;
}
header#site-header.scrolled,
header#site-header.solid {
  background: rgba(11, 16, 20, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
header#site-header .nav-inner {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem; /* px-4 = 16px */
  padding-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  header#site-header .nav-inner {
    padding-left: 1.5rem; /* px-6 = 24px */
    padding-right: 1.5rem;
  }
}
header#site-header .logo img {
  width: auto;
  /* Fixed header logo height — overrides any Tailwind h- classes on the img element.
     Matches the compact appearance in the React app screenshot (Image 2). */
  height: 5rem !important; /* 48px mobile */
  transition: height 0.3s;
}
@media (min-width: 1024px) {
  header#site-header .logo img {
    height: 8rem !important; /* 56px desktop */
  }
}

/* Desktop nav */
.desktop-nav {
  display: none;
}
@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
.desktop-nav .nav-link {
  color: rgba(255, 255, 255, 1);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: none;
  padding: 0;
  transition: color 0.2s;
  position: relative;
}
.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
  color: var(--gold);
}
.desktop-nav .dropdown-wrapper {
  position: relative;
}
.desktop-nav .dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}
.desktop-nav .dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.desktop-nav .dropdown-wrapper:hover .dropdown-trigger svg {
  transform: rotate(180deg);
}
.desktop-nav .dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(11, 16, 20, 0.98);
  border: 1px solid var(--white-10);
  border-radius: 8px;
  min-width: 180px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.2s,
    transform 0.2s,
    visibility 0.2s;
}
.desktop-nav .dropdown-wrapper:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.desktop-nav .dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  transition:
    background 0.15s,
    color 0.15s;
}
.desktop-nav .dropdown-menu a:hover {
  background: var(--gold-10);
  color: var(--gold);
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.2s;
}
.cart-btn:hover {
  background: var(--gold-10);
  color: var(--gold);
}
.cart-btn .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: var(--bg-primary);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.cart-btn .badge.visible {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-reserve {
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  border-radius: 4px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-reserve:hover {
  background: var(--white);
}
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
}
@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 20px;
  left: 0;
  inset: 0;
  z-index: 1000;
  background: var(--bg-primary);
  overflow-y: auto;
  display: none;
  flex-direction: column;
  padding: 6rem 1.5rem 2rem;
}
.mobile-menu.open {
  display: flex;
  flex-direction: column;
}
.mobile-menu .mobile-nav-item {
  border-bottom: 1px solid var(--white-5);
}
.mobile-menu .mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-menu .mobile-nav-link:hover,
.mobile-menu .mobile-nav-link.active {
  color: var(--gold);
}
.mobile-menu .mobile-nav-link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}
.mobile-menu .mobile-nav-link.expanded svg {
  transform: rotate(180deg);
}
.mobile-menu .mobile-sub {
  display: none;
  padding-left: 1rem;
  padding-bottom: 0.5rem;
}
.mobile-menu .mobile-sub.open {
  display: block;
}
.mobile-menu .mobile-sub a {
  display: block;
  padding: 0.6rem 0;
  font-size: 0.9375rem;
  color: var(--gray-400);
  transition: color 0.2s;
}
.mobile-menu .mobile-sub a:hover {
  color: var(--gold);
}
.mobile-menu .mobile-cta {
  margin-top: 2rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  padding: 0.75rem 2rem;
  background-color: #dda247;
  color: #0b1014;
  font-weight: 700;
  border-radius: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.15s ease-in-out;
}
.btn-sm {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
}
.btn-md {
  font-size: 0.8125rem;
  padding: 0.75rem 1.5rem;
}
@media (min-width: 768px) {
  .md\:btn-md {
    font-size: 0.8125rem;
    padding: 0.75rem 1.5rem;
  }
}
.btn-lg {
  font-size: 0.875rem;
  padding: 1rem 2rem;
}
.btn-xl {
  font-size: 1rem;
  padding: 1.125rem 2.5rem;
}
.btn-full {
  width: 100%;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg-primary);
}
.btn-primary:hover {
  background: white;
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-primary);
}
.btn-ghost {
  background: var(--white-10);
  color: var(--white);
  border: 1px solid var(--white-15);
}
.btn-ghost:hover {
  background: var(--white-15);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer#site-footer {
  background-color: #05080a;
  color: #ffffff;
  padding-top: 5rem; /* pt-20 = 80px */
  padding-bottom: 2.5rem; /* pb-10 = 40px */
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255, 255, 255, 0.1);
}
footer#site-footer .footer-inner {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem; /* 24px */
  padding-right: 1.5rem;
}
footer#site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  footer#site-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  footer#site-footer .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
footer#site-footer .footer-logo img:not([class*="h-20"]) {
  height: 6rem;
  width: auto;
  margin-bottom: 1.5rem;
}
footer#site-footer .social-links {
  display: flex;
  gap: 1rem;
}
footer#site-footer .social-links a {
  color: #9ca3af; /* text-gray-400 */
  transition-property: color;
  transition-duration: 150ms;
  transition-timing-function: ease;
}
footer#site-footer .social-links a:hover {
  color: #dda247;
}
footer#site-footer h3.footer-heading {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
footer#site-footer ul {
  list-style: none;
}
footer#site-footer ul li {
  margin-bottom: 0.75rem;
}
footer#site-footer ul li a,
footer#site-footer ul li span {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
footer#site-footer ul li a:hover {
  color: var(--white);
}
footer#site-footer .footer-bottom {
  border-top: 1px solid var(--white-10);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  footer#site-footer .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
footer#site-footer .footer-bottom p,
footer#site-footer .footer-bottom a {
  font-size: 0.75rem;
  color: var(--gray-500);
}
footer#site-footer .footer-bottom a:hover {
  color: var(--white);
}
footer#site-footer .footer-links {
  display: flex;
  gap: 1.5rem;
}

/* ============================================================
   HERO / FULLSCREEN SECTIONS
   ============================================================ */
.hero-fullscreen {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
  max-width: 60rem;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--gray-300);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 6rem;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: pulse-gold 2s ease-in-out infinite;
}
@keyframes pulse-gold {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section {
  padding: 4rem 1rem;
}
@media (min-width: 768px) {
  .section {
    padding: 5rem 2rem;
  }
}
.container-wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-divider {
  width: 6rem;
  height: 4px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}
.section-divider.left {
  margin-left: 0;
}
.section-desc {
  font-size: 1.125rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 42rem;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   GRIDS
   ============================================================ */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   CARDS / VENUE CARDS
   ============================================================ */
.card {
  background: var(--bg-secondary);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.card:hover {
  border-color: var(--gold-30);
}
.card-body {
  padding: 2rem;
}
.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--white-10);
  padding: 2.5rem;
  text-align: center;
  transition: border-color 0.3s;
  position: relative;
}
.feature-card:hover {
  border-color: var(--gold);
}
.feature-card .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background: var(--gold-10);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  transition: background 0.3s;
}
.feature-card:hover .icon-circle {
  background: var(--gold-20);
}
.feature-card .icon-circle svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--gold);
}
.feature-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.feature-card p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  color: var(--white);
  font-size: 0.9375rem;
  font-family: var(--font);
  transition: border-color 0.2s;
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-600);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}
.form-input.error,
.form-textarea.error {
  border-color: #ef4444;
}
.form-error {
  font-size: 0.75rem;
  color: #f87171;
  margin-top: 0.25rem;
}
.form-select {
  appearance: none;
  cursor: pointer;
}
.form-textarea {
  resize: none;
}
select option {
  background: var(--bg-tertiary);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--white-10);
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s;
}
.modal-backdrop.open .modal {
  transform: scale(1);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--gray-400);
  transition: color 0.2s;
  padding: 0.5rem;
}
.modal-close:hover {
  color: var(--gold);
}
.modal-close svg {
  width: 24px;
  height: 24px;
}
.modal-title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  columns: 1;
  column-gap: 1.5rem;
}
@media (min-width: 640px) {
  .gallery-grid {
    columns: 2;
  }
}
@media (min-width: 1024px) {
  .gallery-grid {
    columns: 3;
  }
}
@media (min-width: 1280px) {
  .gallery-grid {
    columns: 4;
  }
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--white-5);
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.1);
}
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item .gallery-overlay .cat-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  transform: translateY(8px);
  transition: transform 0.3s 0.05s;
}
.gallery-item:hover .gallery-overlay .cat-label {
  transform: translateY(0);
}
.gallery-item .gallery-overlay h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  transform: translateY(8px);
  transition: transform 0.3s 0.07s;
}
.gallery-item:hover .gallery-overlay h3 {
  transform: translateY(0);
}
.gallery-item .gallery-overlay .plus-icon {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  transform: scale(0);
  transition: transform 0.3s 0.1s;
}
.gallery-item:hover .gallery-overlay .plus-icon {
  transform: scale(1);
}
.gallery-item .gallery-border {
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.gallery-item:hover .gallery-border {
  opacity: 1;
}

/* Gallery Lightbox */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 4rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
.lightbox-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.lightbox-inner {
  position: relative;
  max-width: 1200px;
  width: 100%;
}
.lightbox-inner img,
.lightbox-inner video {
  max-height: 80vh;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  border: 1px solid var(--white-10);
}
.lightbox-close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  padding: 0.5rem;
  z-index: 71;
}
.lightbox-close:hover {
  color: var(--gold);
}
.lightbox-close svg {
  width: 2rem;
  height: 2rem;
}
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  padding: 0.5rem;
  z-index: 71;
}
.lightbox-nav:hover {
  color: var(--gold);
}
.lightbox-nav svg {
  width: 2.5rem;
  height: 2.5rem;
}
.lightbox-prev {
  left: 1rem;
}
.lightbox-next {
  right: 1rem;
}
.lightbox-caption {
  text-align: center;
  margin-top: 1.5rem;
}
.lightbox-caption .cat {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.lightbox-caption h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0.25rem 0;
}
.lightbox-caption p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  letter-spacing: 0.1em;
}

/* Gallery category tabs */
.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  justify-content: center;
}
.cat-tab {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 9999px;
  border: 1px solid var(--white-15);
  color: var(--white);
  transition: all 0.2s;
  background: transparent;
}
.cat-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.cat-tab.active {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--white-10);
  overflow-x: auto;
}
.menu-tab {
  padding: 0.875rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
  background: transparent;
}
.menu-tab:hover {
  color: var(--white);
}
.menu-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--white-5);
  transition: border-color 0.2s;
}
.menu-item:hover {
  border-color: var(--gold-30);
}
.menu-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.menu-item .info {
  flex: 1;
}
.menu-item .info h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.menu-item .info p {
  font-size: 0.8125rem;
  color: var(--gray-400);
  line-height: 1.5;
}
.menu-item .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.menu-item .price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}
.menu-item .add-btn {
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: 4px;
  transition: background 0.2s;
}
.menu-item .add-btn:hover {
  background: var(--white);
}
.badge-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}
.badge-popular {
  background: var(--gold);
  color: var(--bg-primary);
}
.badge-new {
  background: #22c55e;
  color: #052e16;
}
.badge-spicy {
  background: #ef4444;
  color: #fff;
}
.badge-vegan {
  background: #15803d;
  color: #fff;
}

/* Cart sidebar */
.cart-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 55;
  width: min(400px, 90vw);
  background: var(--bg-secondary);
  border-left: 1px solid var(--white-10);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s;
  overflow: hidden;
}
.cart-sidebar.open {
  transform: translateX(0);
}
.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--white-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  gap: 1rem;
}
.cart-empty p {
  color: var(--gray-400);
}
.cart-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--white-5);
}
.cart-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.cart-item .ci-info {
  flex: 1;
}
.cart-item .ci-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.cart-item .ci-info p {
  font-size: 0.75rem;
  color: var(--gray-400);
}
.cart-item .ci-price {
  font-weight: 700;
  color: var(--gold);
}
.cart-item .ci-remove {
  color: var(--gray-500);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  cursor: pointer;
}
.cart-item .ci-remove:hover {
  color: #ef4444;
}
.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--white-10);
}
.cart-totals {
  margin-bottom: 1rem;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}
.cart-total-row.grand {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

/* Cart overlay */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 54;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}
.cart-overlay.open {
  display: block;
}

/* ============================================================
   EVENTS
   ============================================================ */
.event-card {
  background: var(--bg-secondary);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.event-card:hover {
  border-color: var(--gold-30);
  transform: translateY(-4px);
}
.event-card .event-img {
  position: relative;
  height: 14rem;
  overflow: hidden;
}
.event-card .event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.event-card:hover .event-img img {
  transform: scale(1.08);
}
.event-card .event-img .event-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.event-card .event-img .event-price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--white-10);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
}
.event-card .event-body {
  padding: 1.5rem;
}
.event-card .event-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.event-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.event-card .event-artist {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}
.event-card .event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--white-5);
}
.event-card .venue-tag {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Event filters */
.event-filters {
  background: var(--bg-secondary);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}
.event-filters-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}
.event-filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 160px;
  flex: 1;
}
.event-filter-group label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.event-filter-group select,
.event-filter-group input {
  background: var(--bg-tertiary);
  border: 1px solid var(--white-10);
  border-radius: 8px;
  padding: 0.625rem 0.875rem;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}
.event-filter-group select:focus,
.event-filter-group input:focus {
  border-color: var(--gold);
}
.filter-reset {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  padding: 0.5rem;
}
.filter-reset:hover {
  text-decoration: underline;
}

/* Events list view */
.event-list-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-secondary);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  transition: border-color 0.2s;
}
@media (min-width: 768px) {
  .event-list-item {
    flex-direction: row;
  }
}
.event-list-item:hover {
  border-color: var(--gold-30);
}
.event-list-item .eli-img {
  width: 100%;
  height: 10rem;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .event-list-item .eli-img {
    width: 160px;
    height: 120px;
  }
}
.event-list-item .eli-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-list-item .eli-body {
  flex: 1;
}
.event-list-item .eli-date {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.event-list-item .eli-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.event-list-item .eli-artist {
  font-size: 0.875rem;
  color: var(--gray-400);
}
.event-list-item .eli-meta {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray-500);
}
.event-list-item .eli-actions {
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
}

/* Calendar view */
.calendar-wrap {
  background: var(--bg-secondary);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  overflow: hidden;
}
.calendar-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--white-10);
}
.calendar-header h2 {
  font-size: 1.375rem;
  font-weight: 700;
}
.calendar-nav {
  display: flex;
  gap: 0.5rem;
}
.cal-nav-btn {
  padding: 0.5rem 0.75rem;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: 6px;
  color: var(--white);
  transition: background 0.2s;
}
.cal-nav-btn:hover {
  background: var(--gold-10);
  color: var(--gold);
}
.calendar-grid-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid var(--white-10);
}
.calendar-day-header {
  padding: 0.75rem;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.calendar-cells {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.calendar-cell {
  padding: 0.5rem;
  border-right: 1px solid var(--white-5);
  border-bottom: 1px solid var(--white-5);
  min-height: 7rem;
  cursor: pointer;
  transition: background 0.2s;
}
.calendar-cell:hover {
  background: var(--white-5);
}
.calendar-cell:nth-child(7n) {
  border-right: none;
}
.calendar-cell.today .day-num {
  background: var(--gold);
  color: var(--bg-primary);
}
.calendar-cell.other-month {
  opacity: 0.3;
}
.calendar-cell .day-num {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.calendar-event-dot {
  font-size: 0.6875rem;
  background: var(--gold-10);
  color: var(--gold);
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   ROOMS / BOOK ROOM
   ============================================================ */
.room-card {
  background: var(--bg-secondary);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.room-card:hover {
  border-color: var(--gold-30);
}
.room-card .room-imgs {
  position: relative;
  height: 12rem;
  overflow: hidden;
}
.room-card .room-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.room-card:hover .room-imgs img {
  transform: scale(1.08);
}
.room-card .room-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 3px;
}
.room-card .room-body {
  padding: 1.5rem;
}
.room-card .room-type {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.room-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.room-card p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.room-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.room-stat {
  font-size: 0.75rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.room-stat svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}
.amenity-tag {
  font-size: 0.6875rem;
  color: var(--gray-400);
  background: var(--white-5);
  border: 1px solid var(--white-10);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--white-5);
}
.room-price-from {
  font-size: 0.6875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.room-price {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gold);
}

/* Room filters sidebar */
.room-filters h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}
.room-filter-type-btn {
  width: 100%;
  text-align: left;
  padding: 0.625rem 0.875rem;
  background: var(--bg-primary);
  border: 1px solid var(--white-10);
  border-radius: 8px;
  color: var(--gray-400);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: all 0.2s;
}
.room-filter-type-btn:hover {
  border-color: var(--gold-30);
  color: var(--white);
}
.room-filter-type-btn.active {
  border-color: var(--gold);
  background: var(--gold-10);
  color: var(--gold);
}
.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.5rem;
}
input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.anim-fade-up {
  animation: fadeInUp 0.6s ease forwards;
}
.anim-fade {
  animation: fadeIn 0.6s ease forwards;
}
.anim-scale {
  animation: scaleIn 0.6s ease forwards;
}

/* Intersection observer driven animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}
.delay-6 {
  transition-delay: 0.6s;
}
.delay-7 {
  transition-delay: 0.7s;
}

/* Experience card hover lift (matches React motion whileHover y: -5) */
.hover-lift {
  transition: transform 0.2s ease;
}
.hover-lift:hover {
  transform: translateY(-5px);
}
.bg-primary {
  background: var(--bg-primary);
}
.text-primary {
  color: var(--bg-primary);
}
.text-gold {
  color: var(--gold);
}
.bg-gold {
  background: var(--gold);
}
.bg-gold\/10 {
  background: rgba(221, 162, 71, 0.1);
}
.hover\:border-gold\/50:hover {
  border-color: rgba(221, 162, 71, 0.5) !important;
}
.group:hover .group-hover\:border-gold\/30 {
  border-color: rgba(221, 162, 71, 0.3);
}
.group:hover .group-hover\:bg-gold {
  background: var(--gold);
}
.group:hover .group-hover\:text-primary {
  color: var(--bg-primary);
}

/* ============================================================
   MISSING LAYOUT UTILITIES
   ============================================================ */

/* Responsive container — mirrors Tailwind's .container + mx-auto */
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem; /* px-6 = 24px */
  padding-right: 1.5rem;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    padding-left: 1.5rem; /* px-6 = 24px */
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1400px;
  }
}

/* 2-column grid at lg breakpoint — used in dining.html & nightlife.html */
.lg-grid-2-cols {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .lg-grid-2-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* bg-secondary utility (used in events.html cards) */
.bg-secondary {
  background: var(--bg-secondary);
}

/* Space-y utilities used inside cart / menu pages */
.space-y-6 > * + * {
  margin-top: 1.5rem;
}
.space-y-16 > * + * {
  margin-top: 4rem;
}

/* flex-1 utility */
.flex-1 {
  flex: 1 1 0%;
}

/* max-w utilities used across pages */
.max-w-5xl {
  max-width: 64rem;
}
.max-w-\[1600px\] {
  max-width: 1600px;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-2xl {
  max-width: 42rem;
}

/* Padding utilities used inline that may be missing from Tailwind JIT */
.pb-16 {
  padding-bottom: 4rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pt-32 {
  padding-top: 8rem;
}
.pt-20 {
  padding-top: 5rem;
}
@media (min-width: 768px) {
  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md\:pb-24 {
    padding-bottom: 6rem;
  }
  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .md\:pt-32 {
    padding-top: 8rem;
  }
}

/* min-w utility for buttons */
.min-w-\[220px\] {
  min-width: 220px;
}

/* rounded utilities */
.rounded-full {
  border-radius: 9999px;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}

/* shadow-2xl */
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

/* overflow-hidden */
.overflow-hidden {
  overflow: hidden;
}

/* relative / absolute positional helpers already in reset but ensure they carry */
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.inset-0 {
  inset: 0;
}

/* object-cover */
.object-cover {
  object-fit: cover;
}

/* w-full / h-full */
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}

/* text-white */
.text-white {
  color: #ffffff;
}

/* flex helpers */
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.flex-wrap {
  flex-wrap: wrap;
}

/* font helpers */
.font-black {
  font-weight: 900;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.uppercase {
  text-transform: uppercase;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.leading-none {
  line-height: 1;
}
.leading-relaxed {
  line-height: 1.625;
}

/* Text sizes */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .md\:text-p-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* mb utilities commonly missing */
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-10 {
  margin-top: 2.5rem;
}

/* h utilities for hero images */
.h-\[500px\] {
  height: 500px;
}
.h-\[600px\] {
  height: 600px;
}
@media (min-width: 768px) {
  .md\:h-\[600px\] {
    height: 600px;
  }
}

/* z-index */
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}

/* border utilities */
.border {
  border-width: 1px;
  border-style: solid;
}
.border-white\/5 {
  border-color: rgba(255, 255, 255, 0.05);
}
.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}
.border-dashed {
  border-style: dashed;
}
.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}

/* background with opacity */
.bg-white\/5 {
  background: rgba(255, 255, 255, 0.05);
}
.bg-white\/10 {
  background: rgba(255, 255, 255, 0.1);
}
.bg-black\/20 {
  background: rgba(0, 0, 0, 0.2);
}

/* from-primary gradient stop */
.from-primary {
  --tw-gradient-from: #0b1014;
}
.via-primary\/40 {
  --tw-gradient-stops:
    var(--tw-gradient-from), rgba(11, 16, 20, 0.4),
    var(--tw-gradient-to, rgba(11, 16, 20, 0));
}

/* backdrop-blur-md */
.backdrop-blur-md {
  backdrop-filter: blur(12px);
}

/* transition helpers */
.transition-colors {
  transition:
    color 0.2s,
    background-color 0.2s,
    border-color 0.2s;
}
.transition-transform {
  transition: transform 0.2s;
}
.duration-500 {
  transition-duration: 500ms;
}

/* inline-flex */
.inline-flex {
  display: inline-flex;
}

/* sm: flex-row for buttons */
@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
}

/* group hover scale for menu images */
.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

/* text-gray utilities */
.text-gray-200 {
  color: #e5e7eb;
}
.text-gray-300 {
  color: #d1d5db;
}
.text-gray-400 {
  color: #9ca3af;
}
.text-gray-500 {
  color: #6b7280;
}

/* Hover text gold */
.hover\:text-gold:hover {
  color: var(--gold);
}

/* p-8 p-16 */
.p-8 {
  padding: 2rem;
}
.p-16 {
  padding: 4rem;
}
@media (min-width: 768px) {
  .md\:p-16 {
    padding: 4rem;
  }
}

/* backdrop-blur-md already above; add lg variants */
@media (min-width: 1024px) {
  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
}

/* opacity */
.opacity-80 {
  opacity: 0.8;
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-0 {
  opacity: 0;
}

/* hidden */
.hidden {
  display: none;
}

/* block */
.block {
  display: block;
}

/* shrink-0 */
.flex-shrink-0 {
  flex-shrink: 0;
}

/* w-20 w-14 w-96 for various icons / orbs */
.w-14 {
  width: 3.5rem;
}
.h-14 {
  height: 3.5rem;
}
.w-96 {
  width: 24rem;
}
.h-96 {
  height: 24rem;
}

/* top / right / left positioning for glow orbs */
.top-10 {
  top: 2.5rem;
}
.top-20 {
  top: 5rem;
}
.right-1\/4 {
  right: 25%;
}
.left-1\/4 {
  left: 25%;
}

/* Overflow-x hidden on body already in reset */
/* but ensure main content doesn't overflow */
main {
  overflow-x: hidden;
}

/* ============================================================
   FOOTER ICON UTILITY
   Replaces the inline style="width:16px; height:16px; …" on
   Lucide <i> elements inside the footer contact list.
   ============================================================ */
.footer-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  color: #dda247;
  flex-shrink: 0;
}

/* ============================================================
   HEADER — NAV ACTIONS (right-side buttons + hamburger)
   ============================================================ */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hamburger button — visible only on mobile */
.mobile-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--white-10);
  border-radius: 8px;
  transition:
    background 0.2s,
    color 0.2s;
}
.mobile-hamburger:hover {
  background: var(--gold-10);
  color: var(--gold);
}
@media (min-width: 1024px) {
  .mobile-hamburger {
    display: none;
  }
}

/* ============================================================
   GRADIENT TEXT UTILITY
   ============================================================ */
.text-gradient-gold {
  color: #DDA247; /* Fallback color */
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .text-gradient-gold {
    background: linear-gradient(to right, #fff, #DDA247, #DDA247);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
  }
}
