/* ─────────────────────────────────────────────
   LAGUNA BOWLING – Enhanced Design System
   Aesthetic: Retro Neon Bowling Alley
   ───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Urbanist:wght@400;500;600;700;800&display=swap');

:root {
  --mouse-x: 50vw;
  --mouse-y: 30vh;

  /* Core Palette */
  --bg-0: #050d14;
  --bg-1: #081420;
  --bg-2: #0d1e30;
  --surface: rgba(10, 24, 38, 0.78);
  --surface-solid: #0e2238;
  --line: rgba(255, 255, 255, 0.11);
  --line-glow: rgba(255, 122, 24, 0.28);

  /* Typography */
  --text: #f0f6ff;
  --muted: #8aaac4;

  /* Accent Colors – neon bowling palette */
  --accent: #ff6a00;
  --accent-warm: #ff9a3c;
  --accent-soft: #ffb56b;
  --accent-cool: #00e5ff;
  --accent-cool-dim: #3ab8d4;
  --neon-pink: #ff2d6d;
  --neon-yellow: #ffe600;
  --ok: #00f077;

  /* Radii */
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;
  --radius-xl: 36px;

  /* Layout */
  --max: 1290px;

  /* Shadows */
  --shadow-1: 0 28px 72px rgba(2, 8, 16, 0.55);
  --shadow-accent: 0 0 40px rgba(255, 106, 0, 0.4), 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-cool: 0 0 40px rgba(0, 229, 255, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 106, 0, 0.72) var(--bg-0);
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Urbanist", sans-serif;
  background: var(--bg-0);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
}

/* ─── Lane-stripe texture overlay on body ─── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(90deg,
      transparent,
      transparent 120px,
      rgba(255, 255, 255, 0.012) 120px,
      rgba(255, 255, 255, 0.012) 122px);
  background-size: 100% 100%;
}

/* ─── Noise grain overlay ─── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.page-glow {
  position: fixed;
  bottom: -20vh;
  left: 0;
  right: 0;
  height: 60vh;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 106, 0, 0.22), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(var(--max), calc(100% - 2.6rem));
  margin: 0 auto;
}

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

/* ─────────────────────────────────────────────
   NAV
   ───────────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(var(--max), 96%);
  margin: 0;
  padding: 0.48rem 1.35rem;
  /* Tight, professional padding */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background: #050d15;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  isolation: isolate;
  overflow: visible;
}

/* Keep nav bar visible and readable while scrolling in every section/page. */
body .site-nav.is-scrolled {
  top: 0.6rem !important;
  border-color: rgba(255, 154, 60, 0.38) !important;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.66), inset 0 1px 0 rgba(255, 255, 255, 0.09) !important;
}

body .site-nav .nav-links a {
  color: #dce9f8;
}

body .site-nav.is-scrolled .nav-links a {
  color: #dce9f8;
}

body .site-nav .btn-nav {
  color: #f4f8ff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

body .site-nav.is-scrolled .btn-nav {
  color: #f4f8ff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  display: block;
  height: 48px;
  /* Perfectly balanced for the compact panel */
  width: auto;
  max-width: min(44vw, 160px);
  filter: drop-shadow(0 4px 14px rgba(255, 106, 0, 0.45));
  transition: all 0.3s ease;
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 4px 22px rgba(255, 106, 0, 0.7));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  /* Exact Kinder-Paradise gap */
  list-style: none;
  padding: 0;
  margin: 0 0 0 2rem;
  min-width: 0;
}

.nav-links li {
  flex-shrink: 1;
}

