/* ===== POLISCOOP MEDIA — MAIN STYLESHEET ===== */
:root {
  --sky-blue: #38B6FF;
  --deep-navy: #0D1B2A;
  --jet-black: #0A0A0A;
  --white: #FFFFFF;
  --light-gray: #F4F6F8;
  --mid-gray: #8A9BB0;
  --alert-red: #E81C24;
  --gold: #D4A017;
  --font-head: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-ui: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&family=Inter:wght@400;500;600&display=swap');

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--jet-black);
  font-size: 17px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--sky-blue); }

img { max-width: 100%; height: auto; display: block; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--deep-navy);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 12px;
  padding: 6px 0;
  display: flex;
  align-items: center;
}
.top-bar .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.top-bar .date { color: var(--mid-gray); }
.lang-switcher { display: flex; gap: 8px; align-items: center; }
.lang-switcher a {
  color: var(--mid-gray);
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 3px;
  transition: all .2s;
}
.lang-switcher a.active,
.lang-switcher a:hover {
  background: var(--sky-blue);
  color: white;
}

/* ===== HEADER ===== */
header {
  background: var(--white);
  border-bottom: 3px solid var(--sky-blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--deep-navy);
}
.logo span { color: var(--sky-blue); }

nav { display: flex; gap: 0; }
nav a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 16px;
  color: var(--jet-black);
  border-bottom: 3px solid transparent;
  transition: all .2s;
}
nav a:hover, nav a.active {
  color: var(--sky-blue);
  border-bottom-color: var(--sky-blue);
}
nav a.visit-rw { color: var(--gold); }
nav a.visit-rw:hover { color: var(--gold); border-bottom-color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--jet-black); display: block; transition: .3s; }

/* ===== BREAKING TICKER ===== */
.ticker {
  background: var(--alert-red);
  color: white;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  position: relative;
}
.ticker-label {
  background: var(--jet-black);
  color: white;
  padding: 0 16px;
  margin-right: 20px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}
.ticker-track {
  display: inline-block;
  animation: ticker 40s linear infinite;
  padding-left: 160px;
}
.ticker-track a { color: white; margin: 0 40px; }
.ticker-track a:hover { text-decoration: underline; }
@keyframes ticker { 0% { transform: translateX(100vw); } 100% { transform: translateX(-100%); } }

/* ===== HERO / FEATURED ===== */
.hero {
  max-width: 1200px;
  margin: 32px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.hero-main {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.hero-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform .4s;
}
.hero-main:hover img { transform: scale(1.02); }
.hero-main .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 60px 28px 28px;
  color: white;
}
.hero-main .cat-badge {
  background: var(--sky-blue);
  color: white;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 10px;
}
.hero-main h1 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}
.hero-main .meta { font-family: var(--font-ui); font-size: 12px; opacity: 0.8; }

.hero-sidebar { display: flex; flex-direction: column; gap: 16px; }
.hero-side-card {
  display: flex;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.hero-side-card:last-child { border-bottom: none; }
.hero-side-card img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}
.hero-side-card .card-text { flex: 1; }
.hero-side-card .cat-badge {
  background: var(--sky-blue);
  color: white;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 6px;
}
.hero-side-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--jet-black);
}
.hero-side-card h3:hover { color: var(--sky-blue); }
.hero-side-card .meta { font-family: var(--font-ui); font-size: 11px; color: var(--mid-gray); margin-top: 4px; }

/* ===== SECTION HEADER ===== */
.section-hdr {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.section-hdr h2 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--deep-navy);
}
.section-hdr .line { flex: 1; height: 2px; background: var(--sky-blue); }
.section-hdr a {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--sky-blue);
  font-weight: 600;
}

/* ===== ARTICLE GRID ===== */
.section-wrap {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 20px;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.article-card {
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.article-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .3s;
}
.article-card:hover img { transform: scale(1.03); }
.article-card .card-body { padding: 14px 0; }
.article-card .cat-badge {
  background: var(--sky-blue);
  color: white;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 8px;
}
.article-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 8px;
  color: var(--jet-black);
}
.article-card h3:hover { color: var(--sky-blue); }
.article-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card .meta {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--mid-gray);
  margin-top: 10px;
  display: flex;
  gap: 12px;
}

/* ===== VISIT RWANDA STRIP ===== */
.vr-strip {
  background: linear-gradient(135deg, var(--deep-navy) 0%, #1a3a5c 100%);
  padding: 56px 20px;
  margin: 20px 0 40px;
}
.vr-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.vr-strip h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.vr-strip p { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 28px; }
.vr-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vr-card {
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s, background .2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.vr-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.12); }
.vr-card img { width: 100%; height: 140px; object-fit: cover; }
.vr-card .vr-card-body { padding: 14px; }
.vr-card h3 { font-family: var(--font-head); font-size: 16px; color: white; font-weight: 600; margin-bottom: 6px; }
.vr-card p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.4; }

