/* ============================================
   Keji Hamilton - Premium Music Artiste Website
   Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --primary: #d4af37;
    --primary-light: #f5d76e;
    --primary-dark: #b8962f;
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-dark-alt: #0e0e0e;
    --text-primary: #ffffff;
    --text-secondary: #d4d4d4;
    --text-muted: #999999;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(212, 175, 55, 0.2);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.15);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cinzel', serif;
    --navbar-bg: transparent;
    --navbar-border: transparent;
    --hero-overlay: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.9) 100%);
    --cta-box-bg: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(212,175,55,0.02) 100%);
    --footer-bg: var(--bg-secondary);
    --footer-bottom-border: var(--border-color);
    --about-image-border: 2px solid var(--border-gold);
    --card-hover-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(212,175,55,0.05);
    --stats-section-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    --video-section-bg: var(--bg-dark-alt);
    --hero-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    --page-hero-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    --search-form-bg: rgba(255,255,255,0.04);
    --toggle-bg: rgba(255,255,255,0.1);
    --toggle-hover: var(--primary);
    --toggle-color: var(--text-secondary);
    --toggle-hover-color: #000;
    --gradient-text: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
    --section-title-grad: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    --nav-link-color: rgba(255,255,255,0.8);
    --toggler-border: rgba(255,255,255,0.2);
    --placeholder-color: rgba(255,255,255,0.2);
    --overlay-bg: rgba(0,0,0,0.6);
    --overlay-light: rgba(0,0,0,0.5);
    --stat-bg: rgba(255,255,255,0.02);
    --social-bar-bg: rgba(0,0,0,0.9);
    --gallery-overlay-from: rgba(0,0,0,0.55);
    --gallery-overlay-to: transparent;
    --about-image-shadow: 0 20px 60px rgba(0,0,0,0.5);
    --audio-bar-bg: rgba(10,10,10,0.95);
    --muted-bg: rgba(255,255,255,0.04);
    --muted-bg-2: rgba(255,255,255,0.05);
    --mobile-nav-bg: rgba(10,10,10,0.98);
    --hover-color: #fff;
    --platform-hover-bg: rgba(255,255,255,0.08);
    --placeholder-icon: rgba(255,255,255,0.15);
}

/* ============================================
   Light Theme
   ============================================ */
[data-theme="light"] {
    --primary: #2563eb;
    --featured-bg: #1e3a5f;
    --primary-light: #60a5fa;
    --primary-dark: #1d4ed8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --bg-dark-alt: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-gold: rgba(37, 99, 235, 0.25);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    --shadow-gold: 0 8px 32px rgba(37, 99, 235, 0.15);
    --navbar-bg: rgba(255,255,255,0.95);
    --navbar-border: rgba(0,0,0,0.06);
    --hero-overlay: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.15) 50%, rgba(248,250,252,0.25) 100%);
    --cta-box-bg: linear-gradient(135deg, rgba(37,99,235,0.08) 0%, rgba(37,99,235,0.02) 100%);
    --footer-bg: #ffffff;
    --footer-bottom-border: rgba(0,0,0,0.08);
    --about-image-border: 2px solid var(--border-gold);
    --card-hover-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 30px rgba(37,99,235,0.06);
    --stats-section-bg: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    --video-section-bg: #f8fafc;
    --hero-bg: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #e2e8f0 100%);
    --page-hero-bg: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #e2e8f0 100%);
    --search-form-bg: #ffffff;
    --toggle-bg: rgba(0,0,0,0.06);
    --toggle-hover: var(--primary);
    --toggle-color: #666;
    --toggle-hover-color: #fff;
    --gradient-text: linear-gradient(135deg, #0f172a 30%, var(--primary) 100%);
    --section-title-grad: linear-gradient(135deg, #0f172a 0%, var(--primary) 100%);
    --nav-link-color: rgba(0,0,0,0.7);
    --toggler-border: rgba(0,0,0,0.12);
    --placeholder-color: rgba(0,0,0,0.08);
    --overlay-bg: rgba(0,0,0,0.35);
    --overlay-light: rgba(0,0,0,0.25);
    --stat-bg: #f8fafc;
    --social-bar-bg: #ffffff;
    --gallery-overlay-from: rgba(0,0,0,0.35);
    --gallery-overlay-to: transparent;
    --about-image-shadow: 0 20px 60px rgba(0,0,0,0.08);
    --audio-bar-bg: #ffffff;
    --muted-bg: #f1f5f9;
    --muted-bg-2: #f8fafc;
    --mobile-nav-bg: #ffffff;
    --hover-color: #000;
    --platform-hover-bg: rgba(0,0,0,0.06);
    --placeholder-icon: rgba(0,0,0,0.1);
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.navbar, .site-footer, .stat-card, .music-card, .video-card, .about-card, .cta-box, .hero-slide, .page-hero-bg, .contact-form-wrapper, .gallery-item, .form-control, .form-select { transition: background-color 0.3s ease, border-color 0.3s ease; }
a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; }

/* Typography */
.text-gold { color: var(--primary); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; }
.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}
.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 16px;
    background: var(--section-title-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}
