@font-face {
  font-family: 'Nexa';
  src: url('../fonts/Nexa-Heavy.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nexa';
  src: url('../fonts/Nexa-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

:root {
  --black:   #050505;
  --dark:    #0f0f0f;
  --surface: #161616;
  --border:  #2a2a2a;
  --muted:   #555;
  --silver:  #888;
  --light:   #ccc;
  --white:   #f0f0f0;
  --red:     #e0000f;

  --font-display: 'Nexa', sans-serif;
  --font-body:    'Nexa', sans-serif;
  --nav-height:   80px;
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 200;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── HEADER / NAV – CENTROVANÉ ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-logo img { height: 56px; width: auto; mix-blend-mode: screen; position: relative; z-index: 1001; }
.nav-logo-img { height: 56px; width: auto; mix-blend-mode: screen; position: relative; z-index: 1001; }
.site-header { overflow: visible; }
.site-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.site-nav a {
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  transition: color var(--transition);
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width var(--transition);
}
.site-nav a:hover,
.site-nav a.active { color: var(--white); }
.site-nav a:hover::after { width: 100%; }

.nav-auth {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.nav-btn {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--border);
  color: var(--white);
  cursor: pointer;
  background: none;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-btn:hover { border-color: var(--white); }
.nav-btn.primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.nav-btn.primary:hover { background: #c0000d; border-color: #c0000d; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.4s ease;
}
.hamburger span:nth-child(1) { width: 28px; }
.hamburger span:nth-child(2) { width: 20px; }
.hamburger span:nth-child(3) { width: 24px; }
.hamburger.open span:nth-child(1) { width: 28px; transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { width: 28px; transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 7vw, 48px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu a:hover { color: var(--red); }

/* ─── HERO ─── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video,
.hero-video-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: grayscale(50%);
}
.hero-video-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.8) 100%);
}
.hero-logo {
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: 75%;
  opacity: 0;
  mix-blend-mode: screen;
  animation: heroFadeIn 1.8s ease 0.4s forwards, neonFlicker 8s ease-in-out 3s infinite;
}
@keyframes heroFadeIn {
  0% { opacity: 0; transform: scale(0.94); }
  100% { opacity: 1; transform: scale(1); }
}

/* Jemný neon flicker – bliká raz za ~8s, nenápadne */
@keyframes neonFlicker {
  0%   { opacity: 1; }
  92%  { opacity: 1; }
  93%  { opacity: 0.6; }
  94%  { opacity: 1; }
  95%  { opacity: 0.75; }
  96%  { opacity: 1; }
  97%  { opacity: 0.9; }
  100% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo { animation: heroFadeIn 1.8s ease 0.4s forwards !important; }
}
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeIn 1s ease 2s forwards;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ─── SEKCIE ─── */
.section { padding: 100px 56px; }
.section-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-weight: 200;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 56px);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 48px;
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── GALÉRIA (presne ako jatocim.sk, -30%) ─── */
.gallery-section { padding: 100px 56px; background: var(--dark); text-align: center; }
.gallery-header { text-align: center; margin-bottom: 48px; }
.portfolio-grid-wrap {
  position: relative;
}
.portfolio-grid-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--dark));
  pointer-events: none;
  z-index: 2;
}
.portfolio-grid { width: 100%; }
.portfolio-grid-sizer { width: 16.666%; }
.portfolio-item {
  width: 16.666%;
  padding: 4px;
  float: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--transition), filter 0.5s ease;
  filter: grayscale(15%);
}
.portfolio-item:hover img { transform: scale(1.04); filter: grayscale(0); }
.portfolio-item-overlay {
  position: absolute;
  inset: 4px;
  background: rgba(5,5,5,0.55);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
}
.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
.portfolio-item-info {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(5,5,5,0.75);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  color: var(--white);
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.portfolio-show-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  clear: both;
}
.show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--border);
  padding: 16px 48px;
  cursor: pointer;
  background: none;
  font-family: var(--font-body);
  transition: var(--transition);
}
.show-more-btn:hover { border-color: var(--white); }

