/* styles.css — One World News Company
   Light/navy corporate theme. Last updated: Apr 2026 */

:root {
  --navy: #0a1628;
  --navy2: #122040;
  --blue: #1a4f8a;
  --blue-light: #2a6abf;
  --sky: #e8f2ff;
  --gold: #c8a84b;
  --gold-light: #e8c96e;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light: #edf1f7;
  --border: #d8e0eb;
  --text: #1a1a2a;
  --mid: #6b7280;
  --dark: #0d1117;
  --red: #c0392b;
  --font-sans: 'Segoe UI', Arial, sans-serif;
  --font-serif: 'Georgia', 'Times New Roman', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--off-white); color: var(--text); line-height: 1.7; }

/* ---- header — sticky, dark navy ---- */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { text-decoration: none; display: flex; align-items: center; gap: 0.85rem; }
.logo-emblem {
  width: 46px;
  height: 46px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
}
.logo-text { line-height: 1.15; }
.logo-name { font-size: 1.2rem; font-weight: 700; color: var(--white); letter-spacing: 0.01em; }
.logo-name span { color: var(--gold); }
.logo-sub { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.45); }

nav ul { list-style: none; display: flex; gap: 0.1rem; }
nav ul li a {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}
nav ul li a:hover, nav ul li a.active {
  background: rgba(255,255,255,0.1);
  color: var(--gold);
}

/* ---- hero ---- */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(26,79,138,0.3) 0%, transparent 60%);
}
.hero-inner { position: relative; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 16px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hero h1 strong { font-weight: 800; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 2.5rem; }

/* ---- stats bar ---- */
.stats-bar {
  background: var(--navy2);
  border-top: 1px solid rgba(200,168,75,0.2);
  border-bottom: 3px solid var(--gold);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }

/* ---- sections ---- */
.section { padding: 4.5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.section-lead { font-size: 1.05rem; color: var(--mid); margin-bottom: 2.5rem; max-width: 680px; }

/* ---- program cards ---- */
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.program-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.program-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.program-card-top {
  background: var(--navy);
  color: var(--white);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.program-card-top::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--gold);
  opacity: 0.08;
  border-radius: 50%;
}
.program-type {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.program-card-top h3 { font-size: 1.3rem; font-weight: 700; line-height: 1.25; }
.program-card-body { padding: 1.5rem 1.75rem; }
.program-card-body p { font-size: 0.9rem; color: #555; margin-bottom: 1rem; }
.program-detail {
  font-size: 0.78rem;
  color: var(--mid);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.program-detail span { display: flex; align-items: center; gap: 0.3rem; }

/* ---- buttons ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); margin-left: 0.75rem; }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy2); }

/* ---- interior page header ---- */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.page-header h1 { font-size: 2.6rem; font-weight: 700; margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.65); font-size: 1rem; }

/* ---- team grid ---- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.team-card { background: var(--white); border: 1px solid var(--border); padding: 2rem; text-align: center; }
.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--navy);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  border: 3px solid var(--gold);
}
.team-card h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.2rem; }
.team-title { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 700; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.85rem; color: #555; line-height: 1.55; }

/* ---- contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 700; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.info-panel {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem;
}
.info-panel h3 { font-size: 1.2rem; color: var(--gold); margin-bottom: 1.5rem; font-weight: 700; }
.info-row { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.info-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.info-row h5 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.45); margin-bottom: 0.2rem; }
.info-row p { font-size: 0.9rem; color: rgba(255,255,255,0.85); }

/* ---- about ---- */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }

/* ---- CTA / newsletter section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
}
.cta-section h2 { font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.05rem; }

/* ---- footer ---- */
footer { background: var(--dark); color: rgba(255,255,255,0.45); padding: 3.5rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo-line { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.75rem; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1.5rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.65; }
.footer-col h5 { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 0.78rem; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ---- responsive breakpoints ---- */
@media (max-width: 900px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-grid, .about-grid, .mission-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .header-inner { flex-direction: column; gap: 0.75rem; }
  nav ul { flex-wrap: wrap; justify-content: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
