/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0d1b2a;
  --navy2:  #1a2f45;
  --mid:    rgba(13,27,42,0.45);
  --light:  rgba(13,27,42,0.12);
  --bg:     #ffffff;
  --bg2:    #f5f6f8;
  --radius: 28px;
  --radius-sm: 14px;
  --font:   'Inter', system-ui, sans-serif;
  --tr:     0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--navy);
  min-height: 100vh;
  overflow-x: hidden;
}


/* ===== TOPBAR ===== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background: transparent;
  pointer-events: none;
}

.logo {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #FFD060;
  text-decoration: none;
  pointer-events: all;
}

.nav-kontakt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  pointer-events: all;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  padding: 9px 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: background 0.25s, box-shadow 0.25s;
}
.nav-kontakt:hover {
  background: rgba(255,255,255,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.4);
}

/* On subpages (white bg), revert to dark */
.subpage-body .logo { color: var(--navy); }
.subpage-body .nav-kontakt {
  color: var(--navy);
  background: rgba(13,27,42,0.07);
  border-color: rgba(13,27,42,0.18);
  box-shadow: none;
}
.subpage-body .nav-kontakt:hover { background: rgba(13,27,42,0.13); }

/* ===== HOME HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* SVG lines — above zones */
.connector-lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 10;
}
/* stroke styling je inline v SVG — tri vrstvy: glow + sklo + highlight */

/* ===== ZONE SECTIONS — clip-path matches SVG lines exactly =====
   SVG lines: centre (50%,50%) → left (0%,50%) | upper-right (100%,8%) | lower-right (100%,92%)
   All three zones cover the full hero and are clipped to their polygon.
   ================================================================ */
.zone {
  position: absolute;
  inset: 0;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

/* --- zoomed-in photo lives inside; clip-path contains it --- */
.zone__img {
  position: absolute;
  inset: -4%;
  width: 108%; height: 108%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  transform: translateZ(0);
}
.zone:hover .zone__img { transform: scale(1.05) translateZ(0); }

/* object-position nastavené podľa kompozície reálnych fotiek */
.zone__img--aktuality {
  top: -41%;
  left: -3%;
  bottom: auto;
  right: auto;
  width: 108%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.zone__img--prihlaska {
  top: 36%;
  left: -3%;
  bottom: auto;
  right: auto;
  width: 105%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.zone__img--galeria {
  top: 10%;
  right: -16%;
  bottom: auto;
  left: auto;
  width: 72%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* --- overlay --- */
.zone__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.45);
  transition: background 0.3s;
}
.zone:hover .zone__overlay { background: rgba(13,27,42,0.58); }

/* --- text --- */
.zone__content {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 22px;
  padding: 22px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.25);
}

.zone__label {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  transition: transform 0.3s ease;
}

.zone--aktuality .zone__label { color: #FFD060; }
.zone--prihlaska .zone__label { color: #16A34A; }
.zone--galeria   .zone__label { color: #E8372E; }

.zone__title {
  font-size: clamp(2.7rem, 5.25vw, 4.8rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.0;
  display: block;
  transition: transform 0.3s ease;
}

.zone:hover .zone__label { transform: translateY(-6px); }
.zone:hover .zone__title { transform: translateY(-4px); }

/* ===== AKTUALITY — polygon: top strip + left half ===== */
/* Vertices: (0,0) (100,0) (100,8) (50,50) (0,50)        */
.zone--aktuality {
  clip-path: polygon(0% 0%, 100% 0%, 100% 8%, 50% 50%, 0% 50%);
  z-index: 2;
}
.zone--aktuality .zone__content {
  left: 5%;
  bottom: 55%;   /* stred hornej sekcie */
}

/* ===== PRIHLÁŠKA — polygon: bottom strip + left half ===== */
/* Vertices: (0,50) (50,50) (100,92) (100,100) (0,100)    */
.zone--prihlaska {
  clip-path: polygon(0% 50%, 50% 50%, 100% 92%, 100% 100%, 0% 100%);
  cursor: default;
  z-index: 2;
}
.zone--prihlaska .zone__content {
  left: 5%;
  top: 55%;      /* stred dolnej sekcie */
}

/* ===== FOTO GALÉRIA — trapézoid pravá half ===== */
.zone--galeria {
  clip-path: polygon(50% 0%, 100% 8%, 100% 92%, 50% 100%);
  z-index: 1;
}
.zone--galeria .zone__content {
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.zone--galeria .zone__title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.93;
}

/* Vstúpiť pill button */
.zone__btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 11px 24px 11px 20px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  width: fit-content;
  transition: background 0.3s, border-color 0.3s, transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.zone:hover .zone__btn {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

/* ===== LATEST NEWS STRIP ===== */
.latest-news {
  border-top: 1px solid rgba(13,27,42,0.08);
  padding: 64px 56px;
  background: var(--bg);
}

.latest-news__inner { max-width: 1240px; margin: 0 auto; }

.latest-news__heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 32px;
}

.news-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.news-card {
  border: 1.5px solid rgba(13,27,42,0.1);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-decoration: none;
  color: var(--navy);
  transition: border-color var(--tr), background var(--tr), transform var(--tr);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg);
}
.news-card:hover {
  border-color: rgba(13,27,42,0.3);
  background: var(--bg2);
  transform: translateY(-2px);
}

.news-card__date {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--mid);
  text-transform: uppercase;
}
.news-card__title { font-size: 1rem; font-weight: 800; line-height: 1.35; }
.news-card__excerpt { font-size: 0.84rem; color: var(--mid); line-height: 1.6; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(13,27,42,0.2);
  border-radius: 50px;
  padding: 11px 26px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--navy); background: rgba(13,27,42,0.04); }

/* ===== SUBPAGE SHELL ===== */
.subpage-body {
  min-height: 100vh;
  background: linear-gradient(135deg,
    rgba(91,191,186,0.18) 0%,
    rgba(125,181,200,0.12) 20%,
    rgba(255,217,102,0.10) 40%,
    rgba(109,207,170,0.12) 60%,
    rgba(212,86,122,0.10) 80%,
    rgba(232,136,136,0.15) 100%
  ), #f5f5f7;
  color: var(--navy);
}

.subpage-header {
  padding: 110px 56px 48px;
  max-width: 1240px;
  margin: 0 auto;
}

.subpage-header .overline {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 14px;
}
.subpage-header h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 0.98;
  color: var(--navy);
}

.subpage-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 56px 80px;
}

