/* =========================================
   Prague Luggage Transfer → Airport – CSS
   File: /blog/prague-luggage-transfer-airport.css
   ========================================= */

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #222;
  line-height: 1.6;
}

/* HERO */
.hero {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  background-image: url("/img/grafika2.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.86), rgba(0,0,0,0.35));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brand {
  display: inline-block;
}

.hero-logo {
  width: 200px;
  display: block;
  margin: 0 auto 22px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
}

.hero h1 {
  font-size: clamp(2.0rem, 3.3vw, 2.9rem);
  font-weight: 760;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 4px 12px rgba(0,0,0,0.55);
  max-width: 860px;
}

.hero-subtitle {
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  max-width: 760px;
  margin-top: 14px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.55);
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}

.trust-text {
  margin-top: 12px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 3px 10px rgba(0,0,0,0.45);
  font-size: 0.98rem;
  max-width: 820px;
}

/* CTA */
.cta-btn {
  background: #ff4bb1;
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, background 0.15s ease;
  display: inline-block;
}

.cta-btn:hover {
  background: #ff2e9f;
  transform: translateY(-1px);
}

.cta-btn-secondary {
  background: #5f2b8c;
}
.cta-btn-secondary:hover {
  background: #4b2170;
}

.cta-btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: none;
}
.cta-btn-ghost:hover {
  background: rgba(255,255,255,0.18);
}

/* MAIN */
.page-wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px 84px;
}

.content h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
}

.content h3 {
  font-size: 1.25rem;
  margin-top: 24px;
  margin-bottom: 10px;
}

.content p {
  margin-bottom: 14px;
  color: #333;
}

.content ul,
.content ol {
  margin: 10px 0 16px 22px;
}

.content li {
  margin-bottom: 8px;
}

/* HIGHLIGHT */
.highlight {
  background: #f4ecff;
  border: 1px solid rgba(95, 43, 140, 0.14);
  padding: 16px 18px;
  border-radius: 18px;
  margin: 18px 0 22px;
}

/* STEPS */
.steps {
  margin-left: 20px;
}

/* BOTTOM CTA */
.bottom-cta {
  background: #f4ecff;
  border: 1px solid rgba(95, 43, 140, 0.14);
  padding: 24px;
  margin-top: 34px;
  border-radius: 18px;
  text-align: center;
}

.bottom-cta p {
  margin: 10px 0 16px;
}

/* RELATED GUIDES */
.related-guides {
  margin-top: 34px;
  padding: 20px;
  background: #f4ecff;
  border-radius: 18px;
  border: 1px solid rgba(95, 43, 140, 0.14);
}

.related-guides ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.related-guides li + li {
  margin-top: 8px;
}

.related-guides a {
  text-decoration: none;
  color: #5f2b8c;
  font-weight: 700;
}

.related-guides a:hover {
  text-decoration: underline;
  color: #ff4bb1;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .hero {
    padding: 90px 16px;
  }
  .hero-logo {
    width: 170px;
  }
}
