/* =========================================================
   Variables
   ========================================================= */
:root {
  /* Colors */
  --color-bg: #060809; /* deep charcoal / table edge */
  --color-bg-alt: #0f1713; /* deep forest green */
  --color-bg-soft: #151f1a; /* muted olive block */

  --color-surface: #111415; /* card-style surface */
  --color-surface-alt: #171d1f;

  --color-text: #f6f2e8; /* ivory */
  --color-text-muted: #b5aa8f;

  --color-primary: #c9a247; /* warm gold */
  --color-primary-soft: rgba(201, 162, 71, 0.12);
  --color-primary-strong: #e6bd52;

  --color-success: #3aa66b; /* green felt success */
  --color-warning: #e3a63a; /* amber warning */
  --color-danger: #d1554f; /* muted red */

  --color-neutral-50: #f8f6f2;
  --color-neutral-100: #e2ded4;
  --color-neutral-200: #c8c0b0;
  --color-neutral-300: #a99f8a;
  --color-neutral-400: #8a806b;
  --color-neutral-500: #6c6252;
  --color-neutral-600: #4f473a;
  --color-neutral-700: #383229;
  --color-neutral-800: #231f19;
  --color-neutral-900: #14120e;

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

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;

  --line-height-tight: 1.2;
  --line-height-snug: 1.35;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;

  /* Spacing scale (px) */
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

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

  /* Shadows (casino table / lounge feel) */
  --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.35);
  --shadow-elevated: 0 18px 45px rgba(0, 0, 0, 0.6);
  --shadow-focus: 0 0 0 2px rgba(6, 8, 9, 1), 0 0 0 4px rgba(201, 162, 71, 0.9);

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

  /* Layout */
  --container-max-width: 1200px;
  --container-padding-x: 20px;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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

* {
  margin: 0;
}

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

body {
  min-height: 100vh;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
}

img,
video {
  height: auto;
}

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

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

ul,
ol {
  padding-left: var(--space-5);
}

/* =========================================================
   Base Styles
   ========================================================= */
body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  background: radial-gradient(circle at top, #18251c 0, var(--color-bg) 55%);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--line-height-tight);
  color: var(--color-neutral-50);
  margin-bottom: var(--space-3);
}

h1 {
  font-size: clamp(2.4rem, 3.2vw, 3.1rem);
}

h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.4rem);
}

h3 {
  font-size: clamp(1.5rem, 1.9vw, 1.9rem);
}

h4 {
  font-size: var(--font-size-xl);
}

h5 {
  font-size: var(--font-size-lg);
}

h6 {
  font-size: var(--font-size-base);
}

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

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-normal),
    opacity var(--transition-fast);
}

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

a:active {
  opacity: 0.85;
}

strong {
  font-weight: 600;
}

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

code,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

::selection {
  background-color: rgba(201, 162, 71, 0.25);
  color: var(--color-text);
}

/* =========================================================
   Accessibility & Focus
   ========================================================= */
:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Screen reader only */
.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
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding-x);
  padding-right: var(--container-padding-x);
}

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

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

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

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

/* Grid helpers */
.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: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

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

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

.m-auto {
  margin: auto;
}

.mt-0 {
  margin-top: 0;
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-8 {
  margin-top: var(--space-8);
}

.mb-0 {
  margin-bottom: 0;
}

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

.mb-8 {
  margin-bottom: var(--space-8);
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.hidden {
  display: none !important;
}

/* Casino-inspired subtle texture utility for table / hero */
.surface-texture {
  background-image:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.08), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(0, 0, 0, 0.65), transparent 55%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 6px
    );
  background-color: #0f1713;
}

/* =========================================================
   Components
   ========================================================= */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color var(--transition-normal),
    border-color var(--transition-normal),
    color var(--transition-normal),
    box-shadow var(--transition-normal),
    transform var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, #b58a35, #e6bd52);
  color: #201807 !important;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e6bd52, #f1d474);
  transform: translateY(-1px);
  box-shadow: var(--shadow-elevated);
}

