/* =========================================================
   Variables
   ========================================================= */
:root {
  /* Color Palette - Luxurious Restaurant & Poker Lounge */
  --color-background: #070809;        /* Near-black, cinematic */
  --color-surface: #101215;           /* Charcoal surface */
  --color-surface-soft: #181b1f;      /* Soft elevated surface */
  --color-text: #f4f1ea;              /* Soft ivory text */
  --color-text-muted: #a7a398;        /* Subtle muted text */

  --color-primary: #0f3b33;           /* Deep emerald green */
  --color-primary-soft: #17473e;      /* Softer emerald */

  --color-accent-gold: #c8a15a;       /* Warm gold accents */
  --color-accent-gold-soft: rgba(200, 161, 90, 0.18);
  --color-accent-burgundy: #6c1c2f;   /* Burgundy red */

  --color-success: #2f8f5b;
  --color-warning: #d6a447;
  --color-danger: #c84848;

  --gray-50: #f7f7f5;
  --gray-100: #ecebe7;
  --gray-200: #d2d0c9;
  --gray-300: #b3afa4;
  --gray-400: #8b8678;
  --gray-500: #666157;
  --gray-600: #46423b;
  --gray-700: #312d28;
  --gray-800: #191714;
  --gray-900: #0c0b09;

  /* Typography */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  --font-serif: "Playfair Display", "Times New Roman", serif;
  --font-display: "Playfair Display", "Times New Roman", serif;

  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-md: 1.0625rem; /* 17px - comfortable for body */
  --font-size-lg: 1.125rem;  /* 18px */
  --font-size-xl: 1.25rem;   /* 20px */
  --font-size-2xl: 1.5rem;   /* 24px */
  --font-size-3xl: 2rem;     /* 32px */
  --font-size-4xl: 2.5rem;   /* 40px */
  --font-size-5xl: 3.25rem;  /* 52px - hero */
  --font-size-6xl: 4rem;     /* 64px - cinematic hero */

  --line-height-tight: 1.15;
  --line-height-snug: 1.3;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;

  /* Spacing Scale (0–96px) */
  --space-0: 0;
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.25rem;  /* 20px */
  --space-6: 1.5rem;   /* 24px */
  --space-7: 1.75rem;  /* 28px */
  --space-8: 2rem;     /* 32px */
  --space-9: 2.5rem;   /* 40px */
  --space-10: 3rem;    /* 48px */
  --space-11: 3.5rem;  /* 56px */
  --space-12: 4rem;    /* 64px */
  --space-14: 4.5rem;  /* 72px */
  --space-16: 6rem;    /* 96px */

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Shadows - soft, atmospheric */
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.45);
  --shadow-soft-high: 0 24px 60px rgba(0, 0, 0, 0.65);
  --shadow-subtle: 0 8px 24px rgba(3, 3, 3, 0.55);

  /* Transitions */
  --transition-fast: 120ms ease-out;
  --transition-normal: 200ms ease-out;
  --transition-slow: 320ms ease;
}

/* Prefer-reduced-motion: minimize animations */
@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0.001ms;
    --transition-normal: 0.001ms;
    --transition-slow: 0.001ms;
  }
}


/* =========================================================
   Reset / Normalize
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding: 0;
  margin: 0;
}

body {
  min-height: 100vh;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  border: none;
  background: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

textarea {
  resize: vertical;
}

:focus {
  outline: none;
}


/* =========================================================
   Base Styles
   ========================================================= */
body {
  font-family: var(--font-sans);
  font-size: var(--font-size-md);
  line-height: var(--line-height-normal);
  background-color: var(--color-background);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-text);
}

h1 {
  font-size: clamp(var(--font-size-4xl), 6vw, var(--font-size-6xl));
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-5);
}

h2 {
  font-size: clamp(var(--font-size-3xl), 4vw, var(--font-size-5xl));
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-4);
}

h3 {
  font-size: clamp(var(--font-size-2xl), 3vw, var(--font-size-3xl));
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-3);
}

h4 {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-3);
}

h5 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

h6 {
  font-size: var(--font-size-base);
  text-transform: none;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-1);
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

small {
  font-size: var(--font-size-sm);
}

a {
  position: relative;
  cursor: pointer;
  transition: color var(--transition-normal);
}

a:hover {
  color: var(--color-accent-gold);
}

/* Cinematic subtle link underline for editorial style */
a[data-underline="true"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-accent-gold), transparent);
  opacity: 0.7;
}

hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: var(--space-8) 0;
}

::selection {
  background: rgba(200, 161, 90, 0.25);
  color: var(--color-text);
}


/* =========================================================
   Accessibility & Focus Styles
   ========================================================= */
:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* =========================================================
   Utilities
   ========================================================= */

/* Layout Container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-5);
  padding-right: var(--space-5);
  max-width: 1200px;
}

@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
}

.section {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.section--dense {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.section--hero-full {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

/* Flex Utilities */
.flex {
  display: flex;
}

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

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.gap-xs {
  gap: var(--space-2);
}