.divider-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
}
.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.section {
    padding: 100px 0;
    position: relative;
}
.section-header { margin-bottom: 20px; }

/* Featured Section - Light Mode Blue Background */
.featured-section { background: transparent; }
[data-theme="light"] .featured-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #1a2d4a 50%, #0f1f3d 100%);
}
[data-theme="light"] .featured-section .section-title {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    background: none;
}
[data-theme="light"] .featured-section .section-badge {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    color: #93c5fd;
}
[data-theme="light"] .featured-section .section-divider::before,
[data-theme="light"] .featured-section .section-divider::after {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}
[data-theme="light"] .featured-section .empty-state p,
[data-theme="light"] .featured-section .empty-state i { color: rgba(255,255,255,0.6) !important; }
[data-theme="light"] .featured-section .music-card {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.1);
}
[data-theme="light"] .featured-section .music-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
}
[data-theme="light"] .featured-section .music-card-title { color: #ffffff; }
[data-theme="light"] .featured-section .music-card-date,
[data-theme="light"] .featured-section .music-card-desc,
[data-theme="light"] .featured-section .music-card-plays { color: rgba(255,255,255,0.7); }
[data-theme="light"] .featured-section .platform-link {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
}
[data-theme="light"] .featured-section .btn-outline-gold {
    border-color: rgba(255,255,255,0.4);
    color: #ffffff !important;
}
[data-theme="light"] .featured-section .btn-outline-gold:hover {
    background: #ffffff;
    color: #1e3a5f !important;
    border-color: #ffffff;
}

/* Light Mode - Hero Slider Text Visibility */
[data-theme="light"] .hero-title {
    text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.3);
}
[data-theme="light"] .hero-badge {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    text-shadow: 0 0 3px #000, 0 0 5px #000, 0 2px 4px rgba(0,0,0,0.8);
    background: rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.4);
}
[data-theme="light"] .hero-subtitle {
    color: #ffffff !important;
    text-shadow: 0 0 3px #000, 0 0 5px #000, 0 2px 4px rgba(0,0,0,0.8);
}
[data-theme="light"] .hero-desc {
    color: #ffffff !important;
    text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
[data-theme="light"] .btn-hero-secondary {
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.6);
}
[data-theme="light"] .btn-hero-secondary:hover {
    color: #ffffff !important;
    border-color: #ffffff;
    background: rgba(255,255,255,0.1);
}

/* Navbar */
.navbar {
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
    z-index: 1000;
}
.navbar.scrolled {
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--navbar-border);
    padding: 8px 0;
}
.navbar.scrolled .navbar-brand { transform: scale(0.9); }
.navbar-brand {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    transition: var(--transition);
}
.navbar-logo { height: 50px; transition: var(--transition); }
.navbar .nav-link {
    color: var(--nav-link-color) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 18px !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.5px;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary) !important;
    background: rgba(212, 175, 55, 0.08);
}
.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.navbar-toggler { border: 1px solid var(--toggler-border); padding: 8px 12px; }
.navbar-toggler:focus { box-shadow: 0 0 0 2px var(--primary); }

