/*
Theme Name: Reggae Kenya Unified
Theme URI: https://reggaekenya.com
Author: Reggae Kenya
Author URI: https://reggaekenya.com
Description: Official Reggae Kenya music platform - a unified theme for the Kenyan reggae industry. Features artist profiles, music discovery, cultural archive, and data analytics.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: reggaekenya
Tags: music, reggae, dark, entertainment, custom-post-types

Reggae Kenya Unified Theme
Copyright (C) 2025 Reggae Kenya

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
*/

/* ============================================
   🎨 REGGAE KENYA DESIGN SYSTEM
   ============================================ */

:root {
    /* Rasta Colors */
    --rasta-red: #E8000D;
    --rasta-gold: #FCD116;
    --rasta-green: #078930;
    
    /* Dark Base */
    --dark-base: #0A0A0A;
    --dark-card: #1A1A1D;
    --dark-border: #2D2D30;
    
    /* Neon Accents */
    --neon-green: #39FF14;
    --neon-gold: #FFD700;
    --neon-red: #FF073A;
    
    /* Gradients */
    --rasta-gradient: linear-gradient(135deg, #E8000D 0%, #FCD116 50%, #078930 100%);
    --dark-gradient: linear-gradient(180deg, #0A0A0A 0%, #1A1A1D 100%);
    
    /* Functional Colors */
    --success: #078930;
    --warning: #FCD116;
    --error: #E8000D;
    --info: #00A8E8;
    
    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    --text-muted: #666666;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Typography */
    --font-display: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-body: 'Inter', 'Arial', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
}

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

body {
    background: var(--dark-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Dark Mode (default) */
body.dark-mode {
    background: var(--dark-base);
    color: var(--text-primary);
}

/* Container */
.rk-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

a {
    color: var(--rasta-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--neon-gold);
}

/* Buttons */
.rk-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: 4px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.rk-btn-primary {
    background: var(--rasta-gradient);
    color: var(--dark-base);
}

.rk-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.rk-btn-secondary {
    background: transparent;
    border: 2px solid var(--rasta-gold);
    color: var(--rasta-gold);
}

.rk-btn-secondary:hover {
    background: var(--rasta-gold);
    color: var(--dark-base);
}

/* Cards */
.rk-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.rk-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--rasta-gold);
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .rk-container {
        padding: 0 var(--space-md);
    }
}
