/* =========================================
   Old Town vs Lesser Town – Page CSS
   File: /blog/prague-old-town-vs-lesser-town-guide.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: 96px 20px 86px;
  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: 820px;
  margin: 0 auto;
  color: rgba(255,255,255,0.96);
}

.brand { display: inline-block; }

.hero-logo {
  width: 190px;
  display: block;
  margin: 0 auto 18px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
}

.hero h1 {
  font-size: clamp(2.05rem, 3.2vw, 2.85rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.65);
}

.hero-subtitle {
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
  font-size: 1.08rem;
  max-width: 78ch;
  margin: 0 auto 18px;
}

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

/* CTA */
.cta-btn {
  background: #ff4bb1;
  color: #fff;
  padding: 12px 26px;
  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);
}

/* CONTENT */
.page-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.content h2 {
  font-size: 1.7rem;
  margin: 26px 0 14px;
}

.content h3 {
  font-size: 1.25rem;
  margin-top: 18px;
  margin-bottom: 10px;
}

.content p {
  margin-bottom: 14px;
  color: #333;
}

.content ul {
  margin: 10px 0 16px 22px;
}

.content li {
  margin-bottom: 8px;
}

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

.compare-card {
  background: #f4ecff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(95, 43, 140, 0.14);
}

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

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

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

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

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

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

.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: 800;
}

.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: 84px 16px 72px; }
  .hero-logo { width: 170px; }
}
