/* prague1.net — main stylesheet */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c96d;
  --navy: #1a2340;
  --navy-light: #243058;
  --cream: #f8f4ed;
  --text: #2c2c2c;
  --text-muted: #666;
  --border: #e0d8cc;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Georgia', serif;
  line-height: 1.3;
  color: var(--navy);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .5rem; }
h3 { font-size: 1.25rem; margin-bottom: .4rem; }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: .3rem; }

/* Layout */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 1.25rem; }

/* Header */
.site-header {
  background: var(--navy);
  padding: .9rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  color: var(--gold) !important;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: .5px;
  text-decoration: none !important;
}
.logo span { color: var(--white); font-weight: normal; }

nav { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
nav a { color: #ccc; font-size: .92rem; font-family: sans-serif; }
nav a:hover { color: var(--gold); text-decoration: none; }
nav a.active { color: var(--gold); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .3rem; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0; transition: .3s;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/static/img/hero-bg.jpg') center/cover no-repeat;
  opacity: .15;
}
.hero .inner { position: relative; z-index: 1; }
.hero-label {
  font-family: sans-serif;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .8rem;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  max-width: 620px;
  margin-bottom: 1.5rem;
}
.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.6rem; color: var(--gold-light); }
.hero-stat span { font-size: .82rem; color: rgba(255,255,255,.7); font-family: sans-serif; }

/* Buttons */
.btn {
  display: inline-block;
  padding: .7rem 1.5rem;
  border-radius: var(--radius);
  font-family: sans-serif;
  font-size: .95rem;
  cursor: pointer;
  transition: .2s;
  text-decoration: none !important;
}
.btn-primary { background: var(--gold); color: var(--navy); font-weight: 600; }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { border: 2px solid rgba(255,255,255,.4); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: .4rem 1rem; font-size: .85rem; }

/* Section */
.section { padding: 3rem 0; }
.section--gray { background: var(--cream); }
.section-title { text-align: center; margin-bottom: 2rem; }
.section-title p { color: var(--text-muted); font-family: sans-serif; font-size: 1rem; }

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.cards-grid--4 { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.cards-grid--2 { grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); }

/* POI card */
.poi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.poi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.poi-card__cat {
  font-family: sans-serif;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 600;
}
.poi-card__name { font-size: 1.05rem; font-weight: bold; color: var(--navy); }
.poi-card__name a { color: inherit; }
.poi-card__name a:hover { color: var(--gold); text-decoration: none; }
.poi-card__address {
  font-size: .85rem;
  color: var(--text-muted);
  font-family: sans-serif;
}
.poi-card__desc { font-size: .88rem; color: var(--text); flex-grow: 1; }
.poi-card__meta {
  display: flex; gap: .75rem; flex-wrap: wrap;
  font-size: .8rem; font-family: sans-serif;
  color: var(--text-muted);
  margin-top: .25rem;
}
.badge {
  display: inline-block;
  padding: .15rem .5rem;
  border-radius: 3px;
  font-size: .72rem;
  font-family: sans-serif;
  font-weight: 600;
  background: var(--cream);
  color: var(--navy);
}
.badge--green { background: #e6f4ea; color: #1e7e34; }
.badge--gold { background: #fdf6e3; color: #8a6700; }

/* Category page */
.cat-hero {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 0 2rem;
}
.cat-hero h1 { color: var(--white); }
.cat-hero p { color: rgba(255,255,255,.8); max-width: 600px; }
.breadcrumb {
  font-family: sans-serif;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .75rem;
}
.breadcrumb a { color: var(--gold-light); }

.filter-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
  position: sticky;
  top: 56px;
  z-index: 90;
}
.filter-bar .inner {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  align-items: center;
}
.filter-btn {
  padding: .35rem .85rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  font-size: .82rem;
  font-family: sans-serif;
  cursor: pointer;
  transition: .15s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.filter-count { color: var(--text-muted); font-size: .82rem; font-family: sans-serif; margin-left: auto; }

/* POI detail page */
.poi-detail { padding: 2.5rem 0; }
.poi-detail__header { margin-bottom: 2rem; }
.poi-detail__body { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; }
.poi-detail__info {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.poi-detail__info h3 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-family: sans-serif;
  margin-bottom: .75rem;
}
.info-row {
  display: flex;
  gap: .75rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  font-family: sans-serif;
  font-size: .9rem;
}
.info-row:last-child { border-bottom: none; }
.info-row__label { color: var(--text-muted); min-width: 120px; }
.info-row__value { color: var(--text); }

/* Nearby section */
.nearby { padding: 2rem 0; background: var(--cream); }
.nearby-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }

/* Neighborhood hub */
.nbhd-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: .2s;
}
.nbhd-card:hover { background: var(--navy-light); }
.nbhd-card h3 { color: var(--gold-light); margin-bottom: .4rem; }
.nbhd-card p { color: rgba(255,255,255,.75); font-size: .9rem; margin: 0; }
.nbhd-card a { text-decoration: none !important; }

/* Blog */
.blog-card {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.blog-card:last-child { border-bottom: none; }
.blog-card__meta { font-family: sans-serif; font-size: .8rem; color: var(--text-muted); margin-bottom: .4rem; }
.blog-card h2 { font-size: 1.2rem; margin-bottom: .4rem; }
.blog-card p { color: var(--text-muted); font-size: .92rem; margin: 0; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 2.5rem 0 1.5rem;
  font-family: sans-serif;
  font-size: .88rem;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-grid h4 { color: var(--white); margin-bottom: .75rem; font-size: .9rem; }
.footer-grid a { color: rgba(255,255,255,.55); display: block; margin-bottom: .35rem; }
.footer-grid a:hover { color: var(--gold-light); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}

/* Utilities */
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  nav { display: none; flex-direction: column; width: 100%; }
  nav.open { display: flex; }
  .hero-stats { gap: 1rem; }
  .poi-detail__body { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 2.5rem 0 2rem; }
}