/* ─── LIGHTBOX ─── */
.rp-lightbox {
  position: fixed; inset: 0;
  z-index: 9000;
  background: rgba(5,5,5,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.rp-lightbox.active { opacity: 1; pointer-events: all; }
.rp-lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
}
.rp-lb-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none; border: none;
  color: var(--white); font-size: 36px;
  cursor: pointer; opacity: 0.6;
  transition: opacity 0.3s;
}
.rp-lb-close:hover { opacity: 1; }
.rp-lb-prev, .rp-lb-next {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 20px;
  transition: var(--transition);
}
.rp-lb-prev { left: 24px; }
.rp-lb-next { right: 24px; }
.rp-lb-prev:hover, .rp-lb-next:hover { background: var(--white); color: var(--black); }

/* ─── CTA SEKCIA ─── */
.cta-section {
  padding: 120px 56px;
  background: var(--black);
  text-align: center;
}
.cta-section .section-title { margin-bottom: 16px; }
.cta-subtitle {
  font-size: 14px;
  font-weight: 200;
  color: var(--silver);
  letter-spacing: 0.08em;
  margin-bottom: 56px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 18px 56px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: none;
  color: var(--white);
  transition: var(--transition);
  text-decoration: none;
}
.cta-btn:hover { border-color: var(--white); }
.cta-btn.cta-primary {
  background: var(--red);
  border-color: var(--red);
}
.cta-btn.cta-primary:hover { background: #c0000d; border-color: #c0000d; }

/* ─── REZERVÁCIA STRÁNKA ─── */
.booking-page {
  padding-top: var(--nav-height);
  min-height: 100vh;
  background: var(--black);
}
.booking-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px;
}
.booking-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  text-align: center;
}
.booking-subtitle {
  font-size: 13px;
  font-weight: 200;
  color: var(--silver);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 56px;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Kalendár */
.rp-calendar {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
}
.rp-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.rp-cal-month {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.rp-cal-nav {
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px;
  transition: var(--transition);
}
.rp-cal-nav:hover { border-color: var(--white); }
.rp-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.rp-cal-day-name {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 8px 0;
  font-weight: 200;
}
.rp-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 200;
  color: var(--light);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  border-radius: 2px;
}
.rp-cal-day:hover:not(.disabled):not(.empty) { border-color: var(--border); color: var(--white); }
.rp-cal-day.selected { background: var(--red); border-color: var(--red); color: var(--white); }
.rp-cal-day.today { border-color: var(--silver); }
.rp-cal-day.disabled { color: var(--muted); cursor: not-allowed; opacity: 0.4; }
.rp-cal-day.empty { cursor: default; }
.rp-cal-day.booked { color: var(--muted); cursor: not-allowed; text-decoration: line-through; opacity: 0.4; }

/* Časové sloty */
.rp-slots { display: flex; flex-direction: column; gap: 24px; }
.rp-slots-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.rp-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.rp-slot {
  padding: 12px 8px;
  border: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 0.05em;
  color: var(--light);
  cursor: pointer;
  transition: var(--transition);
}
.rp-slot:hover:not(.taken) { border-color: var(--white); color: var(--white); }
.rp-slot.selected { background: var(--red); border-color: var(--red); color: var(--white); }
.rp-slot.taken { color: var(--muted); cursor: not-allowed; opacity: 0.4; text-decoration: line-through; }

/* Formulár */
.rp-form { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.rp-form-group { display: flex; flex-direction: column; gap: 6px; }
.rp-form-group label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 200;
}
.rp-form-group input,
.rp-form-group textarea,
.rp-form-group select {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 200;
  padding: 12px 16px;
  width: 100%;
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.rp-form-group input:focus,
.rp-form-group textarea:focus { border-color: var(--silver); }
.rp-form-group textarea { min-height: 80px; resize: vertical; }
.rp-submit {
  margin-top: 8px;
  padding: 16px 32px;
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: var(--transition);
}
.rp-submit:hover { background: #c0000d; border-color: #c0000d; }
.rp-notice {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 200;
  border-left: 3px solid var(--red);
  background: rgba(224,0,15,0.08);
  color: var(--light);
}
.rp-notice.success { border-color: #2ecc71; background: rgba(46,204,113,0.08); }

/* ─── PRIHLÁSENIE / REGISTRÁCIA ─── */
.auth-page {
  padding-top: var(--nav-height);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  padding-bottom: 60px;
}
.auth-box {
  width: 100%;
  max-width: 480px;
  padding: 0 24px;
}
.auth-logo {
  text-align: center;
  margin-bottom: 40px;
}
.auth-logo img { height: 60px; margin: 0 auto; }
.auth-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin-bottom: 8px;
}
.auth-sub {
  font-size: 13px;
  font-weight: 200;
  color: var(--silver);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-switch {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 200;
  color: var(--silver);
  letter-spacing: 0.05em;
}
.auth-switch a { color: var(--white); border-bottom: 1px solid var(--border); transition: border-color var(--transition); }
.auth-switch a:hover { border-color: var(--white); }

/* ─── PROFIL ─── */
.profile-page {
  padding-top: var(--nav-height);
  min-height: 100vh;
  background: var(--black);
}
.profile-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px;
}
.profile-header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.profile-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--red);
  flex-shrink: 0;
}
.profile-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--white);
}
.profile-email {
  font-size: 13px;
  font-weight: 200;
  color: var(--silver);
  margin-top: 4px;
}
.profile-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.profile-tab {
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 14px 24px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font-body);
}
.profile-tab.active { color: var(--white); border-bottom-color: var(--red); }
.profile-tab:hover { color: var(--white); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Rezervácie zoznam */
.reservations-list { display: flex; flex-direction: column; gap: 12px; }
.reservation-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color var(--transition);
}
.reservation-item:hover { border-color: var(--silver); }
.res-date {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.05em;
}
.res-time {
  font-size: 12px;
  font-weight: 200;
  color: var(--silver);
  margin-top: 2px;
  letter-spacing: 0.05em;
}
.res-status {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid;
  font-weight: 200;
}
.res-status.confirmed { color: #2ecc71; border-color: #2ecc71; }
.res-status.pending   { color: #f39c12; border-color: #f39c12; }
.res-status.cancelled { color: var(--muted); border-color: var(--muted); }
.res-cancel {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}
.res-cancel:hover { border-color: var(--red); color: var(--red); }
.res-ics {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.res-ics:hover { border-color: #2ecc71; color: #2ecc71; }

/* ─── TRŽBY – FRONTEND ADMIN TAB ─── */
.rpt-fe-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.rpt-fe-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.rpt-fe-form-row1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.rpt-fe-form-row2 {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 10px;
  margin-bottom: 12px;
}
.rpt-fe-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 9px 12px;
  font-size: 13px;
  box-sizing: border-box;
  font-family: var(--font-body);
}
.rpt-fe-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-left: 3px solid;
  padding: 10px 14px;
}
.rpt-fe-btn-edit {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 6px 10px;
  cursor: pointer;
  font-size: 12px;
  flex-shrink: 0;
}
.rpt-fe-btn-del {
  background: none;
  border: 1px solid #c0392b;
  color: #c0392b;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 12px;
  flex-shrink: 0;
}

/* ─── FOOTER ─── */
.site-footer {
  padding: 40px 56px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 11px;
  font-weight: 200;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .booking-grid { grid-template-columns: 1fr; }
  .portfolio-item { width: 25%; }
  .portfolio-grid-sizer { width: 25%; }
}
@media (max-width: 768px) {
  body { cursor: auto; }
  .section { padding: 72px 20px; }
  .gallery-section { padding: 72px 20px; }
  .cta-section { padding: 80px 20px; }
  .site-header { padding: 0 20px; grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .nav-auth { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .hero-logo { width: 80%; }
  .portfolio-item { width: 33.333%; }
  .portfolio-grid-sizer { width: 33.333%; }
  .rp-slots-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-wrap { padding: 56px 20px; }
  .profile-wrap { padding: 40px 16px; }
  .profile-header { flex-direction: column; text-align: center; gap: 16px; margin-bottom: 32px; padding-bottom: 28px; }
  .profile-name { font-size: 22px; }
  .profile-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .profile-tabs::-webkit-scrollbar { display: none; }
  .profile-tab { padding: 12px 16px; font-size: 10px; white-space: nowrap; }
  .reservation-item { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px; }
  .reservation-item > div:last-child { width: 100%; flex-wrap: wrap; gap: 8px; }
  .res-cancel, .res-ics { flex: 1; text-align: center; justify-content: center; padding: 8px 12px; }
  .res-status { font-size: 9px; }
  /* Admin tab – prehľad dňa */
  .rp-admin-day-row { flex-direction: column !important; align-items: flex-start !important; gap: 6px !important; }
  .rp-admin-day-time { min-width: unset !important; font-size: 12px !important; }
  /* Admin tab – príjmy */
  .rp-admin-revenue { grid-template-columns: 1fr !important; }
  /* Tržby – karty, grafy, formulár */
  .rpt-fe-cards { grid-template-columns: 1fr !important; }
  .rpt-fe-charts { grid-template-columns: 1fr !important; }
  .rpt-fe-form-row1 { grid-template-columns: 1fr !important; }
  .rpt-fe-form-row2 { grid-template-columns: 1fr !important; }
  .rpt-fe-item { flex-wrap: wrap; }
  .rpt-fe-item > div:first-child { width: 100%; }
  .rpt-fe-btn-edit, .rpt-fe-btn-del { padding: 8px 14px; font-size: 13px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .site-footer { flex-direction: column; gap: 16px; text-align: center; padding: 32px 20px; }
  .rp-lb-prev { left: 8px; }
  .rp-lb-next { right: 8px; }
}
@media (max-width: 480px) {
  .portfolio-item { width: 50%; }
  .portfolio-grid-sizer { width: 50%; }
  .rp-slots-grid { grid-template-columns: repeat(2, 1fr); }
  .auth-box { padding: 0 16px; }
}

/* ─── KONTAKTNÁ SEKCIA ─── */
.contact-section {
  padding: 100px 56px;
  background: var(--black);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-section .section-label { justify-content: center; }
.contact-section .section-title { text-align: center; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  width: 100%;
  margin: 40px auto 0;
}
.contact-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color var(--transition);
  text-align: left;
}
.contact-item:hover { border-color: var(--red); }
.contact-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.contact-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 200;
  margin-bottom: 6px;
}
.contact-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  display: block;
  word-break: break-word;
}
a.contact-value:hover { color: var(--red); }

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .contact-section { padding: 72px 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-item { padding: 24px 20px; }
}

/* ─── LIGHTBOX S INSTAGRAM BOXOM ─── */
.rp-lb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 90vw;
}
.rp-lb-content img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  display: block;
}
.rp-lb-instagram {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 24px;
  border-radius: 4px;
  color: var(--white);
  width: 100%;
  backdrop-filter: blur(8px);
}
.rp-lb-instagram svg { color: var(--red); flex-shrink: 0; }
.rp-lb-instagram a {
  font-size: 12px;
  font-weight: 200;
  color: var(--red);
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
.rp-lb-instagram a:hover { opacity: 0.7; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 48px 56px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-company {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.footer-logo { height: 44px; width: auto; }
.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--white);
  flex-shrink: 0;
}
.footer-company-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.footer-company-details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
}
.footer-company-details span {
  font-size: 12px;
  font-weight: 200;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  font-weight: 200;
  color: var(--silver);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--red); }
.footer-sep { color: var(--border); }
.footer-copy {
  font-size: 11px;
  font-weight: 200;
  color: var(--muted);
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .site-footer { padding: 40px 20px 28px; }
  .footer-company { flex-direction: column; gap: 16px; }
  .footer-company-details { flex-direction: column; gap: 4px; }
}

/* ─── CTA SPLIT 2 STĹPCE – ZAROVNANÉ RIADKY ─── */
.cta-split-section {
  display: flex;
  flex-direction: row;
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-col {
  flex: 1;
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cta-col-left  { background: var(--black); }
.cta-col-right { background: var(--dark); }
.cta-col-divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
  align-self: stretch;
}
.cta-col-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 200;
  margin: 0 0 20px;
}
.cta-col-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.5vw, 38px);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 0 0 20px;
}
.cta-col-desc {
  font-size: 14px;
  font-weight: 200;
  color: var(--silver);
  line-height: 1.8;
  margin: 0 0 36px;
  max-width: 360px;
}
.cta-col-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: auto;
}

@media (max-width: 900px) {
  .cta-split-section { flex-direction: column; }
  .cta-col-divider { display: none; }
  .cta-col { padding: 52px 24px; }
  .cta-col-right { border-top: 1px solid var(--border); }
}
