/* ========================================================================== */
/* Variables                                                                  */
/* ========================================================================== */

:root {
  /* Colors - Dark poker-inspired palette */
  --color-background: #050608; /* Main page background - deep black */
  --color-surface: #111317; /* Default section/card background */
  --color-surface-elevated: #181b22; /* Elevated cards/nav */
  --color-surface-soft: #1f232c; /* Subtle panels, hovers */

  --color-text: #f5f5f5; /* Primary text */
  --color-text-soft: #b3b7c0; /* Secondary text */
  --color-text-muted: #7e828c; /* Meta text, labels */

  --color-primary: #e3243b; /* Main brand red (CTAs, accents) */
  --color-primary-soft: rgba(227, 36, 59, 0.16);
  --color-primary-strong: #ff3a4f;

  --color-success: #36c88a;
  --color-warning: #f5a623;
  --color-danger: #ff4b5c;

  --color-border-subtle: #262933;
  --color-border-strong: #363a46;

  --color-gray-100: #f5f5f5;
  --color-gray-200: #e1e3e8;
  --color-gray-300: #c4c7d0;
  --color-gray-400: #9a9fb0;
  --color-gray-500: #7e828c;
  --color-gray-600: #525666;
  --color-gray-700: #343744;
  --color-gray-800: #22252f;
  --color-gray-900: #111317;

  /* Card suit accent colors (subtle poker details) */
  --color-suit-heart: #e3243b;
  --color-suit-diamond: #ff5a6b;
  --color-suit-club: #f5f5f5;
  --color-suit-spade: #f5f5f5;

  /* Typography */
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-mono: "JetBrains Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-lg: 1.125rem;  /* 18px */
  --font-size-xl: 1.25rem;   /* 20px */
  --font-size-2xl: 1.5rem;   /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem;  /* 36px */
  --font-size-5xl: 3rem;     /* 48px */

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

  /* Spacing scale (0–96px) */
  --space-0: 0;
  --space-1: 0.125rem;  /* 2px */
  --space-2: 0.25rem;   /* 4px */
  --space-3: 0.375rem;  /* 6px */
  --space-4: 0.5rem;    /* 8px */
  --space-5: 0.625rem;  /* 10px */
  --space-6: 0.75rem;   /* 12px */
  --space-8: 1rem;      /* 16px */
  --space-10: 1.25rem;  /* 20px */
  --space-12: 1.5rem;   /* 24px */
  --space-16: 2rem;     /* 32px */
  --space-20: 2.5rem;   /* 40px */
  --space-24: 3rem;     /* 48px */
  --space-32: 4rem;     /* 64px */
  --space-40: 5rem;     /* 80px */
  --space-48: 6rem;     /* 96px */

  /* Radius */
  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  /* Shadows - soft, lounge-like */
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-medium: 0 18px 45px rgba(0, 0, 0, 0.5);
  --shadow-hard: 0 28px 80px rgba(0, 0, 0, 0.7);

  /* Transitions */
  --transition-fast: 120ms ease-out;
  --transition-base: 180ms ease-out;
  --transition-slow: 260ms ease-out;

  /* Layout */
  --container-max-width: 1120px;
  --header-height: 72px;
}

/* ========================================================================== */
/* Reset / Normalize                                                           */
/* ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border-radius: 0;
}

button {
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none !important; /* requirement */
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

[hidden] {
  display: none !important;
}

/* ========================================================================== */
/* Base                                                                       */
/* ========================================================================== */

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  background-color: var(--color-background);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  display: block;
}

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

h1 {
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-12);
}

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

h3 {
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-8);
}

h4 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-6);
}

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

h6 {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

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

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

a {
  transition: color var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base),
    opacity var(--transition-base),
    transform var(--transition-base);
}

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

strong,
b {
  font-weight: 600;
}

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

code,
kbd,
pre,
samp {
  font-family: var(--font-mono);
}

hr {
  border: 0;
  border-top: 1px solid var(--color-border-subtle);
  margin: var(--space-16) 0;
}

/* ========================================================================== */
/* Accessibility                                                              */
/* ========================================================================== */

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

html:focus-within {
  scroll-behavior: smooth;
}

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

/* ========================================================================== */
/* Layout & Utilities                                                         */
/* ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-16);
  padding-right: var(--space-16);
}

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

.section--alt {
  background: radial-gradient(circle at top left, rgba(227, 36, 59, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(37, 41, 53, 0.9), #050608);
}

.section__header {
  margin-bottom: var(--space-20);
}

.section__eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.section__title {
  max-width: 32rem;
}

.section__lead {
  max-width: 34rem;
  color: var(--color-text-soft);
}

/* 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-col {
  display: flex;
  flex-direction: column;
}

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

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

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

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

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

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

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

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

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

/* Grid helpers */