.nav-links a {
  color: var(--text);
  font-weight: 700;
  font-size: 0.94rem;
  /* Exact Kinder-Paradise font size for professional look */
  padding: 0.4rem 0.55rem;
  transition: all 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

/* Bowling / Snooker / Kinder dropdown v hlavičke */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 12rem;
  margin: 0.25rem 0 0;
  padding: 0.4rem 0;
  list-style: none;
  background: rgba(8, 20, 34, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 100;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li {
  margin: 0;
}

.nav-dropdown a {
  display: block;
  padding: 0.6rem 1.1rem;
  font-size: 0.95rem;
  white-space: nowrap;
  border-radius: 0;
}

.nav-dropdown a:hover {
  background: rgba(255, 106, 0, 0.12);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
  cursor: pointer;
}

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.78rem 1.4rem;
  font-weight: 800;
  font-family: "Urbanist", sans-serif;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-nav {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  font-size: 1.1rem;
  padding: 0.8rem 1.8rem;
}

.btn-primary {
  background: linear-gradient(115deg, #ff6a00 0%, #ff8c38 55%, #ffaf6a 100%);
  color: #1a0900;
  box-shadow: 0 8px 28px rgba(255, 106, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18) 0%, transparent 50%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 14px 40px rgba(255, 106, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

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

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 4.5rem 0 5.5rem;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 15% 20%, rgba(255, 106, 0, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 60% at 88% 18%, rgba(0, 229, 255, 0.18), transparent 50%),
    linear-gradient(190deg, var(--bg-2) 0%, var(--bg-1) 40%, var(--bg-0) 100%);
}

/* Video v hero – pod kickerom */
.hero-video {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin: 1.6rem 0 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* Interactive mouse spotlight */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(560px circle at var(--mouse-x) var(--mouse-y),
      rgba(0, 229, 255, 0.16),
      rgba(255, 106, 0, 0.08) 28%,
      transparent 58%);
}

/* Lane lines at bottom of hero */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg,
      transparent,
      transparent calc(100% / 6 - 1px),
      rgba(255, 154, 60, 0.15) calc(100% / 6 - 1px),
      rgba(255, 154, 60, 0.15) calc(100% / 6));
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
  -webkit-mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}

/* ─── Floating Orbs ─── */
.hero-orbs {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  animation: drift 16s ease-in-out infinite;
}

.orb-a {
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle at 38% 38%, rgba(255, 106, 0, 0.42), transparent 68%);
  top: -10rem;
  left: -10rem;
}

.orb-b {
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.35), transparent 70%);
  top: 14%;
  right: -8rem;
  animation-delay: -5s;
}

.orb-c {
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle at 30% 30%, rgba(255, 46, 109, 0.22), transparent 66%);
  bottom: 12%;
  left: 40%;
  animation-delay: -9s;
}

/* Bowling pin silhouettes – decorative */
.hero-orbs::before,
.hero-orbs::after {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 90'%3E%3Cellipse cx='20' cy='78' rx='14' ry='10' fill='rgba(255,106,0,0.08)'/%3E%3Cellipse cx='20' cy='58' rx='9' ry='14' fill='rgba(255,106,0,0.08)'/%3E%3Ccircle cx='20' cy='22' r='14' fill='rgba(255,106,0,0.08)'/%3E%3Crect x='14' y='36' width='12' height='10' rx='2' fill='rgba(255,106,0,0.08)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 80px 180px;
  opacity: 0.6;
}

.hero-orbs::before {
  width: 180px;
  height: 300px;
  right: 6%;
  top: 28%;
  transform: rotate(-8deg);
  animation: drift 22s ease-in-out infinite;
  animation-delay: -3s;
}

.hero-orbs::after {
  width: 100px;
  height: 200px;
  left: 3%;
  bottom: 15%;
  transform: rotate(5deg);
  opacity: 0.3;
  animation: drift 18s ease-in-out infinite;
  animation-delay: -7s;
}

@keyframes drift {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  33% {
    transform: translate3d(6px, -14px, 0) scale(1.03);
  }

  66% {
    transform: translate3d(-6px, -6px, 0) scale(0.98);
  }
}

/* ─── Hero Layout ─── */
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 2.4rem;
  align-items: start;
  padding-top: 6.5rem;
}

/* ─── Typography Tokens ─── */
.kicker,
.section-tag,
.panel-title {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent-soft);
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.kicker::before,
.section-tag::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-copy h1,
.section-head h2,
.contact-grid h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  max-width: 14ch;
  background: linear-gradient(160deg, #ffffff 30%, rgba(255, 181, 107, 0.9) 70%, rgba(255, 106, 0, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  color: var(--muted);
  max-width: 55ch;
  margin: 1.3rem 0 0;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

/* ─── Info Chips ─── */
.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.info-chip {
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: rgba(5, 13, 22, 0.75);
  backdrop-filter: blur(8px);
  min-width: 13rem;
  position: relative;
  overflow: hidden;
}

.info-chip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 154, 60, 0.5), transparent);
}

.info-chip span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-chip strong {
  display: block;
  font-size: 1.05rem;
  margin-top: 0.1rem;
}

.status-chip strong {
  color: var(--ok);
}