.gap-sm {
  gap: var(--space-3);
}

.gap-md {
  gap: var(--space-4);
}

.gap-lg {
  gap: var(--space-6);
}

.gap-xl {
  gap: var(--space-8);
}

/* Grid Utilities */
.grid {
  display: grid;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-8);
}

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

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-muted {
  color: var(--color-text-muted);
}

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

.text-emerald {
  color: var(--color-primary);
}

.text-serif {
  font-family: var(--font-serif);
}

.text-uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.12em;
}

/* Spacing Utilities */
.mt-0 { margin-top: 0; }
.mt-xs { margin-top: var(--space-2); }
.mt-sm { margin-top: var(--space-3); }
.mt-md { margin-top: var(--space-4); }
.mt-lg { margin-top: var(--space-6); }
.mt-xl { margin-top: var(--space-8); }

.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--space-2); }
.mb-sm { margin-bottom: var(--space-3); }
.mb-md { margin-bottom: var(--space-4); }
.mb-lg { margin-bottom: var(--space-6); }
.mb-xl { margin-bottom: var(--space-8); }

.pt-0 { padding-top: 0; }
.pt-sm { padding-top: var(--space-3); }
.pt-md { padding-top: var(--space-4); }
.pt-lg { padding-top: var(--space-6); }
.pt-xl { padding-top: var(--space-8); }

.pb-0 { padding-bottom: 0; }
.pb-sm { padding-bottom: var(--space-3); }
.pb-md { padding-bottom: var(--space-4); }
.pb-lg { padding-bottom: var(--space-6); }
.pb-xl { padding-bottom: var(--space-8); }

/* Surface Utilities */
.surface {
  background-color: var(--color-surface);
}

.surface-soft {
  background: radial-gradient(circle at top, rgba(200, 161, 90, 0.08), transparent 55%),
              radial-gradient(circle at bottom, rgba(15, 59, 51, 0.14), transparent 55%),
              var(--color-surface);
}

/* Max-width text container for editorial copy */
/* =========================================================
   Components
   ========================================================= */

/* Buttons - primary for reservations, gold & emerald accent */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color var(--transition-normal),
    color var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal),
    transform var(--transition-fast);
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent-gold), #f0d49a);
  color: #18130a !important;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover:not(:disabled) {
  box-shadow: var(--shadow-soft-high);
}

.btn-outline {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(200, 161, 90, 0.6);
  color: var(--color-text);
}

.btn-outline:hover:not(:disabled) {
  background: var(--color-accent-gold-soft);
  border-color: var(--color-accent-gold);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--color-text);
}

.btn-ghost:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-pill-small {
  padding: 0.4rem 1.2rem;
  font-size: var(--font-size-xs);
}

/* Inputs & Forms */
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(8, 10, 12, 0.9);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  transition:
    border-color var(--transition-normal),
    box-shadow var(--transition-normal),
    background-color var(--transition-normal);
}

.form-control::placeholder {
  color: rgba(167, 163, 152, 0.7);
}

.form-control:focus-visible {
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 0 1px rgba(200, 161, 90, 0.5);
}

.form-control--light {
  background-color: rgba(244, 241, 234, 0.06);
}

label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-row {
  display: flex;
  gap: var(--space-4);
}

.form-row > * {
  flex: 1;
}

@media (max-width: 640px) {
  .form-row {
    flex-direction: column;
  }
}

/* Card - used for menu highlights, events, VIP info */
.card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  background:
    linear-gradient(145deg, rgba(200, 161, 90, 0.06), transparent 36%),
    var(--color-surface);
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(200, 161, 90, 0.2), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.card:hover::before {
  opacity: 1;
}

.card-header {
  margin-bottom: var(--space-4);
}

.card-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-2);
}

.card-subtitle {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
}

.card-body {
  color: var(--color-text-muted);
}

/* Hero Overlay Helper */
.hero-overlay {
  position: relative;
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 40%),
    linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 45%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Tag / Chip for categories like "Fine Dining", "Poker Lounge" */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.9rem;
  border: 1px solid rgba(200, 161, 90, 0.5);
  background: rgba(7, 8, 9, 0.85);
  font-size: var(--font-size-xs);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-text);
}

/* Simple badge for availability, status etc. */
.badge {
  display: inline-block;
  padding: 0.1rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.badge-success {
  background-color: rgba(47, 143, 91, 0.16);
  color: #9be3b7;
}

.badge-danger {
  background-color: rgba(200, 72, 72, 0.16);
  color: #ffb3b3;
}

/* Subtle separator used in editorial layouts */
.divider-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
}

.divider-label::before,
.divider-label::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.35));
}

.divider-label::after {
  background: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.35));
}

/* Subtle overlay panel used for floating booking modules */
.panel-floating {
  background: rgba(7, 8, 9, 0.9);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft-high);
}

/* Simple responsive media wrapper for galleries */
.media-ratio-16x9 {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.media-ratio-16x9 > img,
.media-ratio-16x9 > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* End of base.css */
