:root {
  /* =============================
   * Color System
   * ============================= */
  --color-background: #070814;
  --color-surface: #101321;
  --color-surface-alt: #181c2b;
  --color-text: #f8fafc;
  --color-text-muted: #9ca3af;

  --color-primary: #f97316; /* warm accent for CTAs */
  --color-primary-soft: rgba(249, 115, 22, 0.1);
  --color-primary-strong: #ea580c;

  --color-success: #22c55e;
  --color-warning: #facc15;
  --color-danger: #ef4444;

  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2933;
  --color-gray-900: #111827;

  /* Accents for interactive / gaming vibe */
  --color-accent-green: #22c55e;
  --color-accent-blue: #38bdf8;

  /* =============================
   * Typography
   * ============================= */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Text", "Segoe UI", sans-serif;
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Poppins", "SF Pro Display", "Segoe UI", sans-serif;

  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-md: 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.1;
  --line-height-snug: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;

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

  /* =============================
   * Radius, Shadows, Transitions
   * ============================= */
  --radius-sm: 0.25rem;  /* 4px */
  --radius-md: 0.5rem;   /* 8px */
  --radius-lg: 0.75rem;  /* 12px */
  --radius-xl: 1rem;     /* 16px */
  --radius-pill: 9999px;

  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 20px 60px rgba(15, 23, 42, 0.8);

  --transition-fast: 120ms ease-out;
  --transition-base: 180ms ease-out;
  --transition-slow: 260ms ease-out;
}

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

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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
li,
fieldset,
legend,
pre {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-md);
  line-height: var(--line-height-normal);
  background: radial-gradient(circle at top, #111827 0, #020617 50%, #02040a 100%);
  color: var(--color-text);
}

main {
  min-height: 60vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-16);
}

h2 {
  font-size: clamp(1.875rem, 3.2vw, 2.25rem);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-12);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-8);
}

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

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

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

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

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

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

strong,
b {
  font-weight: 600;
}

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

hr {
  border: none;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  margin: var(--space-24) 0;
}

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

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

.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;
}

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

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

/* Layout Containers */

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

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

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

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

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

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

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

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

/* Grid Helpers */

.grid {
  display: grid;
}

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

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

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

/* Alignment & Text */

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

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

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

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

/* Spacing Utilities (limited set) */

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-12); }
.mt-md { margin-top: var(--space-24); }
.mt-lg { margin-top: var(--space-40); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-12); }
.mb-md { margin-bottom: var(--space-24); }
.mb-lg { margin-bottom: var(--space-40); }

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

/* Surface Utilities */

.surface {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
}

.surface-alt {
  background: var(--color-surface-alt);
}

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

/* Buttons (CTA & Secondary) */

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

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-green));
  color: #0b1120;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: rgba(15, 23, 42, 0.7);
  color: var(--color-text);
  border-color: rgba(148, 163, 184, 0.5);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background: rgba(15, 23, 42, 0.95);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
}

.btn-ghost:hover {
  color: var(--color-text);
  background: rgba(15, 23, 42, 0.7);
}

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

.btn:focus-visible {
  outline: 2px solid var(--color-accent-blue);
  outline-offset: 3px;
}

/* Form Elements */

.input,
.select,
.textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  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: rgba(148, 163, 184, 0.7);
}

.input:focus-visible,
.select:focus-visible,
.textarea:focus-visible {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary-soft);
  background: rgba(15, 23, 42, 0.95);
}

.textarea {
  min-height: 120px;
  resize: vertical;
}

input[disabled],
select[disabled],
textarea[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-label {
  display: block;
  margin-bottom: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text);
}

.form-help {
  margin-top: var(--space-4);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

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

/* Cards for services, events, packages */

.card {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 55%),
              radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.18), transparent 60%),
              rgba(15, 23, 42, 0.92);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.26);
  padding: var(--space-24);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.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-soft);
  border-color: rgba(249, 115, 22, 0.6);
}

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

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

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

/* Tags / Pills for event types, game labels */

.tag {
  display: inline-flex;
  align-items: 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(148, 163, 184, 0.5);
  color: var(--color-text-muted);
}

.tag--primary {
  border-color: rgba(249, 115, 22, 0.7);
  background: rgba(249, 115, 22, 0.08);
  color: var(--color-primary);
}

/* Badge for status ("Közelgő", "Foglalt", etc.) */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  font-weight: 500;
}

.badge--success {
  background: rgba(34, 197, 94, 0.15);
  color: var(--color-success);
}

.badge--warning {
  background: rgba(250, 204, 21, 0.15);
  color: var(--color-warning);
}

.badge--danger {
  background: rgba(239, 68, 68, 0.18);
  color: var(--color-danger);
}

/* Callout / Info box for rules & visitor info */

.callout {
  border-radius: var(--radius-lg);
  padding: var(--space-16);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.85);
  font-size: var(--font-size-sm);
}

.callout--accent {
  border-color: rgba(56, 189, 248, 0.8);
  background: rgba(15, 23, 42, 0.95);
}

/* Simple Chip Row for filters (event types, game types) */

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.chip {
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--color-text-muted);
  cursor: pointer;
  transition:
    background-color var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base);
}

.chip--active,
.chip:hover {
  background: rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.8);
  color: var(--color-text);
}

/* Navigation Shell (basic, can be extended per page) */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.8), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.site-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

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

.site-nav a {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-text);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding: var(--space-24) 0;
  background: rgba(2, 6, 23, 0.95);
}

.site-footer p {
  font-size: var(--font-size-sm);
}

/* Hero / Page Head (common pattern) */

.hero {
  padding-top: var(--space-80);
  padding-bottom: var(--space-64);
}

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

.hero-title {
  font-size: clamp(2.4rem, 4.6vw, 3.1rem);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-12);
}

.hero-subtitle {
  max-width: 36rem;
  font-size: var(--font-size-lg);
}

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

@media (max-width: 768px) {
  .hero {
    padding-top: var(--space-64);
    padding-bottom: var(--space-48);
  }
  .flex-between {
    flex-direction: column;
  }
}

/* Simple timeline list for booking steps */

.steps {
  list-style: none;
  padding-left: 0;
}

.step {
  position: relative;
  padding-left: 2rem;
  margin-bottom: var(--space-16);
}

.step:last-child {
  margin-bottom: 0;
}

.step::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0.2rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.25);
}

.step::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 1.4rem;
  bottom: -0.9rem;
  width: 1px;
  background: linear-gradient(to bottom, rgba(148, 163, 184, 0.8), transparent);
}

.step:last-child::after {
  display: none;
}

/* FAQ summary style hint (for <details>/<summary>) */

details {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  padding: var(--space-12) var(--space-16);
}

summary {
  list-style: none;
  cursor: pointer;
  font-weight: 500;
}

summary::-webkit-details-marker {
  display: none;
}

details[open] {
  border-color: rgba(249, 115, 22, 0.7);
}

details > *:not(summary) {
  margin-top: var(--space-8);
  font-size: var(--font-size-sm);
}

/* Badge for "Hoy Beheer B.V." category labels (e.g. "Csapatépítő", "Privát esemény") */

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

.category-label strong {
  color: var(--color-primary);
}