/* ===== AKTUALITY FEED PAGE ===== */
.feed-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px 60px;
}

.feed-page__overline {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #FFD060;
  margin-bottom: 6px;
  margin-top: 20px;
}

.feed-page__title {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 36px;
}

/* Feed posts */
.feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feed-post {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(13,27,42,0.07);
  border: 1px solid rgba(13,27,42,0.07);
  overflow: hidden;
  border-top: 4px solid var(--accent, #FFD060);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feed-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(13,27,42,0.12);
}

.feed-post__top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px 14px;
}

.feed-post__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.85;
}

.feed-post__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feed-post__author {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
}

.feed-post__date {
  font-size: 0.72rem;
  color: rgba(13,27,42,0.45);
  font-weight: 500;
}

.feed-post__body {
  padding: 0 22px 18px;
}

.feed-post__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.feed-post__title {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 8px;
}

.feed-post__excerpt {
  font-size: 0.88rem;
  color: rgba(13,27,42,0.6);
  line-height: 1.7;
}

.feed-post__footer {
  padding: 14px 22px 18px;
  border-top: 1px solid rgba(13,27,42,0.06);
}

.feed-post__btn {
  background: none;
  border: 1.5px solid;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.feed-post__btn:hover {
  background: rgba(13,27,42,0.05);
  transform: translateX(3px);
}

/* Article overlay */
.article-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 500;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  overflow-y: auto;
  padding: 40px 24px;
  animation: fadeIn 0.25s ease;
}
.article-overlay.open { display: flex; justify-content: center; align-items: flex-start; }
.article-overlay__box {
  background: #fff;
  border: 1.5px solid rgba(13,27,42,0.12);
  border-radius: var(--radius);
  max-width: 740px; width: 100%;
  overflow: hidden;
  animation: slideUp 0.3s ease;
  color: var(--navy);
}
.article-overlay__img { width: 100%; max-height: 380px; object-fit: cover; background: var(--bg2); }
.article-overlay__body { padding: 36px 40px 44px; }
.article-overlay__date {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mid); margin-bottom: 14px;
}
.article-overlay__title {
  font-size: 2rem; font-weight: 900; font-style: italic;
  line-height: 1.1; margin-bottom: 22px; color: var(--navy);
}
.article-overlay__text { font-size: 0.95rem; line-height: 1.8; color: rgba(13,27,42,0.7); }
.article-overlay__close {
  position: sticky; top: 16px; float: right; margin: 16px 16px 0 0;
  width: 40px; height: 40px;
  background: rgba(13,27,42,0.06); border: none; border-radius: 50%;
  color: var(--navy); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.article-overlay__close:hover { background: rgba(13,27,42,0.12); }

@keyframes fadeIn { from { opacity:0 } to { opacity:1 } }
@keyframes slideUp { from { transform:translateY(24px); opacity:0 } to { transform:translateY(0); opacity:1 } }

/* ===== GALERIA PAGE ===== */
.galeria-page {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 40px 80px;
}

/* Year tab bar */
.gy-year-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.gy-year-btn {
  background: #fff;
  border: 1.5px solid rgba(13,27,42,0.12);
  border-radius: 50px;
  color: var(--navy);
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 900;
  font-style: italic;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, color 0.2s;
  letter-spacing: -0.02em;
}
.gy-year-btn:hover { border-color: rgba(13,27,42,0.35); background: var(--bg2); transform: translateY(-2px); }
.gy-year-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* Albums wrapper */
.gy-albums-wrap { display: flex; flex-direction: column; gap: 48px; }

/* Group section */
.gy-group { }
.gy-group__header {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(13,27,42,0.08);
}
.gy-group__label {
  font-size: 1.1rem; font-weight: 900; font-style: italic; color: var(--navy);
}
.gy-group__count {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mid);
}
.gy-standalone-header { margin-top: 0; }

