/*
Theme Name: Olieloaded Biography
Theme URI: https://oliveloaded.com
Author: Grok x Oliveloaded
Description: Modern dark-mode biography blog for Nigerian entertainment icons - Nollywood, Afrobeats & more.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.6
*/

:root {
  --primary: #00c853;    /* Emerald Green */
  --accent: #e91e63;     /* Neon Pink */
  --secondary: #9c27b0;  /* Purple */
  --gold: #ffd700;
  --dark-bg: #0a0a0a;
  --card-bg: #121212;
  --text: #e0e0e0;
  --text-light: #aaaaaa;
}

* { box-sizing: border-box; }

body {
  background: var(--dark-bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

a { color: var(--primary); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--accent); }

header {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.site-title {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero {
  height: 75vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(10,10,10,0.9));
}

.hero-content {
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: all 0.4s ease;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 200, 83, 0.25);
}

.neon-glow {
  text-shadow: 0 0 15px var(--primary), 0 0 30px var(--accent);
}

.btn {
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: white;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
  margin-top: 1rem;
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px var(--accent);
}

.prose {
  font-size: 1.1rem;
}

.prose h2, .prose h3 { color: var(--gold); }

/* Responsive */
@media (max-width: 768px) {
  .hero { height: 55vh; }
  .site-title { font-size: 1.8rem; }
}