/* =========================================================
   Cyranova akademie — Premium dark theme se zlatými akcenty
   Inspirováno designem z v0.app
   ========================================================= */

:root {
  /* Premium DARK theme s gold akcenty (výchozí) */
  --background:        #131520;
  --foreground:        #f1efe9;
  --card:              #1a1c28;
  --secondary:         #232532;
  --secondary-30:      rgba(35, 37, 50, 0.4);
  --muted:             #232532;
  --muted-foreground:  #a8a59c;
  --primary:           #d4b673;
  --primary-hover:     #c2a35e;
  --primary-fg:        #131520;
  --primary-10:        rgba(212, 182, 115, 0.10);
  --primary-20:        rgba(212, 182, 115, 0.20);
  --primary-50:        rgba(212, 182, 115, 0.50);
  --border:            #2d2f3d;
  --header-bg:         rgba(19, 21, 32, 0.8);
  --hero-overlay-1:    rgba(19, 21, 32, 0.9);
  --hero-overlay-2:    rgba(19, 21, 32, 0.7);
  --radius:            0.5rem;
  --max-width:         1280px;
  --transition:        200ms ease;

  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
}

/* LIGHT theme — uplatní se když má <html> data-theme="light" */
[data-theme="light"] {
  --background:        #fbf9f4;   /* teplá krémová bílá */
  --foreground:        #1a1a1f;   /* hluboký charcoal */
  --card:              #ffffff;
  --secondary:         #f1ede4;   /* světlá teplá šedá */
  --secondary-30:      rgba(241, 237, 228, 0.6);
  --muted:             #f1ede4;
  --muted-foreground:  #6b6862;
  --primary:           #a8842f;   /* tmavší gold pro kontrast na světlém pozadí */
  --primary-hover:     #8f6f23;
  --primary-fg:        #ffffff;
  --primary-10:        rgba(168, 132, 47, 0.10);
  --primary-20:        rgba(168, 132, 47, 0.18);
  --primary-50:        rgba(168, 132, 47, 0.45);
  --border:            #e3ddcf;
  --header-bg:         rgba(251, 249, 244, 0.85);
  --hero-overlay-1:    rgba(20, 18, 12, 0.65);   /* hero zůstává tmavý kvůli čitelnosti na fotce */
  --hero-overlay-2:    rgba(20, 18, 12, 0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

::selection { background: var(--primary-20); color: var(--foreground); }

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

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-hover); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--foreground);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.6rem; font-weight: 500; }

p { margin-bottom: 1rem; color: var(--muted-foreground); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--foreground);
}

.brand img {
  height: 44px;
  width: auto;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}
.brand-text small {
  font-size: 0.7rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

@media (max-width: 640px) {
  .brand-text { display: none; }
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--muted-foreground);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--primary); }

/* CTA tlačítko v hlavní navigaci */
.nav-links .nav-cta a {
  color: var(--background);
  letter-spacing: 0.08em;
}
.nav-links .nav-cta a:hover { color: var(--background); }
.btn.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.72rem;
}

/* Letní camp — externí odkaz v navigaci (snadno odstranitelný) */
.nav-links .nav-camp a {
  color: var(--primary);
  border: 1px solid rgba(212, 182, 115, 0.4);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  letter-spacing: 0.1em;
  transition: all var(--transition);
}
.nav-links .nav-camp a:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(212, 182, 115, 0.1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--foreground);
}

/* Theme toggle button */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  transition: all var(--transition);
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.theme-toggle svg { width: 18px; height: 18px; }

.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }

[data-theme="light"] .theme-toggle .icon-sun  { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

@media (max-width: 980px) {
  .theme-toggle {
    position: absolute;
    right: 70px;
    top: 21px;
  }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--background);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: none;
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.75rem 0; }
  .nav-links .nav-camp a {
    text-align: center;
    border-radius: var(--radius);
    padding: 0.7rem 1rem;
  }
  .nav-links .nav-cta a {
    margin-top: 0.5rem;
    text-align: center;
    background: var(--primary);
    color: var(--background);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--primary-hover);
  color: var(--primary-fg);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--foreground);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0 0;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/hero.jpg") center/cover no-repeat;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--hero-overlay-1) 0%,
    var(--hero-overlay-2) 50%,
    var(--background) 100%
  );
  z-index: 1;
}

