/* ============================================================
   SHIN-KYO — Modern Light Edition
   Typografie: Cormorant Garamond (nadpisy) + DM Sans (text)
   Paleta: bílá #FFFFFF, světlá šedá #F5F4F2, antracit #1C1C1E,
           akcent zlatá #C9A84C, jemné stíny
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FFFFFF;
  --bg-soft: #F5F4F2;
  --bg-dark: #1C1C1E;
  --text: #1C1C1E;
  --text-muted: #6B6B6B;
  --accent: #C9A84C;
  --accent-dark: #A68632;
  --border: #E4E2DE;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10);
  --radius: 4px;
  --radius-lg: 12px;
  --nav-h: 68px;
  --max-w: 1120px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Utilities ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

section { padding-block: 80px; }
section:nth-child(even) { background: var(--bg-soft); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
}
.nav-logo-sub {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.15s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--accent);
  transition: right 0.2s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }

.nav-cta { margin-left: 16px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px;
  color: var(--text-muted);
  padding-block: 4px;
}
.mobile-menu a:hover { color: var(--accent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 55%),
    linear-gradient(225deg, rgba(28,28,30,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Dekorativní kaligrafický znak */
.hero-kanji {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(280px, 28vw, 420px);
  font-weight: 300;
  color: rgba(201,168,76,0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-slogan {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
  font-size: 13px;
  color: var(--text-muted);
}
.hero-location svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeInUp 1s ease 0.8s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.8); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  padding-block: 0;
  background: var(--bg-dark);
  color: #fff;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: var(--border);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* ============================================================
   BOJOVÁ UMĚNÍ
   ============================================================ */
.arts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.art-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.art-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.art-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.art-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.art-card:hover .art-card-img img { transform: scale(1.04); }

/* Placeholder gradient per discipline */
.art-img-aikido {
  background: linear-gradient(135deg, #2D3748 0%, #4A5568 40%, #C9A84C22 100%);
}
.art-img-karate {
  background: linear-gradient(135deg, #1A202C 0%, #2D3748 50%, #C9A84C22 100%);
}
.art-img-taichi {
  background: linear-gradient(135deg, #3D4A5A 0%, #5A7080 60%, #C9A84C22 100%);
}

.art-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.art-glyph {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 300;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  user-select: none;
}

.art-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.9);
  color: #fff;
  padding: 4px 10px;
  border-radius: 2px;
}

.art-card-body {
  padding: 28px;
}
.art-card-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.art-card-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.art-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  transition: gap 0.2s;
}
.art-card-link:hover { gap: 10px; }

/* ============================================================
   KONDICE & SEBEOBRANA
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

.feature-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: box-shadow 0.2s;
}
.feature-block:hover { box-shadow: var(--shadow-md); }

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.feature-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  align-items: flex-start;
}
.feature-list li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   NÁBOR / PŘIHLÁŠKA
   ============================================================ */
.nabor-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

/* Členské příspěvky */
.price-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-sm);
}
.price-card-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 400;
}
.price-card-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
}
.price-card-badge {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 3px 8px;
  border-radius: 2px;
  margin-left: 8px;
}
.price-amount {
  text-align: right;
}
.price-num {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.price-per {
  font-size: 11px;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  margin-top: 24px;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  color: var(--text);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.2s;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 16px;
}

/* Formulář */
.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.form-submit { width: 100%; justify-content: center; font-size: 15px; padding: 15px; }

/* ============================================================
   TÁBOR
   ============================================================ */
.tabor-card {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
}

.tabor-visual {
  background: linear-gradient(135deg, #2A3240 0%, #1C1C1E 60%, rgba(201,168,76,0.15) 100%);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.tabor-visual-glyph {
  font-family: var(--font-heading);
  font-size: 160px;
  color: rgba(201,168,76,0.12);
  font-weight: 300;
  line-height: 1;
  user-select: none;
}
.tabor-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  font-weight: 500;
}

.tabor-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.tabor-body .section-label { margin-bottom: 8px; }
.tabor-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}
.tabor-text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 28px;
}
.tabor-facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.tabor-fact {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.tabor-fact-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ============================================================
   NOVINKY / KALENDÁŘ
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding-block: 24px;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.2s;
}
.news-item:first-child { border-top: 1px solid var(--border); }
.news-item:hover { opacity: 0.75; }
.news-date {
  text-align: center;
  line-height: 1.1;
}
.news-day {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
}
.news-month {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.news-title-item {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}
.news-desc {
  font-size: 13px;
  color: var(--text-muted);
}
.news-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  background: var(--bg-soft);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* Kalendář */
.cal-widget {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cal-header {
  background: var(--bg-dark);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cal-month {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #fff;
  font-weight: 300;
}
.cal-nav {
  display: flex;
  gap: 8px;
}
.cal-nav-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.cal-dow {
  text-align: center;
  padding: 12px 4px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.cal-day {
  text-align: center;
  padding: 10px 4px;
  font-size: 13px;
  cursor: pointer;
  position: relative;
  transition: background 0.15s;
}
.cal-day:hover { background: var(--bg-soft); }
.cal-day.today {
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  margin: 4px;
  padding: 6px;
  font-weight: 500;
}
.cal-day.has-event::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.cal-day.today.has-event::after { background: #fff; }
.cal-day.empty { color: transparent; cursor: default; }
.cal-events {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cal-event-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
}
.cal-event-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}
.cal-event-name { font-weight: 500; }
.cal-event-time { color: var(--text-muted); font-size: 12px; }

/* ============================================================
   GALERIE
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.gallery-item:nth-child(4) { grid-column: 3 / 5; }

.gallery-img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.05); }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:first-child .gallery-placeholder { min-height: 380px; }

.gp1 { background: linear-gradient(135deg, #2D3748, #4A5568); }
.gp2 { background: linear-gradient(135deg, #3D4A5A, #5A7080); }
.gp3 { background: linear-gradient(135deg, #1C2D40, #2D3F55); }
.gp4 { background: linear-gradient(135deg, #2A3F35, #3D5A4D); }
.gp5 { background: linear-gradient(135deg, #3D3520, #5A4D2A); }
.gp6 { background: linear-gradient(135deg, #251C2D, #3D2845); }
.gp7 { background: linear-gradient(135deg, #1C2030, #2D3050); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.25); }
.gallery-overlay-icon {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s;
  color: #fff;
  font-size: 24px;
}
.gallery-item:hover .gallery-overlay-icon { opacity: 1; transform: scale(1); }

.gallery-glyph {
  font-family: var(--font-heading);
  font-size: 60px;
  color: rgba(255,255,255,0.15);
  font-weight: 300;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  margin-top: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.06));
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-item-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}
.contact-item-value a { color: var(--accent); }
.contact-item-value a:hover { text-decoration: underline; }

/* Mapa placeholder */
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  background: linear-gradient(135deg, #2D3748 0%, #3D4A5A 60%, #4A5568 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--border);
}
.map-inner {
  text-align: center;
  color: rgba(255,255,255,0.6);
}
.map-pin {
  font-size: 40px;
  margin-bottom: 12px;
  filter: hue-rotate(20deg);
}
.map-label {
  font-size: 14px;
  letter-spacing: 0.06em;
}
.map-overlay-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.map-link-btn {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
}
.map-link-btn:hover { background: rgba(255,255,255,0.2); }

/* Otvírací doby */
.opening-table {
  margin-top: 32px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.ot-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.ot-row {
  display: flex;
  justify-content: space-between;
  padding-block: 9px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.ot-day { color: var(--text-muted); }
.ot-time { font-weight: 500; }
.ot-time.closed { color: var(--text-muted); font-weight: 400; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.footer-brand-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 240px;
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-col-links a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo-small {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero { min-height: 85vh; }
  .hero-kanji { right: -80px; font-size: 220px; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .arts-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .nabor-layout { grid-template-columns: 1fr; gap: 40px; }
  .tabor-card { grid-template-columns: 1fr; }
  .tabor-visual { min-height: 200px; }
  .news-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: 1 / -1; grid-row: auto; }
  .gallery-item:nth-child(4) { grid-column: auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 560px) {
  section { padding-block: 56px; }
  .hero { min-height: 90dvh; padding-top: calc(var(--nav-h) + 40px); padding-bottom: 56px; }
  .hero-kanji { display: none; }
  .hero-title { font-size: 3.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 24px 16px; }

  .form-grid { grid-template-columns: 1fr; }
  .tabor-body { padding: 32px 24px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: 1; }
  .gallery-item:nth-child(4) { grid-column: 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-heading { font-size: 1.9rem; }
}