.status-chip {
  border-color: rgba(0, 240, 119, 0.2);
}

/* ─── Hero Panel ─── */
.hero-panel {
  padding: 1.6rem;
  border: 1px solid rgba(255, 154, 60, 0.2);
  border-radius: var(--radius-l);
  background:
    linear-gradient(145deg,
      rgba(255, 106, 0, 0.14) 0%,
      rgba(0, 229, 255, 0.07) 40%,
      rgba(8, 20, 34, 0.90) 80%);
  box-shadow: var(--shadow-1), inset 0 1px 0 rgba(255, 154, 60, 0.12);
  position: relative;
  overflow: hidden;
}

/* Top accent line on panel */
.hero-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.6rem;
  right: 1.6rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-cool), transparent);
  border-radius: 0 0 4px 4px;
}

.hero-panel h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
}

.panel-reservation {
  display: grid;
  gap: 0.35rem;
  text-align: center;
}

.panel-reservation .panel-phone {
  margin-top: 0.15rem;
}

.panel-phone {
  display: block;
  line-height: 1.05;
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  color: var(--accent-cool);
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.panel-phone:hover {
  color: #fff;
}

.hero-panel h2 a {
  color: var(--accent-cool);
}

.panel-list {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 1.1rem;
  display: grid;
  gap: 0.6rem;
}

.panel-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-s);
  padding: 0.65rem 0.85rem;
  background: rgba(4, 12, 22, 0.65);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.panel-list li:hover {
  border-color: rgba(255, 154, 60, 0.25);
  background: rgba(255, 106, 0, 0.05);
}

.panel-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.panel-list strong {
  text-align: right;
  font-size: 0.96rem;
}

.link-inline {
  display: inline-flex;
  color: var(--accent-cool);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 2px;
}

.link-inline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent-cool);
  opacity: 0.4;
  transition: opacity 0.2s ease;
}

.link-inline:hover::after {
  opacity: 0.9;
}

/* ─── Hero: pravý stĺpec (Linky + panel) ─── */
.hero-side-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-links {
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(255, 154, 60, 0.2);
  border-radius: var(--radius-l);
  background: linear-gradient(145deg, rgba(255, 106, 0, 0.1) 0%, rgba(8, 20, 34, 0.92) 100%);
  box-shadow: var(--shadow-1);
  position: relative;
  overflow: hidden;
}

.hero-links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.4rem;
  right: 1.4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-cool), transparent);
  border-radius: 0 0 4px 4px;
}

.hero-links-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-soft);
}

.hero-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-links-list>li {
  margin: 0;
}

