/* Kosovo Travel Guide - Shared Stylesheet */
:root {
  --blue:    #1a3a8c;
  --blue-dk: #0f2560;
  --gold:    #d4a017;
  --gold-lt: #f0c040;
  --red:     #9b2020;
  --cream:   #faf8f4;
  --white:   #ffffff;
  --text:    #1e1e1e;
  --muted:   #5a5a5a;
  --border:  #ddd;
  --card-bg: #ffffff;
  --shadow:  0 4px 20px rgba(0,0,0,0.10);
  --radius:  10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
}

/* ── NAVIGATION ───────────────────────────────── */
nav {
  background: var(--blue-dk);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 64px;
}
.nav-logo {
  font-family: 'Georgia', serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--gold-lt);
  text-decoration: none;
  letter-spacing: .04em;
}
.nav-logo span { color: var(--white); }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  display: block;
  padding: .55rem 1.1rem;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: .88rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .2s, background .2s;
  border-radius: 4px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-lt);
  background: rgba(255,255,255,.07);
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--blue-dk) 0%, var(--blue) 60%, #2a5298 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&auto=format&fit=crop&q=60") center/cover no-repeat;
  opacity: .22;
}
.hero-content {
  position: relative;
  max-width: 780px;
  padding: 4rem 2rem;
}
.hero-eyebrow {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero-sub {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.hero-badges {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ── PAGE HERO (subpages) ─────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dk), var(--blue));
  padding: 4rem 1.5rem;
  text-align: center;
  color: var(--white);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: .6rem;
  color: var(--white);
}
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.breadcrumb {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: .8rem;
}

/* ── LAYOUT ───────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: #fff; }
.section-dark { background: var(--blue-dk); color: var(--white); }

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section-heading .label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}
.section-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--blue-dk);
  margin-bottom: .75rem;
}
.section-dark .section-heading h2 { color: var(--white); }
.section-heading p { color: var(--muted); max-width: 600px; margin: 0 auto; }

/* ── CARDS ────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
}
.card-grid-2 { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 8px 32px rgba(0,0,0,.15); }

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.card-img-tall { height: 240px; }
.card-body { padding: 1.4rem; }
.card-tag {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.card h3 { font-size: 1.15rem; color: var(--blue-dk); margin-bottom: .5rem; }
.card p { font-size: .9rem; color: var(--muted); line-height: 1.65; }
.card-link {
  display: inline-block;
  margin-top: .9rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: .82rem;
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .04em;
}
.card-link:hover { color: var(--gold); }

/* ── HIGHLIGHT ROW ────────────────────────────── */
.highlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.highlight-row.reverse { direction: rtl; }
.highlight-row.reverse > * { direction: ltr; }
.highlight-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.highlight-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
.highlight-text .label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}
.highlight-text h2 { font-size: 1.9rem; color: var(--blue-dk); margin-bottom: 1rem; line-height: 1.25; }
.highlight-text p { color: var(--muted); margin-bottom: .9rem; }
.btn {
  display: inline-block;
  padding: .7rem 1.7rem;
  border-radius: 50px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .22s, color .22s, box-shadow .22s;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dk); box-shadow: 0 4px 16px rgba(26,58,140,.3); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #b8870e; }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--blue-dk); }

/* ── STAT BAR ─────────────────────────────────── */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  background: var(--blue);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}
.stat-item {
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2.2rem; font-weight: bold; color: var(--gold-lt); line-height: 1; }
.stat-lbl { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: .78rem; color: rgba(255,255,255,.7); margin-top: .35rem; text-transform: uppercase; letter-spacing: .1em; }

/* ── TIMELINE ─────────────────────────────────── */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--border); }
.tl-item { position: relative; margin-bottom: 2.2rem; }
.tl-dot { position: absolute; left: -2.85rem; top: .35rem; width: 14px; height: 14px; background: var(--gold); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--gold); }
.tl-year { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); font-weight: 700; }
.tl-title { font-size: 1.05rem; color: var(--blue-dk); font-weight: bold; margin: .2rem 0 .35rem; }
.tl-text { font-size: .92rem; color: var(--muted); }

/* ── INFO BOXES ───────────────────────────────── */
.info-box {
  background: var(--card-bg);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.info-box h4 { color: var(--blue-dk); margin-bottom: .4rem; font-size: 1rem; }
.info-box p, .info-box ul { color: var(--muted); font-size: .9rem; }
.info-box ul { padding-left: 1.2rem; }
.info-box ul li { margin-bottom: .3rem; }

/* ── TWO-COL PROSE ────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.two-col p { color: var(--muted); margin-bottom: 1rem; }

/* ── DESTINATION HEADER ───────────────────────── */
.dest-header {
  background: linear-gradient(135deg, #0f2560, #1a3a8c);
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--white);
  margin-bottom: 2.5rem;
}
.dest-header h2 { font-size: 2rem; color: var(--white); }
.dest-header p { color: rgba(255,255,255,.75); }

/* ── TABLE ────────────────────────────────────── */
table { width: 100%; border-collapse: collapse; font-size: .9rem; }
th { background: var(--blue); color: var(--white); padding: .75rem 1rem; text-align: left; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }
td { padding: .7rem 1rem; border-bottom: 1px solid var(--border); color: var(--muted); }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) { background: #f7f5f0; }

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: #0a1832;
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
footer h4 { color: var(--white); margin-bottom: 1rem; font-size: 1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: .5rem; }
footer ul a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .88rem; transition: color .2s; }
footer ul a:hover { color: var(--gold-lt); }
.footer-brand { font-size: 1.3rem; color: var(--gold-lt); font-weight: bold; margin-bottom: .75rem; }
footer p { font-size: .86rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.25rem; text-align: center; font-size: .8rem; color: rgba(255,255,255,.4); }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .highlight-row { grid-template-columns: 1fr; }
  .highlight-row.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { gap: 0; }
  .nav-links a { padding: .5rem .6rem; font-size: .78rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: 1fr 1fr; }
}