.btn-outline {
  background: transparent;
  border-color: rgba(201, 162, 71, 0.7);
  color: var(--color-primary-strong);
}

.btn-outline:hover {
  background: var(--color-primary-soft);
}

.btn-ghost {
  background: rgba(15, 23, 18, 0.9);
  border-color: rgba(255, 255, 255, 0.06);
  color: var(--color-text);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

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

/* Inputs & Form Controls */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
textarea,
select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(10, 14, 12, 0.95);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  transition:
    border-color var(--transition-normal),
    background-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-muted);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(201, 162, 71, 0.4);
  outline: none;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

label {
  display: inline-block;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.form-helper {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.form-error {
  font-size: var(--font-size-xs);
  color: var(--color-danger);
}

/* Cards (event packages, testimonials, etc.) */
.card {
  position: relative;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(201, 162, 71, 0.12), transparent 52%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.8), #0c1010 70%);
  border: 1px solid rgba(201, 162, 71, 0.18);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      rgba(201, 162, 71, 0.45),
      transparent 28%,
      transparent 72%,
      rgba(145, 108, 64, 0.4)
    );
  opacity: 0.06;
}

.card--soft {
  background: rgba(10, 16, 13, 0.9);
  border-color: rgba(255, 255, 255, 0.06);
}

.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);
  color: var(--color-text-muted);
}

.card-actions {
  margin-top: var(--space-4);
}

/* Tag / pill for formats like Poker / Roulette / Blackjack */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 162, 71, 0.35);
  background-color: rgba(13, 21, 18, 0.9);
  color: var(--color-primary-strong);
}

/* Image wrapper for gallery / event photos */
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-soft);
  background: radial-gradient(circle at center, #19251e, #050606 70%);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.65),
      transparent 40%
    );
  opacity: 0.9;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Call-to-action highlight section */
.cta-strip {
  position: relative;
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(201, 162, 71, 0.25), transparent 60%),
    radial-gradient(circle at bottom right, rgba(6, 61, 31, 0.8), #050707 70%);
  border: 1px solid rgba(201, 162, 71, 0.4);
  box-shadow: var(--shadow-elevated);
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 10% 0, rgba(255, 255, 255, 0.4), transparent 35%);
  opacity: 0.12;
}

/* FAQ basic styling */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

.faq-question {
  font-weight: 500;
  font-size: var(--font-size-lg);
}

.faq-answer {
  margin-top: var(--space-2);
  color: var(--color-text-muted);
}

/* Testimonial text styling */
.quote {
  font-style: italic;
  color: var(--color-text-muted);
}

.quote::before,
.quote::after {
  content: '"';
}

/* Simple chip / token-like circle for list accents */
.chip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: radial-gradient(circle, #f6f2e8 0, #c9a247 45%, #5a3d1a 100%);
}

/* =========================================================
   Layout helpers for hero & navigation (generic)
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(
      to bottom,
      rgba(6, 8, 9, 0.98),
      rgba(6, 8, 9, 0.88),
      transparent
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.navbar-link {
  position: relative;
  color: var(--color-text-muted);
}

.navbar-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #b58a35, #e6bd52);
  transition: width var(--transition-normal);
}

.navbar-link:hover {
  color: var(--color-neutral-50);
}

.navbar-link:hover::after,
.navbar-link--active::after {
  width: 100%;
}

.navbar-link--active {
  color: var(--color-neutral-50);
}

@media (max-width: 900px) {
  .navbar-links {
    display: none;
  }
}

.hero {
  padding-top: var(--space-20);
  padding-bottom: var(--space-16);
}

.hero-eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.hero-title {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  margin-bottom: var(--space-4);
}

.hero-subtitle {
  max-width: 36rem;
  color: var(--color-text-muted);
}

.hero-actions {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* =========================================================
   End base.css
   ========================================================= */
