/* =========================================
   Prague Tourist Scams – Page CSS
   File: /blog/prague-tourist-scams-safety-guide.css
   ========================================= */

:root{
  --ink:#121218;
  --muted:#5c5c6a;

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

  --border: rgba(0,0,0,0.10);
  --shadow: 0 16px 50px rgba(0,0,0,0.10);

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

/* Layout */
.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 ul{
  margin: 10px 0 16px;
  padding-left: 18px;
  color: #2b2b34;
}

.content li{
  margin: 8px 0;
  line-height: 1.6;
}

/* Links */
.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--guide{
  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: 860px;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
  text-shadow: 0 3px 10px rgba(0,0,0,0.55);
}

/* CTA buttons */
.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(17,17,26,0.95);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: none;
}
.cta-btn-secondary:hover{
  background: rgba(17,17,26,1);
}

/* Tip + Note boxes */
.tip-box,
.note-box{
  border-radius: var(--r20);
  padding: 18px 18px;
  margin: 18px 0 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #ffffff;
}

.tip-box h3,
.note-box h3{
  margin-top: 0;
}

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

/* Responsive */
@media (max-width: 860px){
  .hero-content h1{ font-size: 2.25rem; }
}

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