.hero .container { position: relative; z-index: 2; padding: 4rem 1.5rem; }
.hero h1 { color: #f1efe9; max-width: 900px; margin: 0 auto 1.5rem; }
.hero h1 .accent { color: var(--primary); }
.hero p {
  color: rgba(241, 239, 233, 0.85);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

[data-theme="light"] .hero p { color: rgba(241, 239, 233, 0.92); }
[data-theme="light"] .hero h1 .accent { color: #e8c378; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.section-head .eyebrow { letter-spacing: 0.2em; margin-bottom: 1rem; }

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 40px;
  border: 2px solid var(--primary-50);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
  animation: bounce 2s infinite;
}

.hero-scroll::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: var(--card);
  padding: 10rem 0 5rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-header h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.page-header p { font-size: 1.1rem; max-width: 720px; margin: 0 auto; }

/* ---------- Sections ---------- */
section {
  padding: 6rem 0;
  scroll-margin-top: 80px;   /* anchor links nesedi pod fixed header */
}
section.alt { background: var(--card); }

/* ---------- Map embed ---------- */
.map-embed {
  margin-top: 2rem;
  height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

@media (max-width: 768px) {
  .map-embed { height: 380px; }
}

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

.section-head { text-align: center; max-width: 740px; margin: 0 auto 4rem; }
.section-head p { font-size: 1.1rem; }

/* ---------- Grid layout ---------- */
.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: var(--primary-50);
  transform: translateY(-2px);
}

.card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background) 0%, transparent 60%);
  pointer-events: none;
}

.card-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
}

.card-badge.muted {
  background: var(--secondary);
  color: var(--muted-foreground);
}

.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 0.75rem; }
.card-body p { flex: 1; font-size: 0.95rem; }
.card-body .btn,
.card-body .link-more { align-self: flex-start; margin-top: 1rem; }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  transition: color var(--transition);
}

.link-more::after {
  content: "→";
  transition: transform var(--transition);
}

.link-more:hover { color: var(--primary-hover); }
.link-more:hover::after { transform: translateX(3px); }

.price-tag {
  font-family: var(--font-serif);
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 0.5rem;
  display: inline-block;
}

/* ---------- Feature list / values ---------- */
.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition);
}

.feature:hover { border-color: var(--primary-50); }

.feature .icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-10);
  border-radius: 50%;
  color: var(--primary);
  transition: background var(--transition);
}

.feature:hover .icon { background: var(--primary-20); }

.feature .icon svg { width: 28px; height: 28px; }
.feature h3 { margin-bottom: 0.75rem; }
.feature p { font-size: 0.95rem; line-height: 1.6; }

/* ---------- Two-column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col img { border-radius: var(--radius); }

@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Instructor card ---------- */
.instructor {
  text-align: center;
}

.instructor-avatar {
  position: relative;
  width: 192px;
  height: 192px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: border-color var(--transition);
}

.instructor:hover .instructor-avatar { border-color: var(--primary); }

.instructor-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.instructor h3 { margin-bottom: 0.25rem; }
.instructor .role {
  display: block;
  color: var(--primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.instructor p { font-size: 0.9rem; line-height: 1.7; }

/* ---------- Reviews / Testimonials ---------- */
.review {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2.5rem;
  position: relative;
  margin-top: 2rem;
}

.review::before {
  content: "“";
  position: absolute;
  top: -1.5rem;
  left: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--primary-fg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1;
  padding-bottom: 12px;
}

.review p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.review .author {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

/* ---------- Reviews list page (recenze.html) ---------- */
.reviews-filter-wrap { padding: 0 0 1.5rem; }
.reviews-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.rf-btn {
  background: transparent;
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all var(--transition);
}
.rf-btn:hover { border-color: var(--primary); color: var(--primary); }
.rf-btn.active {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}
.rf-count {
  display: inline-block;
  margin-left: 0.4rem;
  opacity: 0.7;
  font-weight: 600;
}

.reviews-grid-wrap { padding-top: 1rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem 1.75rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 182, 115, 0.5);
}
.review-tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(212, 182, 115, 0.12);
  color: var(--primary);
  border: 1px solid rgba(212, 182, 115, 0.35);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.review-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--foreground);
  margin: 0 0 1.25rem;
  flex: 1;
}
.review-card footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.review-card footer strong {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--foreground);
}
.review-date {
  font-size: 0.78rem;
  color: var(--muted-foreground);
  letter-spacing: 0.04em;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--card);
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-banner h2 { color: var(--foreground); }
.cta-banner p { color: var(--muted-foreground); max-width: 640px; margin: 1rem auto 2rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-item .icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-10);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item .icon svg { width: 20px; height: 20px; }

