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

:root {
  /* Colors - Nightlife Luxury Palette */
  --color-bg-primary: #0a0e14; /* deep midnight */
  --color-bg-secondary: #151a1f; /* dark graphite */
  --color-bg-card: #1c232c; /* charcoal card */

  --color-text-primary: #f5efe6; /* warm ivory */
  --color-text-muted: #c0b7aa;
  --color-heading: #d4af37; /* electric gold */

  --color-primary: #ffb020; /* vibrant amber (CTAs) */
  --color-primary-hover: #c77700; /* dark orange */
  --color-accent: #2ec4b6; /* neon cyan */
  --color-accent-soft: #7a5cff; /* violet glow */

  --color-success: #37d99f;
  --color-warning: #ffcc66;
  --color-danger: #ff5c5c;

  --color-neutral-100: #f7f7f7;
  --color-neutral-200: #e3e3e3;
  --color-neutral-300: #c8c8c8;
  --color-neutral-400: #a0a0a0;
  --color-neutral-500: #777777;
  --color-neutral-600: #555555;
  --color-neutral-700: #404040;
  --color-neutral-800: #262626;
  --color-neutral-900: #141414;

  /* Typography */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", 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-md: 1.0625rem; /* 17px for slightly premium feel */
  --font-size-lg: 1.25rem;   /* 20px */
  --font-size-xl: 1.5rem;    /* 24px */
  --font-size-2xl: 1.875rem; /* 30px */
  --font-size-3xl: 2.25rem;  /* 36px */
  --font-size-4xl: 3rem;     /* 48px */

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

  /* Spacing scale (px) */
  --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-8: 2rem;     /* 32px */
  --space-10: 2.5rem;  /* 40px */
  --space-12: 3rem;    /* 48px */
  --space-16: 4rem;    /* 64px */
  --space-20: 5rem;    /* 80px */
  --space-24: 6rem;    /* 96px */

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

  /* Shadows - subtle cinematic glows */
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-ambient: 0 0 0 1px rgba(255, 255, 255, 0.02), 0 0 40px rgba(122, 92, 255, 0.28);

  /* Transitions */
  --transition-fast: 150ms ease-out;
  --transition-base: 220ms ease-out;
  --transition-slow: 320ms ease-out;
}

/* Motion preferences – keep the website comfortable for everyone */
@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0ms;
    --transition-base: 0ms;
    --transition-slow: 0ms;
  }

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


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

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

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

body {
  margin: 0;
}

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

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

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

img {
  height: auto;
}

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

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

textarea {
  resize: vertical;
}

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


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

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: var(--font-size-md);
  line-height: var(--line-height-normal);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
}

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

h1 {
  font-size: clamp(2.5rem, 3vw + 1.8rem, 3.5rem);
  margin-bottom: var(--space-4);
}

h2 {
  font-size: clamp(2rem, 2.3vw + 1.3rem, 2.75rem);
  margin-bottom: var(--space-3);
}

h3 {
  font-size: clamp(1.5rem, 1.5vw + 1rem, 2rem);
  margin-bottom: var(--space-2);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
}

h5 {
  font-size: 1.1rem;
  margin-bottom: var(--space-1);
}

h6 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-1);
}

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

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

strong {
  font-weight: 600;
}

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

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

a:hover {
  color: var(--color-accent);
  text-shadow: 0 0 12px rgba(46, 196, 182, 0.45);
}

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

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

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


/* ==================================================================
   Accessibility: Focus States
   ================================================================== */

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

button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}


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

/* Layout: Container */

.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--space-4);
  max-width: 1200px;
}

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

/* Flex helpers */

.flex {
  display: flex;
}

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

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

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

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

/* Grid helpers */

.grid {
  display: grid;
}

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

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

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

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

/* Utility spacing (for layout tweaks) */

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

.section-padding-lg {
  padding-block: var(--space-16);
}

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

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

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

.bg-primary {
  background-color: var(--color-bg-primary);
}

.bg-secondary {
  background-color: var(--color-bg-secondary);
}

.bg-card {
  background-color: var(--color-bg-card);
}

/* Subtle gradient overlay for hero / nightlife sections */

.overlay-gradient {
  position: relative;
}

