:root {
  --olive: #a8bf00;
  --olive-dark: #8aa300;
  --orange: #ff9800;
  --gold: #ffc400;
  --navy: #0a1a4d;
  --navy-light: #16296b;
  --text: #2b2b2b;
  --muted: #6b6f5c;
  --bg: #fffdf5;
  --card-bg: #ffffff;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(10, 26, 77, 0.08);
  --shadow-hover: 0 14px 34px rgba(10, 26, 77, 0.14);
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  font-family: "Inter", "Arial", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 0.95rem;
}

h1, h2, h3 {
  font-family: "Poppins", "Arial", sans-serif;
  margin: 0 0 0.5em;
  color: var(--navy);
}

p { margin: 0 0 0.8em; }

a { color: inherit; text-decoration: none; }

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

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

.anchor { scroll-margin-top: 76px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 152, 0, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(10, 26, 77, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--navy);
  margin-right: auto;
}

.logo-icon { display: inline-flex; align-items: center; font-size: 1.8rem; line-height: 1; }
.logo-text { font-family: "Poppins", "Arial", sans-serif; color: var(--navy); margin: 0; line-height: 1; }
.logo-text strong { color: var(--orange); }

.main-nav {
  display: flex;
  gap: 24px;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}

.main-nav a:hover { color: var(--navy); }

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover::after { transform: scaleX(1); }

.header-cta { flex-shrink: 0; padding: 10px 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Oznámení ---------- */
.oznam-bar {
  background: var(--navy);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 4px 16px rgba(10, 26, 77, 0.25);
  padding: 16px 0;
  position: relative;
  z-index: 5;
}

.oznam-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.oznam-icon {
  flex-shrink: 0;
  font-size: 1.6rem;
  color: var(--gold);
  animation: oznam-pulz 1.6s ease-in-out infinite;
}

.oznam-text {
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

@keyframes oznam-pulz {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@media (prefers-reduced-motion: reduce) {
  .oznam-icon { animation: none; }
}

@media (max-width: 760px) {
  .oznam-text { font-size: 0.95rem; }
  .oznam-inner { gap: 8px; }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 420px at 85% -10%, rgba(255, 196, 0, 0.35), transparent),
    linear-gradient(180deg, #fffdf5 0%, #fff6e0 100%);
  padding: 40px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--olive-dark);
  background: rgba(168, 191, 0, 0.15);
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.hero-text h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 14px;
}

.hero-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 18px;
}

.copy-address {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px dotted transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.copy-address:hover { border-bottom-color: currentColor; }
.copy-address.copied { color: var(--olive-dark); border-bottom-color: transparent; }

.hours-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 6px 18px rgba(10, 26, 77, 0.1);
  border: 1px solid rgba(10, 26, 77, 0.06);
  min-width: 260px;
}

.hours-card-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.65;
  margin-bottom: 8px;
}

.hours-card-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 0.95rem;
  padding: 6px 0;
}

.hours-card-day {
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.hours-card-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(10, 26, 77, 0.22);
  margin-bottom: 4px;
}

.hours-card-cas {
  color: var(--muted);
  font-weight: 600;
  flex-shrink: 0;
}

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

.hero-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  border: 5px solid #fff;
}

/* ---------- Content ---------- */
.content { padding: 40px 0; }

.compact-heading {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

/* Intro + gallery strip */
.intro-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 40px;
}

.intro-text {
  font-size: 0.98rem;
  color: var(--text);
  margin: 0;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-strip img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Services */
.services-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(10, 26, 77, 0.08);
}

.service-col h3 {
  font-size: 1rem;
  margin: 0 0 8px;
}

.service-col ul {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-col ul:last-child { margin-bottom: 0; }

/* Prodej */
.prodej-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: center;
}

.prodej-media {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.prodej-text h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.prodej-text p { color: var(--muted); margin: 0; }

.brand-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.brand-tags span {
  background: var(--navy);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  padding: 32px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  padding-bottom: 24px;
}

.footer-contact h2 { color: #fff; }
.footer-contact p { margin: 0 0 8px; font-size: 0.92rem; color: rgba(255, 255, 255, 0.85); }
.footer-contact a:hover { color: var(--gold); }

.hours { display: flex; gap: 8px; align-items: flex-start; }
.hours-list { display: flex; flex-direction: column; gap: 2px; }
.hours-row { display: flex; gap: 6px; }
.hours-row .day { min-width: 4.5em; }

.footer-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.footer-map iframe { display: block; width: 100%; height: 100%; min-height: 220px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p { margin: 0; }

/* ================= Responsive ================= */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-media { order: -1; }

  .intro-row { grid-template-columns: 1fr; }

  .prodej-row { grid-template-columns: 180px 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fffdf5;
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
    border-bottom: 1px solid rgba(10, 26, 77, 0.08);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(10, 26, 77, 0.06);
  }

  .header-cta { display: none; }

  .nav-toggle { display: flex; }

  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 28px 0; }

  .content { padding: 28px 0; }

  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .gallery-strip img { height: 80px; }

  .services-compact { grid-template-columns: 1fr; gap: 8px; }

  .prodej-row { grid-template-columns: 1fr; }

  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}
