/* ===== TÉMA – světlejší, žlutější a profesionálnější ===== */
:root {
  --brand-gold: #ffe27a;
  --brand-gold-500: #ffd95a;
  --brand-gold-600: #f1c73a;
  --brand-gold-700: #bc8f00;

  --brand-gold-050: #fffef8;
  --brand-gold-100: #fff9e4;
  --brand-gold-150: #fff2bf;

  --brand-ink: #202633;
  --brand-muted: #5f6673;
  --brand-card-border: rgba(255, 226, 122, 0.22);

  --bs-primary: var(--brand-gold);
  --bs-primary-rgb: 255, 226, 122;

  --bs-link-color: #9a7300;
  --bs-link-hover-color: #7c5b00;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--brand-ink);
  background: #ffffff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  backdrop-filter: saturate(180%) blur(10px);
  background: rgba(255, 255, 255, 0.94) !important;
}

.navbar-brand .brand-logo {
  height: 56px;
  width: auto;
}

.nav-link {
  font-weight: 500;
  position: relative;
  padding-left: 0.95rem !important;
  padding-right: 0.95rem !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-gold-600);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

@media (max-width: 575.98px) {
  .navbar-brand .brand-logo {
    height: 44px;
  }
}

/* HERO */
.hero-light {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 620px at 10% -10%, rgba(255, 226, 122, 0.24), transparent 60%),
    radial-gradient(920px 460px at 100% 0%, rgba(255, 236, 160, 0.20), transparent 50%),
    linear-gradient(180deg, var(--brand-gold-050), #ffffff 46%);
}

.hero-light .brand-badge {
  --bs-badge-color: #7d5f00;
  --bs-border-color: rgba(255, 226, 122, 0.44);
  background-color: rgba(255, 226, 122, 0.16);
  padding: 0.55rem 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-pattern-light {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255, 226, 122, 0.08) 1px, transparent 1px),
    linear-gradient(300deg, rgba(255, 226, 122, 0.05) 1px, transparent 1px);
  background-size: 22px 22px, 22px 22px;
  mask-image: radial-gradient(1000px 500px at 50% 15%, #000, transparent 80%);
}

.hero .lead {
  max-width: 44rem;
}

.hero-actions {
  padding-top: 0.25rem;
}

.hero-btn {
  min-width: 205px;
  border-radius: 14px;
  padding: 0.8rem 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-btn:hover {
  transform: translateY(-1px);
}

/* TLAČÍTKA */
.btn-primary {
  --bs-btn-bg: var(--brand-gold);
  --bs-btn-border-color: var(--brand-gold);
  --bs-btn-hover-bg: var(--brand-gold-500);
  --bs-btn-hover-border-color: var(--brand-gold-500);
  --bs-btn-active-bg: var(--brand-gold-600);
  --bs-btn-active-border-color: var(--brand-gold-600);
  --bs-btn-color: #312400;
  box-shadow: 0 10px 22px rgba(255, 226, 122, 0.26);
}

.btn-outline-primary {
  --bs-btn-color: #8b6900;
  --bs-btn-border-color: rgba(255, 226, 122, 0.55);
  --bs-btn-hover-bg: rgba(255, 226, 122, 0.14);
  --bs-btn-hover-border-color: var(--brand-gold);
  --bs-btn-hover-color: #7e5d00;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 4px 10px rgba(255, 226, 122, 0.08);
}

/* Eyebrow */
.eyebrow {
  display: inline-block;
  color: var(--brand-gold-700);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.section-lead {
  max-width: 720px;
  font-size: 1.05rem;
}

/* „stat“ pilulky */
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 226, 122, 0.16);
  border: 1px solid rgba(255, 226, 122, 0.28);
  font-size: 0.925rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
}

.stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-gold-600);
  box-shadow: 0 0 0 2px rgba(255, 226, 122, 0.22);
}

/* HERO karta */
.hero-card {
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94));
  box-shadow:
    0 16px 38px rgba(31, 36, 48, 0.08),
    0 6px 18px rgba(255, 226, 122, 0.10) !important;
  border: 1px solid rgba(255, 226, 122, 0.14);
}

