/* =========================================
   Prague Rainy Day Ideas – Page CSS
   File: /blog/prague-rainy-day-ideas.css
   ========================================= */

:root{
  --violet:#5f2b8c;
  --pink:#ff4bb1;
  --text:#1b1b22;
  --muted:#4a4a58;
  --border:rgba(0,0,0,0.10);
  --shadow:0 18px 60px rgba(0,0,0,0.12);
  --r16:16px;
  --r20:20px;
}

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

.content h2{
  margin: 0 0 12px;
  font-size: 1.85rem;
  color: #222;
}

.content h3{
  margin: 22px 0 10px;
  font-size: 1.22rem;
  color: #222;
}

.content p{
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 14px;
}

.content ul{
  margin: 10px 0 16px 18px;
  color: var(--muted);
}

.content li{
  margin: 0 0 8px;
}

.content a{
  color: var(--violet);
  font-weight: 800;
  text-decoration: underline;
}
.content a:hover{ color: var(--pink); }

/* HERO */
.hero{
  position: relative;
  padding: 120px 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.84), rgba(0,0,0,0.35));
}

.hero-inner{
  position: relative;
  z-index: 2;
  width: min(1050px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-logo{
  width: 86px;
  height: auto;
  margin-bottom: 14px;
  opacity: 0.95;
}

.hero-content h1{
  margin: 0 0 16px;
  color:#fff;
  font-weight: 900;
  line-height: 1.12;
  font-size: clamp(2.1rem, 3.2vw, 2.9rem);
  text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

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

/* CTA BUTTONS */
.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.14);
  color: #fff;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.cta-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.18);
}

.cta-btn-secondary{
  border: 1px solid rgba(95,43,140,0.18);
  background: #0b0b10;
  color:#fff;
  box-shadow: var(--shadow);
}
.cta-btn-secondary:hover{
  background: #111125;
}

/* BOXES */
.tip-box,
.note-box{
  border-radius: var(--r20);
  padding: 18px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  margin: 18px 0 22px;
}

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

.tip-box ul{
  margin: 0 0 0 18px;
}

.steps{
  margin: 10px 0 18px 18px;
  color: var(--muted);
}
.steps li{ margin-bottom: 10px; }

/* BOTTOM CTA */
.bottom-cta{
  margin-top: 22px;
  border-radius: var(--r20);
  padding: 18px;
  background: #f4ecff;
  border: 1px solid rgba(95,43,140,0.14);
}

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

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

/* RELATED */
.related-guides{
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.related-guides h3{
  margin: 0 0 10px;
}
.related-guides ul{
  margin: 0 0 0 18px;
}

/* FOOTER */
.site-footer{
  padding: 20px 0 30px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.footer-inner{
  width: min(1050px, calc(100% - 40px));
  margin: 0 auto;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 860px){
  .hero{ padding: 92px 0; }
  .page-wrapper{ padding-top: 36px; }
}
