/* =========================================
   Prague Luggage Safety – Page CSS
   File: /blog/prague-luggage-safety-guide.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: 64px 20px 74px;
  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-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
}

.hero-text {
  color: rgba(255,255,255,0.96);
}

.brand {
  display: inline-block;
}

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

.eyebrow {
  font-size: 0.95rem;
  opacity: 0.95;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2.0rem, 3.2vw, 2.8rem);
  font-weight: 760;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.65);
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 70ch;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

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

.trust-text {
  font-size: 0.98rem;
  max-width: 78ch;
  opacity: 0.98;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

/* CTA */
.cta-btn {
  background: #ff4bb1;
  color: #fff;
  padding: 12px 26px;
  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);
  transform: translateY(-1px);
}

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

.content h2 {
  font-size: 1.7rem;
  margin: 28px 0 14px;
}

.content h3 {
  font-size: 1.25rem;
  margin: 18px 0 10px;
}

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

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

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

/* QUICK NAV */
.quick-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 6px 0 24px;
  padding: 12px;
  border-radius: 18px;
  background: #f9f6ff;
  border: 1px solid rgba(95, 43, 140, 0.16);
}

.quick-nav a {
  text-decoration: none;
  color: #5f2b8c;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(95, 43, 140, 0.06);
}

.quick-nav a:hover {
  background: rgba(255, 75, 177, 0.10);
  color: #ff4bb1;
}

/* TIP BOX */
.tip-box {
  background: #f4ecff;
  padding: 18px;
  border-radius: 18px;
  margin: 18px 0 22px;
  border: 1px solid rgba(95, 43, 140, 0.12);
}

.tip-box h3 {
  margin-top: 0;
  color: #5f2b8c;
}

/* CHECKLIST */
.checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #333;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: #10b981;
}

/* SAFETY GRID */
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.safety-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.safety-card h3 {
  margin-top: 0;
  color: #5f2b8c;
}

.safety-card.highlight {
  background: #f4ecff;
  border-color: rgba(95, 43, 140, 0.18);
}

.safety-level {
  font-weight: 800;
  margin: 6px 0 10px;
}

.safety-high { color: #10b981; }
.safety-medium { color: #b45309; }
.safety-low { color: #ef4444; }
.safety-unsafe { color: #b91c1c; }

.bullets {
  margin-left: 18px;
}

.inline-link {
  display: inline-block;
  margin-top: 10px;
  color: #5f2b8c;
  font-weight: 800;
  text-decoration: none;
}
.inline-link:hover {
  text-decoration: underline;
  color: #ff4bb1;
}

/* TWO COLUMN */
.two-column {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  margin-top: 14px;
}

.numbered {
  margin-left: 18px;
}

/* INFO CARD */
.info-card {
  background: #f4ecff;
  border: 1px solid rgba(95, 43, 140, 0.14);
  border-radius: 18px;
  padding: 18px;
}

.info-card h3 {
  margin-top: 0;
  color: #5f2b8c;
}

/* SCENARIOS */
.scenario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.scenario {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.scenario h3 {
  margin-top: 0;
  color: #5f2b8c;
}

/* FAQ */
.faq {
  margin-top: 10px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.faq h2 { margin-top: 0; }

.faq-item {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 12px 0;
}

.faq-item:first-of-type { border-top: none; }

.faq-item summary {
  cursor: pointer;
  font-weight: 760;
  color: #222;
}

.faq-body {
  padding-top: 10px;
  color: #333;
}

.faq-cta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}

/* 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;
}

/* FOOTER (simple) */
.site-footer {
  padding: 26px 20px 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .two-column { grid-template-columns: 1fr; }
  .scenario-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .safety-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 56px 16px 64px; }
  .hero-logo { width: 170px; }
}