.grid {
  display: grid;
}

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

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

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

/* Spacing utilities */

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-16 { margin-top: var(--space-16); }

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }
.mb-16 { margin-bottom: var(--space-16); }

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

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

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

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

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(245, 245, 245, 0.16);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 60%),
    rgba(17, 19, 23, 0.85);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-soft);
}

.badge--chip {
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(227, 36, 59, 0.6), 0 0 0 5px rgba(5, 6, 8, 0.8);
  border: 1px solid rgba(227, 36, 59, 0.8);
}

/* 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;
}

/* ========================================================================== */
/* Navigation & Header                                                        */
/* ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 6, 8, 0.96), rgba(5, 6, 8, 0.86));
  border-bottom: 1px solid rgba(54, 58, 70, 0.8);
}

.site-header__inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-10);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--font-size-lg);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-logo__mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ff5a6b, #8b1023);
  box-shadow: 0 0 0 3px rgba(5, 6, 8, 0.85), 0 0 0 5px rgba(227, 36, 59, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-10);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__link {
  position: relative;
  font-size: var(--font-size-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  padding: 0.4rem 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(227, 36, 59, 0.2), rgba(227, 36, 59, 0.9));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: #ffffff;
}

.nav__link:hover::after,
.nav__link--active::after {
  transform: scaleX(1);
}

.nav__cta {
  margin-left: var(--space-10);
}

/* Mobile navigation toggle */

.nav-toggle {
  display: none;
  flex-direction: column; /* requirement */
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-strong);
  background: rgba(17, 19, 23, 0.96);
}

.nav-toggle__bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #f5f5f5;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 960px) {
  .nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    padding: var(--space-16);
    background: radial-gradient(circle at top left, rgba(227, 36, 59, 0.16), transparent 55%),
      rgba(5, 6, 8, 0.98);
    border-bottom: 1px solid rgba(54, 58, 70, 0.9);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-base), opacity var(--transition-base);
  }

  .nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .nav__cta {
    margin-left: 0;
    margin-top: var(--space-8);
  }

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

/* Ensure no horizontal overflow on mobile */

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

/* ========================================================================== */
/* Buttons                                                                    */
/* ========================================================================== */

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

.btn--primary {
  background: radial-gradient(circle at 12% 0, #ff8a93, #e3243b);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(227, 36, 59, 0.45);
}

.btn--primary:hover {
  background: radial-gradient(circle at 10% 0, #ff9fa7, #ff3a4f);
  box-shadow: 0 16px 40px rgba(227, 36, 59, 0.6);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.7);
}

.btn--ghost {
  background: rgba(17, 19, 23, 0.9);
  border-color: var(--color-border-strong);
  color: var(--color-text-soft);
}

.btn--ghost:hover {
  border-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
}

.btn--outline {
  background: transparent;
  border-color: rgba(227, 36, 59, 0.7);
  color: var(--color-primary-strong);
}

.btn--outline:hover {
  background: rgba(227, 36, 59, 0.08);
}

.btn--full {
  width: 100%;
}

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

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

/* ========================================================================== */
/* Form elements                                                              */
/* ========================================================================== */

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.form__label {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.form__label span {
  color: var(--color-primary);
}

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

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

.input,
.textarea,
.select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-subtle);
  background: rgba(12, 13, 17, 0.96);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  transition: border-color var(--transition-base),
    box-shadow var(--transition-base),
    background-color var(--transition-base);
}

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

.input:focus-visible,
.textarea:focus-visible,
.select:focus-visible {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(227, 36, 59, 0.6), 0 0 0 10px rgba(227, 36, 59, 0.12);
}

.textarea {
  min-height: 140px;
}

.select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #b3b7c0 50%),
    linear-gradient(135deg, #b3b7c0 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--color-border-subtle);
  appearance: none;
  background-color: rgba(12, 13, 17, 0.96);
  display: inline-block;
  position: relative;
}

.checkbox input[type="checkbox"]:checked {
  border-color: var(--color-primary);
  background: radial-gradient(circle at 30% 0, #ff8a93, #e3243b);
}

.checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ========================================================================== */
/* Cards & Surfaces                                                           */
/* ========================================================================== */

.card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: var(--space-16);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 55%),
    rgba(17, 19, 23, 0.96);
  border: 1px solid rgba(54, 58, 70, 0.9);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card--tight {
  padding: var(--space-12);
}

.card--bordered {
  border: 1px solid rgba(227, 36, 59, 0.4);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

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

.card__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
}

.card__meta {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card--hoverable {
  transition: transform var(--transition-base), box-shadow var(--transition-base),
    border-color var(--transition-base), background var(--transition-base);
}

.card--hoverable:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(227, 36, 59, 0.55);
  background: radial-gradient(circle at top left, rgba(255, 90, 107, 0.16), transparent 60%),
    rgba(17, 19, 23, 0.96);
}

