/* =========================================
   Luggage Options – Page CSS
   File: /blog/prague-luggage-options-2025.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;
  min-height: 280px;
  padding: 64px 20px 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  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;
  color: rgba(255,255,255,0.96);
}

.hero-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(1.95rem, 3vw, 2.7rem);
  margin-bottom: 14px;
  font-weight: 750;
  text-shadow: 0 2px 10px rgba(0,0,0,0.65);
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 860px;
  margin: 0 auto 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

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

.hero-note {
  margin-top: 14px;
  font-size: 0.95rem;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

/* CTA BUTTONS */
.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);
  transform: translateY(-1px);
}

/* LAYOUT */
.page-wrapper {
  max-width: 920px;
  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;
}

/* TOC */
.toc {
  background: #f9f6ff;
  border: 1px solid rgba(95, 43, 140, 0.18);
  border-radius: 18px;
  padding: 18px;
  margin: 6px 0 22px;
}

.toc-title {
  font-size: 1.05rem;
  margin: 0 0 10px;
}

.toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.toc a {
  color: #5f2b8c;
  text-decoration: none;
  font-weight: 650;
}
.toc a:hover {
  text-decoration: underline;
}

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

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

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

/* PROS & CONS */
.pros-cons {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.pros-cons li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: #333;
}

.pros-cons li.check::before,
.pros-cons li.cross::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
}

.pros-cons li.check::before {
  content: "✔";
  color: #10b981;
}

.pros-cons li.cross::before {
  content: "✘";
  color: #ef4444;
}

/* HIGHLIGHT */
.highlight-box {
  background: #f4ecff;
  border: 2px solid rgba(95, 43, 140, 0.18);
  padding: 24px;
  border-radius: 18px;
  margin: 24px 0;
}

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

.feature-list {
  margin: 12px 0 14px 22px;
}

.micro-note {
  margin-top: 6px;
  color: #333;
}

.inline-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cta-link {
  color: #5f2b8c;
  text-decoration: none;
  font-weight: 700;
}
.cta-link:hover {
  text-decoration: underline;
  color: #ff4bb1;
}

/* COMPARE GRID */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 14px 0 22px;
}

.compare-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);
}

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

/* DECISION LIST */
.decision-list {
  margin-left: 22px;
}

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

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

/* FAQ */
.faq {
  margin-top: 34px;
  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: 750;
  color: #222;
}

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

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

.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: 650;
}
.related-guides a:hover {
  text-decoration: underline;
  color: #ff4bb1;
}

/* RESPONSIVE */
@media (max-width: 780px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

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

/* Force hero text bright */
.hero-content *,
.hero-content p,
.hero-content span {
  color: rgba(255,255,255,0.96) !important;
}
