/* =========================================
   Prague Rainy Day + Luggage – Page CSS
   File: /blog/prague-rainy-day-luggage-guide.css
   ========================================= */

:root{
  --ink:#121218;
  --muted:#5c5c6a;
  --paper:#ffffff;
  --card:#f8f8fb;
  --border: rgba(0,0,0,0.10);
  --shadow: 0 16px 50px rgba(0,0,0,0.10);

  --violet:#5f2b8c;
  --pink:#ff4bb1;

  --r12:12px;
  --r16:16px;
  --r20:20px;
}

.page-wrapper{
  max-width: 980px;
  margin: 0 auto;
  padding: 42px 16px 60px;
}

.content{
  color: var(--ink);
}

.content h2{
  margin: 34px 0 14px;
  font-size: 1.85rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

.content p{
  margin: 0 0 14px;
  color: #2b2b34;
  line-height: 1.65;
}

.content a{
  color: var(--violet);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.content a:hover{
  color: var(--pink);
}

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

.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.35));
}

.hero-content{
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 10px;
}

.hero-logo{
  width: 140px;
  height: auto;
  margin-bottom: 8px;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.35));
}

.hero-content h1{
  color:#fff;
  margin: 0;
  font-size: 2.7rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

.hero-subtitle{
  color: rgba(255,255,255,0.94);
  max-width: 780px;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
  text-shadow: 0 3px 10px rgba(0,0,0,0.55);
}

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

.hero-trust{
  margin-top: 6px;
  color: rgba(255,255,255,0.88);
  font-size: 0.98rem;
  max-width: 760px;
}

/* CTA buttons (works with your existing .cta-btn if present, but safe to define) */
.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--violet);
  color: #fff !important;
  text-decoration: none;
  font-weight: 750;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
}
.cta-btn:hover{
  transform: translateY(-1px);
  background: #6b31a0;
}

.cta-btn-secondary{
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.30);
  box-shadow: none;
}
.cta-btn-secondary:hover{
  background: rgba(255,255,255,0.18);
}

/* Boxes */
.quick-box,
.tip-box{
  background: #f3ecff;
  border: 1px solid #e6d7ff;
  border-radius: var(--r16);
  padding: 18px 18px 16px;
  margin: 18px 0 18px;
}

.quick-box h3,
.tip-box h3{
  margin: 0 0 10px;
  color: var(--violet);
}

.quick-box ol{
  margin: 0;
  padding-left: 18px;
}
.quick-box li{
  margin: 8px 0;
  line-height: 1.55;
}

/* Lists */
.checklist{
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
}
.checklist li{
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  line-height: 1.6;
  color: #2b2b34;
}
.checklist li::before{
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-weight: 800;
}

/* Cards grid */
.cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 14px 0 10px;
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card h3{
  margin-top: 0;
  color: var(--violet);
}

.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: #2b2b34;
}
.bullets li{
  margin: 8px 0;
  line-height: 1.55;
}

.card-note{
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Compare cards */
.compare-cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0 18px;
}

.compare-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: 16px 16px 14px;
}

.compare-card h4{
  margin: 0 0 10px;
  color: #252530;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.compare-card ul{
  margin: 0;
  padding-left: 18px;
  color: #2b2b34;
}
.compare-card li{
  margin: 8px 0;
  line-height: 1.55;
}

.compare-card--highlight{
  border: 2px solid #e6d7ff;
  background: #fbf7ff;
}

/* Plans list */
.plans{
  margin: 10px 0 0;
  padding-left: 18px;
}
.plans li{
  margin: 10px 0;
  line-height: 1.6;
}

/* Bottom CTA */
.bottom-cta{
  margin: 28px 0 18px;
  background: #11111a;
  color: #fff;
  border-radius: var(--r20);
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.08);
}

.bottom-cta h3{
  margin: 0 0 8px;
  color: #fff;
}

.bottom-cta p{
  margin: 0 0 14px;
  color: rgba(255,255,255,0.88);
}

/* Related guides */
.related-guides{
  margin-top: 26px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 18px;
}

.related-guides h3{
  margin-top: 0;
}

.related-guides ul{
  margin: 10px 0 0;
  padding-left: 18px;
}
.related-guides li{
  margin: 8px 0;
}

/* Responsive */
@media (max-width: 860px){
  .hero-content h1{
    font-size: 2.25rem;
  }
  .cards,
  .compare-cards{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px){
  .hero.hero--rainy{
    padding: 96px 16px;
  }
  .hero-logo{ width: 120px; }
  .hero-content h1{ font-size: 2.0rem; }
  .hero-subtitle{ font-size: 1.02rem; }
  .cta-btn{ width: 100%; }
}