/* ===== ARTICLE PAGE ===== */
.article-page {
  max-width: 780px;
  margin: 40px auto;
  padding: 0 20px;
}
.article-page .cat-badge {
  background: var(--sky-blue);
  color: white;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 16px;
}
.article-page h1 {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--deep-navy);
}
.article-page .article-meta {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--mid-gray);
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 28px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.article-page .hero-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 28px;
}
.article-page .article-body {
  font-size: 18px;
  line-height: 1.75;
  color: #222;
}
.article-page .article-body p { margin-bottom: 22px; }
.article-page .article-body h2 {
  font-family: var(--font-head);
  font-size: 26px;
  margin: 32px 0 14px;
  color: var(--deep-navy);
}
.article-page .article-body h3 {
  font-family: var(--font-head);
  font-size: 21px;
  margin: 28px 0 12px;
  color: var(--deep-navy);
}
.article-page .article-body blockquote {
  border-left: 4px solid var(--sky-blue);
  padding: 12px 20px;
  background: var(--light-gray);
  margin: 24px 0;
  font-style: italic;
  color: #444;
}
.article-tags {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  background: var(--light-gray);
  color: var(--deep-navy);
  font-family: var(--font-ui);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}
.archive-notice {
  background: #FFF8E1;
  border-left: 4px solid var(--gold);
  padding: 14px 20px;
  margin: 20px 0;
  font-family: var(--font-ui);
  font-size: 14px;
  border-radius: 0 4px 4px 0;
}
.archive-notice a { color: var(--sky-blue); font-weight: 600; }

/* ===== CATEGORY PAGE ===== */
.cat-page { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.cat-hero {
  background: var(--deep-navy);
  color: white;
  padding: 40px;
  border-radius: 6px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cat-hero .cat-icon { font-size: 48px; }
.cat-hero h1 { font-family: var(--font-head); font-size: 36px; font-weight: 700; }
.cat-hero p { color: rgba(255,255,255,0.7); margin-top: 6px; }

/* ===== VISIT RWANDA PAGE ===== */
.vr-page { max-width: 1100px; margin: 0 auto; padding: 0 20px 60px; }
.vr-page-hero {
  background: linear-gradient(135deg, #1a3a5c 0%, var(--deep-navy) 100%);
  color: white;
  padding: 80px 40px;
  text-align: center;
  margin-bottom: 56px;
  border-radius: 0 0 8px 8px;
}
.vr-page-hero h1 {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.vr-page-hero p { color: rgba(255,255,255,0.8); font-size: 18px; }
.vr-section { margin-bottom: 56px; }
.vr-section h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--deep-navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 5px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 24px;
}
.vr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vr-article-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.vr-article-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.vr-article-card img { width: 100%; height: 180px; object-fit: cover; }
.vr-article-card .body { padding: 16px; }
.vr-article-card h3 { font-family: var(--font-head); font-size: 18px; color: var(--deep-navy); margin-bottom: 8px; }
.vr-article-card p { font-size: 14px; color: #555; line-height: 1.5; }
.vr-cta {
  background: var(--gold);
  color: var(--deep-navy);
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background .2s;
}
.vr-cta:hover { background: #c4900a; color: white; }

/* ===== ABOUT / STATIC PAGES ===== */
.static-page { max-width: 820px; margin: 60px auto; padding: 0 20px; }
.static-page h1 {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 24px;
}
.static-page h2 {
  font-family: var(--font-head);
  font-size: 24px;
  margin: 32px 0 12px;
  color: var(--deep-navy);
}
.static-page p { margin-bottom: 16px; line-height: 1.7; }

/* ===== FOOTER ===== */
footer {
  background: var(--deep-navy);
  color: white;
  padding: 56px 20px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { font-size: 24px; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--sky-blue);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-family: var(--font-ui);
  font-size: 14px;
  transition: color .2s;
}
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-sidebar { display: none; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .vr-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .hamburger { display: flex; }
  .vr-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .article-grid { grid-template-columns: 1fr; }
  .vr-cards { grid-template-columns: 1fr; }
  .hero-main img { height: 280px; }
  .article-page h1 { font-size: 26px; }
  .vr-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ===== NAV MOBILE ===== */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: white;
  border-bottom: 2px solid var(--sky-blue);
  padding: 12px 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  color: var(--jet-black);
  border-bottom: 1px solid #f0f0f0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