/* Theme Toggle Button */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--toggle-bg);
    border: 1px solid var(--border-color);
    color: var(--toggle-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    font-size: 18px;
    position: relative;
}
.theme-toggle:hover {
    background: var(--toggle-hover);
    color: var(--toggle-hover-color);
    border-color: var(--toggle-hover);
    transform: rotate(15deg);
}
.theme-toggle .toggle-sun,
.theme-toggle .toggle-moon {
    position: absolute;
    transition: var(--transition);
}
.theme-toggle .toggle-sun { opacity: 0; transform: scale(0) rotate(-90deg); }
.theme-toggle .toggle-moon { opacity: 1; transform: scale(1) rotate(0); }
[data-theme="light"] .theme-toggle .toggle-sun { opacity: 1; transform: scale(1) rotate(0); }
[data-theme="light"] .theme-toggle .toggle-moon { opacity: 0; transform: scale(0) rotate(90deg); }

/* Hero Section */
.hero-section { position: relative; }
.hero-slide {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--hero-bg);
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 140px 0 80px; }
.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 32px;
    line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-hero-primary {
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000 !important;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    color: #000 !important;
}
.btn-hero-secondary {
    padding: 16px 36px;
    background: transparent;
    color: var(--text-primary) !important;
    border: 2px solid var(--toggler-border);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}
.btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    transform: translateY(-3px);
}
.btn-outline-gold {
    padding: 14px 32px;
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}
.btn-outline-gold:hover {
    background: var(--primary);
    color: #000 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}
.btn-gold {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000 !important;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}
.hero-artwork { position: relative; display: inline-block; }
.hero-disc {
    font-size: 200px;
    color: var(--primary);
    opacity: 0.6;
    animation: spin 20s linear infinite;
}
.hero-ring {
    position: absolute;
    inset: -20px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    animation: pulse-ring 3s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.2; }
}
#heroSlider .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    opacity: 0.5;
    margin: 0 6px;
    transition: var(--transition);
}
#heroSlider .carousel-indicators button.active {
    background: var(--primary);
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

/* Social Bar */
.social-bar {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.social-bar-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--muted-bg-2);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 18px;
    transition: var(--transition);
    position: relative;
}
.social-bar-link:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    transform: translateX(-4px);
}
.social-bar-label {
    position: absolute;
    right: 56px;
    background: var(--social-bar-bg);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.social-bar-link:hover .social-bar-label { opacity: 1; }

/* Music Card */
.music-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}
.music-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
}
.music-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}
.music-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.music-card:hover .music-card-img img { transform: scale(1.08); }
.music-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--placeholder-icon);
}
.music-card-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.music-card:hover .music-card-overlay { opacity: 1; }
.btn-play-preview {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #000;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    transition: var(--transition);
}
.btn-play-preview:hover {
    transform: scale(1.1);
    background: var(--primary-light);
    color: #000;
}
.music-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.music-card-body { padding: 20px; }
.music-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--font-body);
}
.music-card-date { color: var(--text-muted); }
.music-card-desc {
    color: var(--text-secondary);
    font-size: 13px;
    margin: 8px 0;
}
.music-card-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.platform-link {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--text-secondary);
    font-size: 16px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}
.platform-link:hover {
    transform: translateY(-2px);
    color: var(--hover-color);
}
.platform-link.spotify:hover { background: #1DB954; color: #000; }
.platform-link.apple:hover { background: #fff; color: #000; }
.platform-link.audiomack:hover { background: #ffa73b; color: #000; }
.platform-link.soundcloud:hover { background: #ff7700; color: #fff; }
.platform-link.youtube:hover { background: #ff0000; color: #fff; }
.platform-link.deezer:hover { background: #feaa2d; color: #000; }
.platform-link.boomplay:hover { background: #00d664; color: #000; }
.btn-download {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    font-size: 12px;
    transition: var(--transition);
}
.btn-download:hover { background: var(--primary); color: #000; }

/* Video Card */
.video-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}
.video-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.video-card-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.video-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.video-card:hover .video-card-thumb img { transform: scale(1.05); }
.video-card-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-light);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.video-card:hover .video-card-overlay { opacity: 1; }
.btn-play-video {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    transition: var(--transition);
}
.btn-play-video:hover {
    transform: scale(1.15);
    background: var(--primary);
    color: #000;
}
.video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #000;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}
.video-card-body { padding: 20px; }
.video-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.video-card-desc { color: var(--text-secondary); font-size: 13px; }
.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--placeholder-icon);
}

/* Video Section */
.video-section { background: var(--video-section-bg); }
.featured-video-frame {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-gold);
}
.featured-video-info h4 { color: var(--primary); }
.featured-video-info p { color: var(--text-secondary); }

/* Stats Section */
.stats-section {
    background: var(--stats-section-bg);
}
.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--stat-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}
.stat-card:hover {
    border-color: var(--border-gold);
    background: rgba(212, 175, 55, 0.03);
    transform: translateY(-4px);
}
.stat-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    color: var(--text-primary);
}
.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-box {
    background: var(--cta-box-bg);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 60px;
}
.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.cta-text { color: var(--text-secondary); font-size: 1.05rem; }

/* Page Hero */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--page-hero-bg);
    z-index: 0;
}
.page-hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 12px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}
.breadcrumb-links { margin-top: 20px; font-size: 14px; color: var(--text-muted); }
.breadcrumb-links a { color: var(--text-secondary); }
.breadcrumb-links a:hover { color: var(--primary); }
.breadcrumb-links span { color: var(--primary); }