.contact-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  color: var(--foreground);
  font-weight: 500;
}

.contact-item p { margin: 0; font-size: 0.95rem; color: var(--muted-foreground); }
.contact-item a { color: var(--primary); }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---------- Form (zachováno – jen barvy přizpůsobíme dark tématu) ---------- */
.form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.form-field {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.form-field label .req { color: var(--primary); margin-left: 2px; }

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--secondary);
  color: var(--foreground);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted-foreground);
  opacity: 0.7;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-20);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4b673' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 18px;
  padding-right: 2.5rem;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.form-field-checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.form-field-checkbox label {
  color: var(--muted-foreground);
  cursor: pointer;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

/* ---------- Vision quote ---------- */
.quote {
  text-align: center;
  margin-top: 4rem;
}

.quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.4;
  color: var(--foreground);
  max-width: 900px;
  margin: 0 auto;
}

/* ---------- Banner (summer camp style) ---------- */
.banner {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-top: 4rem;
}

.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(19, 21, 32, 0.95) 0%,
    rgba(19, 21, 32, 0.8) 40%,
    rgba(19, 21, 32, 0.4) 100%);
}

.banner-content {
  position: relative;
  z-index: 1;
  padding: 4rem 3rem;
  max-width: 600px;
}

.banner-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  color: var(--foreground);
}

.banner-content p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 4rem 0 1.5rem;
  font-size: 0.9rem;
}

.site-footer h4 {
  color: var(--foreground);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand img { height: 36px; width: auto; }
.footer-brand span {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--foreground);
}

.site-footer p,
.site-footer li {
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* Sociální sítě v patičce */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted-foreground);
  transition: all var(--transition);
}
.social-links a:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.social-links svg {
  width: 18px;
  height: 18px;
}

.site-footer a {
  color: var(--muted-foreground);
  transition: color var(--transition);
}
.site-footer a:hover { color: var(--primary); }

.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 0.5rem; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.footer-bottom .legal {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-balance { text-wrap: balance; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }

/* Strukturované odrážky uvnitř textu podstránek */
.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
.bullets li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  transform: translateY(-50%);
}
.bullets li strong { color: var(--foreground); }

/* ============================================================ */
/* === PROMO: Cyranův letní camp ============================== */
/* Smazatelný blok — pro odstranění promo banneru z webu vymaž */
/* celou tuto sekci a HTML blok <!-- PROMO: START --> v        */
/* index.html.                                                  */
/* PROMO: START */
.camp-promo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.camp-promo-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.camp-promo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.28) saturate(0.85);
  transition: transform 0.6s ease, filter 0.4s ease;
  z-index: -2;
}
.camp-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
  z-index: -1;
  pointer-events: none;
}
.camp-promo-link:hover .camp-promo-bg {
  transform: scale(1.04);
  filter: brightness(0.34) saturate(0.95);
}
.camp-promo-inner {
  position: relative;
  text-align: center;
  padding: 7rem 1.5rem;
  color: #fff;
  max-width: 880px;
}
.camp-promo-pill {
  display: inline-block;
  background: rgba(212, 182, 115, 0.18);
  color: var(--primary);
  border: 1px solid rgba(212, 182, 115, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.5rem;
}
.camp-promo-inner h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.camp-promo-inner h2 .accent { color: var(--primary); }
.camp-promo-inner p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto 2rem;
}
.camp-promo-cta {
  pointer-events: none; /* celý banner je klikatelný */
}
.camp-promo-link:hover .camp-promo-cta {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 182, 115, 0.35);
}
@media (max-width: 720px) {
  .camp-promo-inner { padding: 5rem 1.5rem; }
}
/* PROMO: END */
/* ============================================================ */

/* Adjust body padding so fixed header doesn't overlap content */
main { padding-top: 0; }