/* Album card row */
.gy-albums-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.gy-standalone-row {
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

/* Album card */
.gy-card {
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(13,27,42,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gy-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(13,27,42,0.16); }

.gy-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: rgba(13,27,42,0.06);
  overflow: hidden;
}
.gy-card--compact .gy-card__img-wrap { aspect-ratio: 16/10; }

.gy-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.gy-card:hover .gy-card__img { transform: scale(1.06); }

.gy-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.72) 0%, transparent 55%);
}

.gy-card__info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 18px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.gy-card__title {
  font-size: 1rem; font-weight: 800; color: #fff;
  line-height: 1.2;
}
.gy-card__day {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
}
.gy-card__count {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 600;
  background: rgba(13,27,42,0.92);
  overflow: hidden;
}
.lightbox.open { display: flex; flex-direction: column; }

.lightbox__box {
  display: flex; flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.lightbox__head {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.lightbox__title {
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  font-weight: 800; font-style: italic;
  color: #fff; letter-spacing: -0.02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 70%;
}
.lightbox__close {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,0.1); border: none; border-radius: 50%;
  color: #fff; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.22); }

/* Photo grid inside lightbox */
.lb-grid {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  grid-auto-rows: 170px;
  gap: 14px;
  align-content: start;
}
.lb-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: rgba(255,255,255,0.06);
  transition: transform 0.2s, opacity 0.2s;
}
.lb-thumb:hover { transform: scale(1.03); opacity: 0.88; }
.lb-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lb-loading {
  grid-column: 1/-1;
  text-align: center;
  color: rgba(255,255,255,0.5);
  padding: 60px 0;
  font-size: 0.9rem; font-weight: 600;
}

/* Fullscreen single photo */
.lb-full {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.96);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
}
.lb-full__img {
  max-width: 94vw; max-height: 94vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.8);
  user-select: none;
}
.lb-full__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: none; border-radius: 50%;
  width: 52px; height: 52px;
  color: #fff; font-size: 2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  z-index: 2;
}
.lb-full__nav:hover { background: rgba(255,255,255,0.26); }
.lb-full__nav--prev { left: 16px; }
.lb-full__nav--next { right: 16px; }
.lb-full__close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.12); border: none; border-radius: 50%;
  width: 44px; height: 44px;
  color: #fff; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.lb-full__close:hover { background: rgba(255,255,255,0.26); }

