/* =========================================
   Prague Public Transport Tickets – Page CSS
   File: /blog/prague-public-transport-tickets-guide.css
   ========================================= */

.hero{
  position: relative;
  padding: 110px 0;
  background-image: url("/img/grafika2.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  color: #fff;
}

.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;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.hero h1{
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.55);
  margin-bottom: 14px;
  line-height: 1.15;
  font-size: clamp(2.05rem, 3.2vw, 2.85rem);
  font-weight: 800;
}

.hero-subtitle{
  color: rgba(255,255,255,0.92);
  text-shadow: 0 3px 10px rgba(0,0,0,0.55);
  font-size: 1.1rem;
  max-width: 840px;
  margin-top: 8px;
  margin-bottom: 22px;
}

/* CTA BUTTONS */
.cta-btn{
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  background: #ff4bb1;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
  transition: transform 0.15s ease, background 0.15s ease;
}
.cta-btn:hover{
  transform: translateY(-1px);
  background: #ff2e9f;
}

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

/* MAIN */
.page-wrapper{
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0 70px;
}

.content h2{
  margin-top: 22px;
  margin-bottom: 12px;
  color: #222;
  font-size: 1.75rem;
}

.content h3{
  margin-top: 18px;
  margin-bottom: 10px;
  color: #333;
  font-size: 1.2rem;
}

.content p{
  margin-bottom: 14px;
  color: #444;
  line-height: 1.65;
}

.content ul{
  margin: 10px 0 18px 18px;
}

.content li{
  margin-bottom: 10px;
  color: #444;
}

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

.tip-box ul,
.note-box ul{
  margin-top: 10px;
}

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

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

.card ul{
  margin-top: 10px;
  margin-left: 18px;
}

/* BOTTOM CTA */
.bottom-cta{
  margin-top: 26px;
  background: #0b0b10;
  color: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
}

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

.bottom-cta p{
  color: rgba(255,255,255,0.86);
}

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

.related-guides ul{
  margin-left: 18px;
  margin-top: 10px;
}

.related-guides a{
  color: #5f2b8c;
  font-weight: 800;
  text-decoration: underline;
}
.related-guides a:hover{
  color: #ff4bb1;
}

/* RESPONSIVE */
@media (max-width: 820px){
  .cards{ grid-template-columns: 1fr; }
  .hero{ padding: 86px 0; }
  .hero-logo{ width: 170px; }
}