.hero-links-list>li:not(.hero-links-group)>a {
  display: block;
  width: 100%;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-s);
  background: rgba(4, 12, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.hero-links-list>li:not(.hero-links-group)>a:hover {
  color: #fff;
  border-color: rgba(255, 154, 60, 0.35);
  background: rgba(255, 106, 0, 0.08);
}

.hero-links-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-links-group .hero-links-group-title {
  display: block;
  width: 100%;
  padding: 0.6rem 0.9rem;
  box-sizing: border-box;
  font-size: 0.9rem !important;
  border-radius: var(--radius-s);
  background: rgba(4, 12, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero-links-group .hero-links-group-title:hover {
  color: #fff;
  border-color: rgba(255, 154, 60, 0.35);
  background: rgba(255, 106, 0, 0.08);
}

.hero-links-sublist {
  list-style: none;
  padding: 0.4rem 0 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  border-left: 2px solid rgba(255, 154, 60, 0.35);
  padding-left: 0.65rem;
}

.hero-links-sublist a {
  font-size: 0.85rem;
  padding: 0.5rem 0.65rem;
  display: block;
  text-align: center;
  border-radius: var(--radius-s);
  background: rgba(4, 12, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.hero-links-sublist a:hover {
  color: #fff;
  border-color: rgba(255, 154, 60, 0.35);
  background: rgba(255, 106, 0, 0.08);
}

/* ─────────────────────────────────────────────
   SECTIONS
   ───────────────────────────────────────────── */

.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 800px;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 0.5rem;
}

.section-head h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  background: linear-gradient(150deg, #ffffff 40%, rgba(255, 181, 107, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Aktuality ─── */
.aktuality-card {
  margin-top: 1.5rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(255, 154, 60, 0.2);
  border-radius: var(--radius-l);
  background: linear-gradient(145deg, rgba(255, 106, 0, 0.08) 0%, rgba(8, 20, 34, 0.92) 100%);
  box-shadow: var(--shadow-1);
  position: relative;
  overflow: hidden;
}

.aktuality-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.6rem;
  right: 1.6rem;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-cool), transparent);
  border-radius: 0 0 4px 4px;
}

.aktuality-card-title {
  margin: 0 0 0.6rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.aktuality-card-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.aktuality-card-title a:hover {
  color: var(--accent-soft);
}

.aktuality-card-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 60ch;
}

.aktuality-card .link-inline {
  margin-top: 0.25rem;
}

.aktuality-intro {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.aktuality-claim {
  margin: 0 0 1.25rem;
  padding: 1rem 1.25rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.12) 0%, rgba(58, 184, 212, 0.06) 50%, rgba(8, 20, 34, 0.7) 100%);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-left: 4px solid var(--accent-cool);
  border-radius: var(--radius-l);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.aktuality-claim-text {
  background: linear-gradient(120deg, #ffffff 0%, var(--accent-soft) 45%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ─────────────────────────────────────────────
   EXPERIENCE / FEATURE CARDS
   ───────────────────────────────────────────── */

.feature-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  background: rgba(6, 18, 30, 0.88);
  box-shadow: 0 20px 50px rgba(2, 8, 16, 0.45);
  transition: transform 0.35s cubic-bezier(.22, .61, .36, 1), box-shadow 0.35s ease, border-color 0.3s ease;
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.012);
  border-color: rgba(255, 106, 0, 0.3);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 106, 0, 0.12);
}

.feature-card-image {
  display: block;
  width: 100%;
  height: clamp(200px, 22vw, 260px);
  object-fit: cover;
  filter: saturate(1.1) brightness(0.9);
  transition: filter 0.4s ease, transform 0.5s cubic-bezier(.22, .61, .36, 1);
}

.feature-card:hover .feature-card-image {
  filter: saturate(1.2) brightness(1.0);
  transform: scale(1.04);
}

.feature-card-body {
  padding: 1.3rem;
  background: linear-gradient(180deg, rgba(6, 20, 34, 0.92), rgba(4, 14, 24, 0.98));
  min-height: 14rem;
  display: flex;
  flex-direction: column;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.52rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  color: #fff;
}

.feature-card p {
  color: var(--muted);
  margin: 0.65rem 0 1rem;
  font-size: 0.97rem;
}

.feature-card a {
  color: var(--accent-cool);
  font-weight: 700;
  margin-top: auto;
  width: fit-content;
  font-size: 0.91rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}

.feature-card a::after {
  content: "→";
}

.feature-card a:hover {
  gap: 0.55rem;
}

.feature-credits {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  opacity: 0.7;
}

.feature-credits a {
  color: #c4d9ee;
  border-bottom: 1px solid rgba(196, 217, 238, 0.28);
}

/* ─────────────────────────────────────────────
   PRICING
   ───────────────────────────────────────────── */

.section-pricing {
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 229, 255, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(8, 22, 36, 0.9), transparent);
}

.section-pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg,
      transparent,
      transparent 80px,
      rgba(255, 255, 255, 0.015) 80px,
      rgba(255, 255, 255, 0.015) 81px);
}

.section-pricing>.container {
  position: relative;
}

.pricing-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  align-items: start;
}

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

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 1.1rem;
  background: rgba(6, 18, 30, 0.82);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  height: min-content;
}

.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

.price-card h3 {
  margin: 0 0 0.2rem;
  font-size: 1.62rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
  color: #fff;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 1rem;
  display: grid;
  gap: 0;
}

.price-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.price-card li:last-child {
  border-bottom: none;
}

.price-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.price-card strong {
  text-align: right;
  font-size: 1.05rem;
  color: #ffe4c0;
  font-weight: 800;
  white-space: nowrap;
}

/* Scoreboard digit style for prices */
.price-card strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--accent-soft);
}

.price-card.highlight {
  background: linear-gradient(145deg, rgba(255, 106, 0, 0.2) 0%, rgba(255, 46, 109, 0.08) 50%, rgba(8, 20, 34, 0.88) 100%);
  border-color: rgba(255, 106, 0, 0.3);
  box-shadow: 0 0 40px rgba(255, 106, 0, 0.1);
}

.price-card.highlight::before {
  background: linear-gradient(90deg, var(--accent), var(--neon-pink));
  opacity: 1;
}