/* About Page */
.about-image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--about-image-border);
    box-shadow: var(--about-image-shadow);
}
.about-image { width: 100%; height: 500px; object-fit: cover; }
.about-image-placeholder {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--placeholder-icon);
}
.about-bio { color: var(--text-secondary); line-height: 2; font-size: 1.05rem; }
.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px;
    height: 100%;
    transition: var(--transition);
}
.about-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}
.about-card-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
}
.about-card-title { font-size: 1.3rem; margin-bottom: 12px; }
.about-card-text { color: var(--text-secondary); line-height: 1.8; }
.bg-dark-alt { background: var(--bg-dark-alt); }
.career-content { color: var(--text-secondary); line-height: 2; }

/* Gallery */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
}
.btn-filter {
    padding: 8px 24px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}
.btn-filter:hover,
.btn-filter.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}
.gallery-item {
    position: relative;
    display: block;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
}
.gallery-thumb {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}
.gallery-item:hover .gallery-thumb { transform: scale(1.06); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--gallery-overlay-from) 0%, var(--gallery-overlay-to) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-info h6 { color: #fff; font-size: 14px; margin: 0; }
.gallery-cat {
    font-size: 11px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: #fff;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-icon { opacity: 1; }
.gallery-admin-item { position: relative; }
.gallery-admin-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

/* Contact */
.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-item h6 { margin-bottom: 2px; font-size: 14px; color: var(--text-secondary); }
.contact-item a, .contact-item span { color: var(--text-primary); }
.contact-social-link {
    width: 42px;
    height: 42px;
    background: var(--muted-bg-2);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 18px;
    transition: var(--transition);
}
.contact-social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

/* Forms */
.form-control, .form-select {
    background: var(--search-form-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    background: rgba(255,255,255,0.06);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    color: var(--text-primary);
}
.form-control::placeholder { color: var(--text-muted); }
.form-label { color: var(--text-secondary); font-size: 13px; font-weight: 500; margin-bottom: 6px; }
.form-select option { background: var(--bg-primary); color: var(--text-primary); }
.search-form .form-control { border-radius: 50px 0 0 50px; }
.search-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 14px 24px;
}

/* Footer */
.site-footer {
    background: var(--footer-bg);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}
.footer-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.site-footer .container { position: relative; }
.site-footer { padding: 80px 0 0; }
.footer-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    padding-bottom: 12px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}
.footer-desc { color: var(--text-secondary); font-size: 14px; line-height: 1.8; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--muted-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 16px;
    transition: var(--transition);
}
.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
    transform: translateY(-3px);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a::before {
    content: '→';
    color: var(--primary);
    font-size: 12px;
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.newsletter-form .input-group .form-control {
    border-radius: 50px 0 0 50px;
    border: 1px solid var(--border-color);
}
.btn-subscribe {
    border-radius: 0 50px 50px 0;
    background: var(--primary);
    color: #000;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    transition: var(--transition);
}
.btn-subscribe:hover { background: var(--primary-light); color: #000; }
.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid var(--footer-bottom-border);
    font-size: 14px;
    color: var(--text-muted);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-light); color: #000; transform: translateY(-3px); }

/* Music Toggle */
.music-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 46px;
    height: 46px;
    background: var(--muted-bg-2);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 999;
}
.music-toggle:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}
.music-toggle.playing { background: var(--primary); color: #000; animation: music-pulse 1.5s ease-in-out infinite; }
@keyframes music-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
}