/* Download button – fullscreen view (top-right, left of close) */
.lb-full__dl {
  position: absolute; top: 16px; right: 68px;
  background: rgba(255,255,255,0.12); border-radius: 50%;
  width: 44px; height: 44px;
  color: #fff; cursor: pointer; text-decoration: none;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.lb-full__dl:hover { background: rgba(255,255,255,0.26); }

/* Download button – lightbox header (Stiahnuť album) */
.lightbox__actions {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.lb-dl-album-btn {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px; color: #fff; cursor: pointer;
  font-family: var(--font); font-size: 0.75rem; font-weight: 700;
  padding: 8px 16px;
  transition: background 0.2s;
  white-space: nowrap;
}
.lb-dl-album-btn:hover { background: rgba(255,255,255,0.22); }
.lb-dl-album-btn:disabled { opacity: 0.6; cursor: wait; }

/* Download button – thumbnail (shown on hover) */
.lb-thumb-dl {
  position: absolute; top: 6px; right: 6px;
  width: 30px; height: 30px;
  background: rgba(0,0,0,0.6); border-radius: 8px;
  color: #fff; text-decoration: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.18s, background 0.18s;
  z-index: 2;
}
.lb-thumb:hover .lb-thumb-dl { opacity: 1; }
.lb-thumb-dl:hover { background: rgba(0,0,0,0.85); }

/* ===== KONTAKT STRIP (homepage bottom) ===== */
.kontakt-strip {
  background: #f5f6f8;
  padding: 56px 56px 48px;
  border-top: 1px solid rgba(13,27,42,0.08);
}

.kontakt-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.kontakt-strip__overline {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4a7fc1;
  margin-bottom: 6px;
}

.kontakt-strip__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 28px;
}

.kontakt-strip__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.kstrip-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 22px;
  background: #fff;
  border: 1px solid rgba(13,27,42,0.1);
  border-radius: 16px;
  text-decoration: none;
  color: var(--navy);
  flex: 1 1 180px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.kstrip-card:hover {
  border-color: rgba(13,27,42,0.25);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(13,27,42,0.08);
}

.kstrip-card__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4a7fc1;
}

.kstrip-card__val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

/* ===== KONTAKT PAGE ===== */
.kontakt-wrap { display: flex; flex-direction: column; gap: 16px; max-width: 520px; }

.kontakt-item {
  display: flex; align-items: center; gap: 22px;
  border: 1.5px solid rgba(13,27,42,0.1);
  border-radius: var(--radius);
  padding: 26px 30px;
  text-decoration: none; color: var(--navy);
  transition: border-color var(--tr), transform var(--tr), background var(--tr);
  background: var(--bg);
}
.kontakt-item:hover { border-color: rgba(13,27,42,0.28); transform: translateX(4px); background: var(--bg2); }
.kontakt-item__icon {
  width: 50px; height: 50px;
  background: rgba(13,27,42,0.05); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.kontakt-item__label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mid); margin-bottom: 4px;
}
.kontakt-item__val { font-size: 1.05rem; font-weight: 800; color: var(--navy); }

/* ===== KONTAKT DARK PAGE ===== */
.kontakt-body {
  background: var(--navy);
  color: #fff;
}
.kontakt-body .logo { color: #FFD060; }
.kontakt-body .nav-kontakt {
  color: #fff;
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.3);
}

.kontakt-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 56px 60px;
}

.kontakt-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.kontakt-header {
  margin-bottom: 48px;
}

.kontakt-back {
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.kontakt-back:hover { color: #fff; }

.kontakt-overline {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #FFD060;
  margin-bottom: 10px;
}

.kontakt-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  align-items: start;
}

.kontakt-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kontakt-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 26px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.kontakt-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.28);
  transform: translateX(6px);
}

.kontakt-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFD060;
}

.kontakt-card__val {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.kontakt-map-wrap {
  height: 500px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}

.kontakt-map {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.kontakt-footer {
  border-top-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.35);
}

/* ===== BACK LINK ===== */
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mid);
  text-decoration: none; margin-bottom: 24px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--navy); }

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid rgba(13,27,42,0.07);
  padding: 26px 56px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: var(--mid);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { height: auto; }
  .connector-lines { display: none; }

  /* Na mobile: tri riadky pod sebou, každý s vlastnou výškou, clip-path reset */
  .zone {
    position: relative !important;
    inset: auto !important;
    clip-path: none !important;
    display: block;
    width: 100%;
    height: 38vh;
  }
  .zone__img { inset: 0; width: 100%; height: 100%; }

  .zone--aktuality .zone__content,
  .zone--prihlaska .zone__content,
  .zone--galeria   .zone__content {
    position: absolute;
    left: 28px; right: auto; bottom: 28px; top: auto;
    transform: none;
    text-align: left;
  }
  .zone--galeria .zone__title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .topbar { padding: 18px 24px; }
  .subpage-header, .subpage-content, .latest-news { padding-left: 24px; padding-right: 24px; }
  .galeria-page { padding: 90px 20px 60px; }
  .gy-albums-row { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
  .gy-standalone-row { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
  .lb-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); grid-auto-rows: 110px; }
  .lb-full__nav { display: none; }
  .site-footer { padding: 20px 24px; flex-direction: column; gap: 8px; text-align: center; }
}
