/* MeB Press — Editorial Sports Press Landing Page */

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0D0D0D;
  --primary: #FF6B00;
  --secondary: #FF8C00;
  --text: #FFFFFF;
  --text-muted: #A0A0A0;
  --card: #111111;
  --border: #2A2A2A;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER / MASTHEAD ===== */
header {
  border-bottom: 3px solid var(--primary);
  padding: 20px 0 10px;
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.masthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text);
  text-decoration: none;
}

.logo span {
  color: var(--primary);
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 24px;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--primary);
}

.dateline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  margin-top: 10px;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 80px 0;
  border-bottom: 2px solid var(--border);
}

.hero-headline {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text);
  letter-spacing: -2px;
}

.hero-headline span {
  color: var(--primary);
}

.hero-subheadline {
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  font-style: italic;
}

.badge-container {
  margin-top: 30px;
}

.badge-container img {
  height: 50px;
  width: auto;
}

/* ===== SECTION LABELS ===== */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: -1px;
}

/* ===== FEATURES GRID (NEWSPAPER COLUMNS) ===== */
.features {
  padding: 80px 0;
  border-bottom: 2px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.feature {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.feature:last-child {
  border-bottom: none;
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 15px;
  display: block;
}

.feature h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.feature p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ===== WHY SECTION (EDITORIAL BLOCK QUOTE) ===== */
.why-section {
  padding: 80px 0;
  border-bottom: 2px solid var(--border);
}

.editorial-quote {
  background: var(--card);
  border-left: 4px solid var(--primary);
  padding: 40px;
  margin-top: 30px;
  border-radius: 4px;
}

.editorial-quote p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.editorial-quote p:last-child {
  margin-bottom: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-headline {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.cta-text {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ===== FOOTER ===== */
footer {
  border-top: 3px solid var(--primary);
  padding: 40px 0;
  text-align: center;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-text {
  color: var(--text-muted);
  font-size: 14px;
}

/* ===== PRIVACY / POLICY PAGES ===== */
.page-header {
  padding: 60px 0 40px;
  border-bottom: 2px solid var(--border);
}

.page-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.page-meta {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-content {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 32px;
  margin: 40px 0 20px;
  font-weight: 700;
}

.page-content h3 {
  font-size: 24px;
  margin: 30px 0 15px;
  font-weight: 600;
}

.page-content p {
  margin-bottom: 20px;
  color: var(--text-muted);
  line-height: 1.8;
}

.page-content ul {
  margin: 20px 0 20px 30px;
  color: var(--text-muted);
}

.page-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.page-content a {
  color: var(--primary);
  text-decoration: none;
}

.page-content a:hover {
  text-decoration: underline;
}

.contact-info {
  background: var(--card);
  border-left: 4px solid var(--primary);
  padding: 30px;
  margin: 30px 0;
  border-radius: 4px;
}

.contact-info strong {
  color: var(--text);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
    column-gap: 60px;
    position: relative;
  }

  .features-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
  }

  .feature {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .hero-headline {
    font-size: 42px;
  }

  .section-title {
    font-size: 32px;
  }

  .cta-headline {
    font-size: 36px;
  }

  .page-title {
    font-size: 36px;
  }

  nav {
    width: 100%;
    margin-top: 10px;
  }

  nav a {
    margin-left: 0;
    margin-right: 24px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 36px;
  }

  .editorial-quote {
    padding: 25px;
  }
}