/* Audio Player Bar */
.audio-player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--audio-bar-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 12px 24px;
    z-index: 1000;
    transform: translateY(100%);
    transition: var(--transition);
}
.audio-player-bar.show { transform: translateY(0); }

/* Empty State */
.empty-state { padding: 40px; color: var(--text-muted); }

/* Override Bootstrap text-muted for dark theme */
.text-muted { color: var(--text-muted) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.lead { color: var(--text-secondary); }

/* Animations */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* Responsive – Enhanced Mobile-First */
@media (max-width: 1199px) {
    .hero-title { font-size: 3.5rem; }
    .hero-desc { font-size: 1rem; }
    .section-title { font-size: 2.2rem; }
    .page-hero-title { font-size: 3rem; }
    .music-card-body { padding: 16px; }
}
@media (max-width: 991px) {
    .hero-title { font-size: 2.8rem; }
    .hero-desc { font-size: 0.95rem; max-width: 100%; }
    .section-title { font-size: 1.8rem; }
    .page-hero-title { font-size: 2.5rem; }
    .hero-slide { min-height: 80vh; }
    .hero-badge { font-size: 11px; padding: 6px 16px; }
    .social-bar { display: none; }
    .cta-box { padding: 40px 24px; }
    .cta-box .row > div:last-child { text-align: left !important; margin-top: 16px; }
    .stat-card { padding: 28px 16px; }
    .stat-number { font-size: 2rem; }
    .section { padding: 60px 0; }
    .about-image, .about-image-placeholder { height: 380px; }
    .about-card { padding: 24px; }
    .contact-item { gap: 12px; }
    .contact-icon { width: 44px; height: 44px; font-size: 18px; }
    .music-card-links { gap: 6px; }
    .platform-link { width: 30px; height: 30px; font-size: 14px; }
    .video-card-body { padding: 16px; }
    .navbar .nav-link { padding: 8px 12px !important; font-size: 13px; }
    .page-hero { padding: 140px 0 60px; }
    .footer-widget { margin-bottom: 16px; }
}
@media (max-width: 767px) {
    html { font-size: 15px; }
    .hero-title { font-size: 2.2rem; letter-spacing: 0; }
    .hero-subtitle { font-size: 0.85rem; letter-spacing: 2px; }
    .hero-desc { font-size: 0.9rem; }
    .section-title { font-size: 1.6rem; }
    .page-hero-title { font-size: 2rem; }
    .page-hero { padding: 120px 0 40px; }
    .hero-slide { min-height: 70vh; }
    .hero-content { padding: 110px 0 50px; }
    .hero-btns { flex-direction: column; gap: 10px; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; padding: 14px 24px; font-size: 14px; }
    .section { padding: 50px 0; }
    .section-header { margin-bottom: 10px; }
    .navbar-brand { font-size: 20px; }
    .navbar-logo { height: 36px; }
    .navbar .nav-link { padding: 10px 16px !important; font-size: 14px; }
    .navbar-collapse { background: var(--mobile-nav-bg); border-radius: 12px; padding: 8px; margin-top: 12px; border: 1px solid var(--border-color); }
    .about-image, .about-image-placeholder { height: 280px; }
    .about-card { padding: 20px; }
    .about-card-icon { font-size: 28px; }
    .about-card-title { font-size: 1.1rem; }
    .cta-box { padding: 28px 16px; }
    .cta-title { font-size: 1.3rem; }
    .contact-form-wrapper { padding: 20px; }
    .contact-item { margin-bottom: 14px; }
    .site-footer { padding: 40px 0 0; }
    .footer-bottom { margin-top: 24px; padding: 16px 0; text-align: center; }
    .footer-bottom .text-md-end { text-align: center !important; margin-top: 4px; }
    .gallery-thumb { height: 170px; }
    .gallery-filter { gap: 6px; }
    .btn-filter { padding: 6px 16px; font-size: 12px; }
    .back-to-top { bottom: 16px; right: 16px; width: 38px; height: 38px; font-size: 15px; }
    .music-toggle { bottom: 16px; left: 16px; width: 38px; height: 38px; font-size: 15px; }
    .stat-card { padding: 24px 12px; }
    .stat-icon { font-size: 28px; }
    .video-card-title { font-size: 0.95rem; }
    .music-card-title { font-size: 0.95rem; }
    .section-badge { font-size: 11px; padding: 5px 14px; margin-bottom: 12px; }
    .footer-title { font-size: 1.05rem; }
    .form-control, .form-select { padding: 12px 14px; font-size: 15px; }
    .contact-form-wrapper h2 { font-size: 1.3rem; }
    .breadcrumb-links { font-size: 13px; }
    .page-hero-subtitle { font-size: 0.95rem; }
    .stats-section .row { row-gap: 12px; }
    .stats-section .col-md-6 { padding: 6px; }
    .empty-state { padding: 24px; }
}
@media (max-width: 575px) {
    html { font-size: 14px; }
    .hero-title { font-size: 1.7rem; }
    .hero-subtitle { font-size: 0.75rem; letter-spacing: 1px; }
    .hero-desc { font-size: 0.85rem; }
    .section-title { font-size: 1.3rem; }
    .page-hero-title { font-size: 1.5rem; }
    .hero-slide { min-height: 55vh; }
    .hero-content { padding: 100px 0 40px; }
    .hero-badge { font-size: 10px; padding: 4px 12px; margin-bottom: 12px; }
    .section { padding: 36px 0; }
    .page-hero { padding: 100px 0 32px; }
    .gallery-thumb { height: 130px; }
    .stat-number { font-size: 1.4rem; }
    .stat-label { font-size: 11px; }
    .section-divider { margin-bottom: 24px; }
    .section-divider::before, .section-divider::after { width: 24px; }
    .divider-icon { width: 36px; height: 36px; font-size: 15px; }
    .music-card-body { padding: 12px; }
    .music-card-title { font-size: 0.9rem; }
    .video-card-body { padding: 12px; }
    .video-card-title { font-size: 0.9rem; }
    .about-image, .about-image-placeholder { height: 220px; }
    .about-card { padding: 16px; }
    .about-card-text { font-size: 0.9rem; }
    .about-bio { font-size: 0.95rem; }
    .contact-form-wrapper { padding: 16px; }
    .contact-form-wrapper h2 { font-size: 1.15rem; }
    .site-footer { padding: 32px 0 0; }
    .navbar-logo { height: 32px; }
    .footer-desc { font-size: 13px; }
    .footer-links a { font-size: 13px; }
    .cta-title { font-size: 1.15rem; }
    .cta-text { font-size: 0.9rem; }
    .btn-hero-primary, .btn-hero-secondary { padding: 12px 20px; font-size: 13px; }
    .btn-outline-gold { padding: 10px 20px; font-size: 13px; }
    .featured-video-info h4 { font-size: 1rem; }
    .gallery-filter { gap: 4px; }
    .btn-filter { padding: 5px 12px; font-size: 11px; }
    .search-form .btn { padding: 10px 16px; }
}

/* Additional Mobile Safety */
img { max-width: 100%; height: auto; }
iframe, video { max-width: 100%; }
.container { padding-left: max(12px, env(safe-area-inset-left)); padding-right: max(12px, env(safe-area-inset-right)); }
.table-responsive { -webkit-overflow-scrolling: touch; }

/* Gallery Aspect Ratio */
.gallery-item { position: relative; overflow: hidden; }
.gallery-thumb { aspect-ratio: 1; object-fit: cover; width: 100%; height: auto; }
.gallery-item-wrap { margin-bottom: 0; }
.gallery-item-overlay { top: 0; left: 0; right: 0; bottom: 0; position: absolute; }

/* Better touch targets on mobile */
@media (pointer: coarse) {
    .nav-link, .btn, .social-icon, .platform-link, .btn-filter { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
    .music-card-overlay .btn-play-preview { min-height: 60px; }
    .form-control, .form-select { font-size: 16px; }
}

/* Print */
@media print {
    .navbar, .footer-bottom, .social-bar, .back-to-top, .music-toggle { display: none !important; }
    body { background: #fff; color: #000; }
}

/* Lightbox Overrides */
.lightbox { background: rgba(0,0,0,0.95) !important; }
.lb-data .lb-caption { color: var(--primary) !important; font-family: var(--font-body) !important; }

/* Selection */
::selection { background: var(--primary); color: #000; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Alert Styling */
.alert-success {
    background: rgba(25, 135, 84, 0.1);
    border: 1px solid rgba(25, 135, 84, 0.3);
    color: #75b798;
    border-radius: 12px;
}
.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ea868f;
    border-radius: 12px;
}
