/* parkingpickup.cz — pickup point page
   Brand palette extracted from qrkod1.pdf (Adobe Illustrator source):
   pastel #D5F2FC, magenta #ED1573, navy #223162. No other brand colours. */

:root {
  --pastel: #D5F2FC;
  --pink: #ED1573;
  --pink-dark: #C2105F;
  --pink-soft: #FDE7F0;
  --navy: #223162;
  --navy-dark: #161F40;
  --navy-mute: #5A6488;
  --white: #FFFFFF;
  --bg: #F6FAFC;
  --border: #DCE6EE;
  --shadow-pink: 0 4px 18px rgba(237, 21, 115, 0.28);
  --shadow-card: 0 1px 3px rgba(34, 49, 98, 0.06), 0 4px 14px rgba(34, 49, 98, 0.06);
  --r: 14px;
  --r-pill: 999px;
  --tap: 56px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--pink); text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--pink); outline-offset: 2px; }

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

.container { width: 100%; max-width: 640px; margin: 0 auto; padding: 0 20px; }

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand svg { color: var(--pink); }

.lang-nav { display: flex; gap: 2px; }
.lang-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1;
  opacity: 0.55;
}
.lang-nav a:hover { opacity: 1; background: rgba(255, 255, 255, 0.1); }
.lang-nav a[aria-current="page"] {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--pastel);
  padding: 36px 0 32px;
  text-align: center;
}
.hero h1 {
  color: var(--navy);
  font-size: clamp(1.85rem, 7.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 12px;
}
.hero p {
  color: var(--navy-mute);
  font-size: 1.05rem;
  max-width: 34ch;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── SECTION TITLES ───────────────────────────────────────── */
.sec-title {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

/* ── PICKUP LOCATION ──────────────────────────────────────── */
.location {
  padding: 32px 0 8px;
  background: var(--white);
}
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.location .address {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin: 0 0 16px;
}
.gps {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.gps-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-mute);
  margin-bottom: 2px;
}
.gps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.gps code {
  font-family: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--navy-mute);
  background: transparent;
  user-select: all;
  -webkit-user-select: all;
  letter-spacing: 0;
}
.copy-btn {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--navy-mute);
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  min-height: 28px;
  -webkit-tap-highlight-color: transparent;
}
.copy-btn:hover { background: var(--pink-soft); border-color: var(--pink); color: var(--pink-dark); }
.copy-btn.is-copied { background: var(--navy); color: var(--white); border-color: var(--navy); }

.map-buttons { display: flex; flex-direction: column; gap: 10px; }
.map-buttons-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: var(--tap);
  padding: 14px 22px;
  border-radius: var(--r);
  border: 0;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover { background: var(--pink-dark); }

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border);
  font-size: 0.95rem;
  min-height: 48px;
  padding: 10px 16px;
}
.btn-secondary:hover { background: var(--pastel); border-color: var(--navy); color: var(--navy); }

.btn-call {
  flex-direction: column;
  gap: 2px;
  padding: 12px 22px;
  line-height: 1.2;
}
.btn-call .label { font-size: 0.88rem; font-weight: 600; opacity: 0.92; }
.btn-call .number { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact {
  padding: 24px 0 32px;
  background: var(--white);
}
.contact-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  font-size: 0.95rem;
  min-height: 48px;
  padding: 10px 14px;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.28);
}
.btn-whatsapp:hover { background: #1FB755; }
.btn-whatsapp svg { width: 18px; height: 18px; }
.btn-fallback {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border);
  font-size: 0.95rem;
  min-height: 48px;
  padding: 8px 14px;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}
.btn-fallback:hover { background: var(--pastel); border-color: var(--navy); }
.btn-fallback .label { font-size: 0.78rem; font-weight: 600; opacity: 0.75; }
.btn-fallback .number { font-size: 1rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.shuttle-id {
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--pastel);
  border-radius: 10px;
  font-size: 0.84rem;
  color: var(--navy);
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.shuttle-id svg { width: 18px; height: 18px; color: var(--navy-mute); flex-shrink: 0; margin-top: 2px; }
.shuttle-id strong { font-weight: 700; }

/* ── STEPS ────────────────────────────────────────────────── */
.steps {
  padding: 28px 0 32px;
  background: var(--pastel);
}
.steps ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 16px;
}
.step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
}
.step-text { font-size: 0.98rem; color: var(--navy); font-weight: 500; line-height: 1.4; }

/* ── FEEDBACK ─────────────────────────────────────────────── */
.feedback {
  padding: 20px 0 28px;
  background: var(--white);
  text-align: center;
}
.stars {
  display: inline-flex;
  gap: 4px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  font-family: inherit;
}
.stars svg {
  width: 30px;
  height: 30px;
  color: var(--pink);
}
.feedback-label {
  display: block;
  margin-top: 4px;
  font-size: 0.92rem;
  color: var(--navy-mute);
  font-weight: 600;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  border-top: 3px solid var(--pink);
}
.site-footer a { color: rgba(255, 255, 255, 0.92); text-decoration: underline; text-underline-offset: 3px; }
.site-footer .copy { font-size: 12px; color: rgba(255, 255, 255, 0.42); margin-top: 4px; }

/* ── DESKTOP ──────────────────────────────────────────────── */
@media (min-width: 720px) {
  .hero { padding: 56px 0 44px; }
  .hero p { font-size: 1.15rem; max-width: 42ch; }
  .location-card { padding: 28px; }
  .map-buttons { flex-direction: row; }
  .map-buttons .btn-primary { flex: 1.5; }
  .map-buttons-secondary { flex: 1; display: flex; gap: 10px; }
  .map-buttons-secondary .btn { flex: 1; }
  .steps ol { flex-direction: row; gap: 10px; }
  .step { flex: 1; flex-direction: column; text-align: center; padding: 18px 14px; gap: 8px; }
}

@media (min-width: 1024px) {
  .container { max-width: 760px; }
}
