/* ===================================================
   Kemp Vysočina – Modern Design 2026
   =================================================== */

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

:root {
  --primary:   #1a6fa8;
  --accent:    #f0a500;
  --dark:      #1c2a38;
  --light:     #f5f8fc;
  --text:      #333d47;
  --muted:     #6b7a8d;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,0.10);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5eaf0;
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo img {
  height: 44px;
  display: block;
}
.navbar-links {
  display: flex;
  gap: 8px;
  list-style: none;
}
.navbar-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.navbar-links a:hover { background: var(--light); color: var(--primary); }
.navbar-links a.active {
  background: var(--primary);
  color: #fff;
}
/* hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--dark);
  margin: 5px 0; border-radius: 2px; transition: 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/images/banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.hero-content {
  position: relative;
  max-width: 700px;
  padding: 60px 48px;
  background: rgba(255,255,255,0.93);
  border-radius: var(--radius);
  margin: 40px 48px;
  box-shadow: var(--shadow);
}
.hero-content .tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-content .date {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.hero-content p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }

/* ── SECTIONS ── */
section.section {
  padding: 80px 24px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
}
.section-accent { color: var(--primary); }

/* ── FEATURE CARDS ── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 36px 28px;
  border-top: 4px solid var(--primary);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.feature-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.feature-card p { color: var(--muted); font-size: 0.97rem; }

/* ── SPLIT SECTION ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
.split-text h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
}
.split-text p { color: var(--muted); margin-bottom: 24px; }

/* ── MAP SECTION ── */
.map-section { background: var(--light); }
#map {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  filter: grayscale(20%);
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--primary), #0d4f7c);
  color: #fff;
  text-align: center;
  padding: 72px 24px;
}
.cta-band h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.cta-band p { opacity: 0.85; font-size: 1.05rem; margin-bottom: 32px; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--accent); color: #fff; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.gallery-grid a { display: block; border-radius: 8px; overflow: hidden; }
.gallery-grid img {
  width: 100%; height: 180px;
  object-fit: cover; display: block;
  transition: transform 0.3s, filter 0.3s;
}
.gallery-grid a:hover img { transform: scale(1.05); filter: brightness(1.1); }

/* ── CONTACT ── */
.contact-bar {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  padding: 32px;
  background: var(--light);
  border-radius: var(--radius);
  margin-top: 48px;
}
.contact-bar a {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  transition: color 0.2s;
}
.contact-bar a:hover { color: var(--accent); }
.contact-bar .icon-wrap {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── FOOTER ── */
footer.site-footer {
  background: var(--dark);
  color: #8fa3b4;
  text-align: center;
  padding: 32px 24px;
  font-size: 0.9rem;
}
footer.site-footer a { color: #8fa3b4; text-decoration: none; }
footer.site-footer a:hover { color: #fff; }

/* ── INFO PAGE ── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.info-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 32px;
}
.info-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-card ul { padding-left: 20px; color: var(--muted); }
.info-card ul li { margin-bottom: 6px; }
.info-card p { color: var(--muted); }
.info-card address { font-style: normal; color: var(--muted); line-height: 1.9; }
.highlight-box {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px 32px;
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.highlight-box strong { font-size: 1.2rem; }
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── PRIHLASKA PAGE ── */
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.step-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
}
.step-card .step-num {
  width: 56px; height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 20px;
}
.step-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.step-card p { color: var(--muted); margin-bottom: 20px; }
.address-box {
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.8;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid #e5eaf0;
    box-shadow: var(--shadow);
    gap: 4px;
  }
  .navbar-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-content { margin: 20px; padding: 36px 28px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse { direction: ltr; }
  .info-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  #map { height: 280px; }
}