.price-card.highlight h3 {
  color: var(--accent-soft);
}

.price-card.highlight p {
  color: #ffeacc;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0.8rem 0 1.2rem;
}

/* ─────────────────────────────────────────────
   CLUB SECTION
   ───────────────────────────────────────────── */

.section-club {
  position: relative;
}

.club-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.club-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 1.4rem;
  background: linear-gradient(150deg, rgba(0, 229, 255, 0.07) 0%, rgba(6, 18, 30, 0.88) 60%);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.club-card:hover {
  border-color: rgba(0, 229, 255, 0.22);
  transform: translateY(-3px);
}

.club-card h3 {
  margin: 0;
  font-size: 1.62rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
  color: #fff;
}

.club-card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.club-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.club-list li {
  position: relative;
  padding-left: 1.6rem;
  color: #cfe0f4;
  font-size: 0.97rem;
}

.club-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--accent-cool);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

.club-note {
  margin-top: 1rem;
  border: 1px solid rgba(255, 106, 0, 0.22);
  border-radius: var(--radius-l);
  background: linear-gradient(130deg, rgba(255, 106, 0, 0.15) 0%, rgba(8, 20, 34, 0.88));
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.08);
}

.club-note p {
  margin: 0;
  color: #ffe5c8;
  max-width: 65ch;
  font-size: 1.02rem;
}

/* ─────────────────────────────────────────────
   HOURS
   ───────────────────────────────────────────── */

.hours-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.1rem;
}

.hours-card,
.events-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 1.2rem;
  background: rgba(6, 18, 30, 0.8);
}

.hours-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.hours-card li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-s);
  padding: 0.7rem 0.9rem;
  color: var(--muted);
  transition: background 0.2s ease, border-color 0.2s ease;
  font-size: 0.97rem;
}

.hours-card li.active {
  border-color: rgba(0, 240, 119, 0.45);
  background: rgba(0, 240, 119, 0.08);
  color: #d0ffe5;
  box-shadow: 0 0 16px rgba(0, 240, 119, 0.1);
}

.hours-card li.active span {
  font-weight: 700;
}

.hours-card strong {
  color: var(--text);
  font-size: 1rem;
}

.events-card h3 {
  margin: 0;
  font-size: 1.5rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
}

.events-card p {
  margin: 0.8rem 0 1.1rem;
  color: var(--muted);
}

.events-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* ─────────────────────────────────────────────
   CONTACT
   ───────────────────────────────────────────── */

.section-contact {
  padding-top: 2.4rem;
  padding-bottom: 5rem;
}

.contact-grid {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(0, 229, 255, 0.1), transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(255, 106, 0, 0.15), transparent 60%),
    rgba(8, 20, 34, 0.9);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  box-shadow: var(--shadow-1);
  position: relative;
  overflow: hidden;
}

.contact-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.5), rgba(0, 229, 255, 0.4), transparent);
}

.contact-grid h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  background: linear-gradient(150deg, #fff 40%, rgba(255, 181, 107, 0.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-lead {
  color: #c8ddf2;
  font-size: 1.04rem;
  line-height: 1.8;
}

.contact-cards {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-m);
  padding: 1rem 1.1rem;
  min-height: 5.2rem;
  background: rgba(4, 12, 22, 0.65);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.contact-card:hover {
  border-color: rgba(255, 106, 0, 0.35);
  background: rgba(255, 106, 0, 0.06);
  transform: translateX(4px);
}

.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-card strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.05rem;
}

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */

.site-footer {
  padding: 1.8rem 1rem 2.6rem;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.5), transparent);
}

/* ─────────────────────────────────────────────
   REVEAL ANIMATIONS
   ───────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.982);
  transition: opacity 0.6s cubic-bezier(.22, .61, .36, 1), transform 0.6s cubic-bezier(.22, .61, .36, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger children within feature-grid and pricing-grid */
.feature-grid .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.feature-grid .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.pricing-grid .reveal:nth-child(2) {
  transition-delay: 0.06s;
}

.pricing-grid .reveal:nth-child(3) {
  transition-delay: 0.12s;
}

.pricing-grid .reveal:nth-child(4) {
  transition-delay: 0.18s;
}

/* ─────────────────────────────────────────────
   STATS (if used elsewhere)
   ───────────────────────────────────────────── */