/* Poker table / texture helpers */

.surface--table {
  background-image: radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.08), transparent 60%),
    repeating-linear-gradient(135deg, #13161d 0, #13161d 4px, #181b22 4px, #181b22 8px);
  border-radius: 999px;
  border: 1px solid rgba(227, 36, 59, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.surface--divider {
  position: relative;
}

.surface--divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227, 36, 59, 0.7), transparent);
}

/* ========================================================================== */
/* Hero & Page-specific base patterns                                         */
/* ========================================================================== */

.hero {
  padding-top: calc(var(--space-32) + var(--header-height));
  padding-bottom: var(--space-32);
}

.hero--compact {
  padding-top: calc(var(--space-24) + var(--header-height));
  padding-bottom: var(--space-24);
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-16);
  align-items: center;
}

.hero__eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.hero__title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-6);
}

.hero__subtitle {
  color: var(--color-text-soft);
  max-width: 34rem;
  margin-bottom: var(--space-10);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.hero__meta {
  margin-top: var(--space-12);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.hero__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 55%),
    #050608;
  border: 1px solid rgba(54, 58, 70, 0.9);
  box-shadow: var(--shadow-medium);
}

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

.hero__badge {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
}

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

  .hero__photo {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ========================================================================== */
/* FAQ (Base styling)                                                         */
/* ========================================================================== */

.faq {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius-md);
  background: rgba(17, 19, 23, 0.96);
  border: 1px solid var(--color-border-subtle);
  padding: var(--space-10) var(--space-12);
}

.faq-item + .faq-item {
  margin-top: var(--space-6);
}

.faq-item__button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
  text-align: left;
  background: none;
}

.faq-item__question {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  color: var(--color-text);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--color-border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.faq-item__content {
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

/* ========================================================================== */
/* Footer                                                                     */
/* ========================================================================== */

.site-footer {
  border-top: 1px solid rgba(54, 58, 70, 0.9);
  background: radial-gradient(circle at top center, rgba(227, 36, 59, 0.16), transparent 60%),
    #050608;
  padding-top: var(--space-20);
  padding-bottom: var(--space-10);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-16);
  margin-bottom: var(--space-16);
}

.site-footer__brand p {
  }

.site-footer__heading {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
}

.site-footer__nav,
.site-footer__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.site-footer__link {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.site-footer__link:hover {
  color: var(--color-primary-strong);
}

.site-footer__bottom {
  border-top: 1px solid rgba(54, 58, 70, 0.8);
  padding-top: var(--space-6);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
}

@media (max-width: 960px) {
  .site-footer__top {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ========================================================================== */
/* Chips & Suit iconography                                                   */
/* ========================================================================== */

.suits-row {
  display: inline-flex;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.suit-heart { color: var(--color-suit-heart); }
.suit-diamond { color: var(--color-suit-diamond); }
.suit-club { color: var(--color-suit-club); }
.suit-spade { color: var(--color-suit-spade); }

.chips-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.chip-tag {
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(227, 36, 59, 0.5);
  background: rgba(227, 36, 59, 0.08);
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
}

/* ========================================================================== */
/* Tables & Lists                                                             */
/* ========================================================================== */

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.table thead {
  background: rgba(17, 19, 23, 0.96);
}

.table th,
.table td {
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--color-border-subtle);
}

.table th {
  font-weight: 500;
  text-align: left;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
}

.table tbody tr:nth-child(even) {
  background: rgba(17, 19, 23, 0.7);
}

.list-dot {
  list-style: none !important;
}

.list-dot li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
}

.list-dot li::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0.5rem;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--color-primary);
}

/* ========================================================================== */
/* Status / Info labels                                                       */
/* ========================================================================== */

.status-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 4px rgba(54, 200, 138, 0.25);
}

.status-dot--warning {
  background: var(--color-warning);
  box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.25);
}

.status-dot--danger {
  background: var(--color-danger);
  box-shadow: 0 0 0 4px rgba(255, 75, 92, 0.25);
}

/* ========================================================================== */
/* Badges specific for website context                                        */
/* ========================================================================== */

.badge--evening {
  background: rgba(17, 19, 23, 0.96);
  border-color: rgba(227, 36, 59, 0.55);
  color: var(--color-text-soft);
}

.badge--info {
  border-color: var(--color-border-strong);
}

/* ========================================================================== */
/* Helper for restrained content width                                        */
/* ========================================================================== */

.prose p + h2,
.prose p + h3 {
  margin-top: var(--space-12);
}

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

/* End of base.css for budapestvennue.com */