.feature {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.8rem 0;
}

.feature + .feature {
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(255, 236, 160, 0.34), rgba(255, 226, 122, 0.18));
  box-shadow:
    inset 0 0 0 1px rgba(255, 226, 122, 0.14),
    0 8px 18px rgba(255, 226, 122, 0.10);
  flex-shrink: 0;
}

/* SEKCE */
.section {
  padding: 78px 0;
}

.section-alt {
  padding: 78px 0;
  background:
    linear-gradient(180deg, rgba(255,253,247,0.98), rgba(255,255,255,1) 85%);
}

.section-title {
  font-size: clamp(1.8rem, 1.25rem + 1.7vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

/* KARTY */
.card {
  border-radius: 18px;
}

.service {
  border-radius: 18px;
  border: 1px solid var(--brand-card-border);
  transition:
    transform 0.2s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,0.985));
}

.service:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 226, 122, 0.34);
  box-shadow:
    0 14px 30px rgba(31, 36, 48, 0.08),
    0 10px 22px rgba(255, 226, 122, 0.10);
}

.service .card-body {
  padding: 1.5rem;
}

.service .service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(255,236,160,0.36), rgba(255,226,122,0.18));
  box-shadow:
    inset 0 0 0 1px rgba(255,226,122,0.14),
    0 10px 20px rgba(255,226,122,0.10);
  margin-bottom: 1rem;
}

.service h3 {
  margin-bottom: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Mincové odrážky */
.coin-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.coin-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.48rem;
}

.coin-list li:last-child {
  margin-bottom: 0;
}

.coin-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff5bf 0 25%, #ffe27a 26% 62%, #e4b526 63% 100%);
  box-shadow:
    inset 0 0 0 1px rgba(188, 143, 0, 0.18),
    0 1px 2px rgba(188, 143, 0, 0.18);
  transform: translateY(-50%);
}

/* Twemoji */
.emoji-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.emoji-icon img.emoji {
  display: block;
  width: 1.48rem;
  height: 1.48rem;
  margin: 0;
  vertical-align: middle;
}

.feature-icon .emoji-icon img.emoji {
  width: 1.42rem;
  height: 1.42rem;
}

.service .service-icon .emoji-icon img.emoji {
  width: 1.66rem;
  height: 1.66rem;
}

/* KONTAKT */
.contact,
.map {
  border-radius: 20px;
  border: 1px solid rgba(255,226,122,0.18);
}

.contact {
  display: flex;
}

.contact .card-body {
  padding: 1.75rem;
  width: 100%;
}

.contact-meta li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding-bottom: 0.3rem;
}

.meta-label {
  color: var(--brand-gold-700);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.contact-links li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-links i {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-gold-700);
  background: rgba(255,226,122,0.14);
  box-shadow: inset 0 0 0 1px rgba(255,226,122,0.14);
  flex-shrink: 0;
}

/* MAPA – oprava: iframe vyplní kartu plnou výškou */
.map {
  display: flex;
  min-height: 460px;        /* můžeš upravit podle potřeby (např. 500px) */
}

.map iframe {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;             /* klíčové – žádné height:auto */
  display: block;
  border: 0;
  filter: saturate(0.98) contrast(1.02);
}

/* FOOTER */
.footer {
  background: #fff;
}

.brand-logo-sm {
  height: 32px;
  width: auto;
}

/* Odkazy */
a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 991.98px) {
  .section,
  .section-alt {
    padding: 64px 0;
  }

  .hero-card {
    border-radius: 18px;
  }

  /* pro větší tablety může být stále vyšší mapa */
  .map {
    min-height: 420px;
  }
}

@media (max-width: 767.98px) {
  .contact-meta li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .feature {
    grid-template-columns: 52px 1fr;
  }

  .service .card-body {
    padding: 1.35rem;
  }

  .hero-btn {
    min-width: 100%;
  }

  .map {
    min-height: 320px;  /* mobil */
  }
}