.stats {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.stats article {
  border: 1px solid var(--line);
  background: rgba(6, 18, 30, 0.72);
  border-radius: var(--radius-m);
  padding: 1rem;
}

.stat-value {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--accent-soft);
}

.stat-label {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ─────────────────────────────────────────────
   RULES (subpages)
   ───────────────────────────────────────────── */

.section-rules {
  position: relative;
}

.rules-card-main {
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(1rem, 2.8vw, 1.6rem);
  background: linear-gradient(155deg, rgba(255, 106, 0, 0.14), rgba(9, 24, 39, 0.9) 50%);
  box-shadow: var(--shadow-1);
}

.rules-list-main {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.72rem;
}

.rules-list-main li {
  position: relative;
  padding-left: 1.9rem;
  color: #dce9fa;
  font-size: 1.02rem;
  line-height: 1.55;
}

.rules-list-main li strong {
  color: var(--accent-soft);
}

.rules-list-main li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.44rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #fff 18%, #ff4060 22%);
  box-shadow: 0 0 0 4px rgba(255, 64, 96, 0.18);
}

.rules-actions {
  margin-top: 1rem;
}

/* ─────────────────────────────────────────────
   SCROLLBAR
   ───────────────────────────────────────────── */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-0);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 106, 0, 0.4);
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 106, 0, 0.7);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */

@media (max-width: 1180px) {
  .site-nav {
    flex-wrap: wrap;
  }

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

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }

  .nav-links.open {
    max-height: min(70vh, 32rem);
    overflow-y: auto;
    padding: 0.4rem 0 0.2rem;
  }

  .nav-links a {
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-s);
  }

  .nav-item-dropdown .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin: 0.25rem 0 0 1rem;
    padding: 0.25rem 0 0.25rem 0.75rem;
    min-width: 0;
    border: none;
    border-left: 2px solid rgba(255, 154, 60, 0.4);
    background: transparent;
    box-shadow: none;
  }

  .nav-dropdown a {
    padding: 0.4rem 0;
  }

  .btn-nav {
    margin-left: auto;
  }

  .btn-nav.hidden-mobile {
    display: none;
  }

  .hero-grid,
  .feature-grid,
  .club-grid,
  .pricing-grid,
  .hours-grid,
  .contact-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 3.5rem;
  }

  .hero-grid {
    padding-top: 8rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 15vw, 5rem);
  }

  /* Mobil: video → Rezervácie → Zaujímavé linky (desktop zostáva ako je) */
  .hero-copy {
    order: 0;
  }

  .hero-side-col {
    order: 1;
    display: flex;
    flex-direction: column;
  }

  .hero-panel {
    order: 0;
  }

  .hero-links {
    order: 1;
  }

  .btn-nav {
    display: none;
  }

  .section {
    padding: 3.6rem 0;
  }

  .feature-card-image {
    height: clamp(180px, 48vw, 250px);
  }
}

@media (max-width: 540px) {
  .hero-info {
    flex-direction: column;
  }

  .info-chip {
    min-width: 0;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-grid {
    padding: 1.2rem;
  }

  .hero-links-sublist {
    grid-template-columns: 1fr;
  }
}

/* ─── Nav Social Icons ─── */
.nav-social {
  display: flex;
  gap: 0.65rem;
  margin-left: auto;
  /* Push social icons and reservation button to the far right */
  margin-right: 1.2rem;
  align-items: center;
  height: 100%;
}

.nav-social a {
  color: #fff;
  font-size: 1.35rem;
  opacity: 0.72;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-social a:hover {
  opacity: 1;
  color: var(--accent);
  transform: translateY(-2px);
}

@media (max-width: 765px) {
  .nav-social {
    display: none;
  }
}

/* ─── Security/Ghost Fix ─── */
/* Forcefully hide any common auto-translation or ghost elements if they appear */
#google_translate_element,
.goog-te-banner-frame,
.sk-en-de-switcher,
/* potential custom name */
#lang-switcher {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-copy h1,
  .section-head h2,
  .contact-grid h2 {
    -webkit-text-fill-color: var(--text);
  }
}

/* ─── Section Background Watermark ─── */
.section {
  position: relative;
  isolation: isolate;
}

.section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  max-width: 80%;
  height: 400px;
  background: url('assets/logo.png') center/contain no-repeat;
  opacity: 0.035;
  pointer-events: none;
  z-index: -1;
  filter: grayscale(1) brightness(1.5);
}