.overlay-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.25), transparent 55%),
              radial-gradient(circle at bottom right, rgba(122, 92, 255, 0.35), transparent 60%);
  mix-blend-mode: screen;
}


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

/* Buttons */

.btn {
  --btn-bg: var(--color-primary);
  --btn-color: #050608;
  --btn-bg-hover: var(--color-primary-hover);
  --btn-shadow: var(--shadow-soft);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 55%)
              , var(--btn-bg);
  color: var(--btn-color);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--btn-shadow);
  transition: background var(--transition-base),
              transform var(--transition-fast),
              box-shadow var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base);
}

.btn:hover {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 55%)
              , var(--btn-bg-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-strong);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

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

.btn-secondary {
  --btn-bg: rgba(12, 18, 28, 0.9);
  --btn-bg-hover: rgba(21, 26, 31, 0.95);
  --btn-color: var(--color-text-primary);
  --btn-shadow: var(--shadow-ambient);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-outline {
  --btn-bg: transparent;
  --btn-bg-hover: rgba(255, 176, 32, 0.1);
  --btn-color: var(--color-text-primary);
  --btn-shadow: none;
  border-color: rgba(255, 255, 255, 0.28);
}

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


/* Form Controls */

.input,
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(12, 18, 28, 0.92);
  color: var(--color-text-primary);
  font-size: var(--font-size-base);
  transition: border-color var(--transition-base),
              box-shadow var(--transition-base),
              background-color var(--transition-base),
              transform var(--transition-fast);
}

.input::placeholder,
textarea::placeholder {
  color: rgba(192, 183, 170, 0.7);
}

.input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(46, 196, 182, 0.7), 0 0 35px rgba(46, 196, 182, 0.28);
  outline: none;
  transform: translateY(-1px);
}

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

label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: var(--font-size-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

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

.form-hint {
  margin-top: 0.35rem;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

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


/* Cards – used for services like corporate events, poker nights, etc. */

.card {
  position: relative;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base),
              background var(--transition-base);
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg,
      rgba(212, 175, 55, 0.08),
      rgba(46, 196, 182, 0.04),
      rgba(122, 92, 255, 0.14));
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(255, 255, 255, 0.18);
}

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

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

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

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

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

.card-media {
  position: relative;
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.card-media img,
.card-media picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(10, 14, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--color-text-primary);
  font-size: var(--font-size-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* Tag / Pill for highlighting event types (VIP, firmowe, urodziny) */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(15, 22, 34, 0.9);
  font-size: var(--font-size-xs);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.badge-accent {
  border-color: rgba(46, 196, 182, 0.7);
  color: var(--color-accent);
}

.badge-gold {
  border-color: rgba(212, 175, 55, 0.9);
  color: var(--color-heading);
}


/* Section headers – used above blocks like "Eventy firmowe", "Wieczory pokerowe" */

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

.section-title {
  font-size: clamp(2rem, 1.6vw + 1.6rem, 2.6rem);
  margin-bottom: var(--space-3);
}

.section-description {
  max-width: 640px;
  color: var(--color-text-muted);
}


/* Hero overlay for cinematic photography */

.hero-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 20, 0.8), transparent 50%);
}


/* Navigation bar base style (minimal dark bar) */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: linear-gradient(to bottom, rgba(10, 14, 20, 0.95), rgba(10, 14, 20, 0.86));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}

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

.site-nav-link {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding-block: 0.35rem;
  position: relative;
}

.site-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-soft));
  transition: width var(--transition-base);
}

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

.site-nav-link:hover::after,
.site-nav-link[aria-current="page"]::after {
  width: 100%;
}


/* Testimonial base styling */

.testimonial {
  position: relative;
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(122, 92, 255, 0.2), transparent 65%),
              rgba(15, 21, 32, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.testimonial-quote {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
}

.testimonial-meta {
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}


/* FAQ base styling */

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: var(--space-4);
}

.faq-question {
  font-size: 1.05rem;
}

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


/* Helpers for immersive scroll sections */

.section-dark {
  background: radial-gradient(circle at top, rgba(122, 92, 255, 0.26), transparent 55%),
              var(--color-bg-primary);
}

.section-graphite {
  background-color: var(--color-bg-secondary);
}

.section-divider-soft {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}


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