/*
Theme Name: Duke Media Unified Theme
Theme URI: https://dukemedia.com/unified-theme
Author: Duke Media Kenya & Teams
Author URI: https://dukemedia.com
Description: A modern, ultra-high performance unified WordPress theme combining an Online Newspaper, Video Streaming Hub, Audio Player and Podcasts, Live Stream integrations, and front-end editor dashboards. Inspired by BBC, CNN, Netflix, and Spotify. Designed with Duke Media Kenya guidelines.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: duke-media-unified-theme
Tags: newspaper, video-stream, podcast-player, dark, light, customizable, responsive-layout, theme-options, translation-ready

All custom variables are compiled based on branding guidelines.
*/

:root {
  --color-orange: #F39223;
  --color-orange-light: #FDBA74;
  --bg-black: #0A0A0A;
  --bg-panel: #161616;
  --bg-panel-2: #1E1E1E;
  --border-dark: #2A2A2A;
  --text-white: #FFFFFF;
  --text-muted: #9CA3AF;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset and Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-black);
  color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Custom layout spacing and accents */
a {
  color: var(--color-orange);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-orange-light);
}

.brand-accent { color: var(--color-orange); }

/* Unified Header Styles */
.site-header {
  background-color: var(--color-slate);
  color: #ffffff;
}

.breaking-news-ticker {
  background-color: var(--color-orange);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 14px;
}

/* Media Card Grid Styles */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: 20px 0;
}

.media-card {
  background: var(--color-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* WordPress Core Elements Support */
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 20px 20px 0; }
.alignright { float: right; margin: 0 0 20px 20px; }
