/*
Theme Name: SynthWave
Description: Professional music WordPress theme with cyberpunk aesthetic, perfect for electronic artists, DJs, and record labels. Features portfolio filtering, event management, and music player integration.
Author: Your Name
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: synthwave
Tags: music, artist, portfolio, events, dark, cyberpunk, responsive, custom-post-types
*/

/* =================================
   CSS VARIABLES - COLOR SCHEMES
   ================================= */
:root {
    /* Default Colors - Overridden by Customizer */
    --primary-color: #00ffff;
    --secondary-color: #ff0080;
    --accent-color: #8000ff;
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-color: rgba(0, 255, 255, 0.2);
    --overlay-color: rgba(0, 0, 0, 0.8);
    --shadow: 0 2px 20px rgba(0, 255, 255, 0.1);
    
    /* Additional theme variables */
    --warning-color: #ffff00;
    --danger-color: #ff0040;
    --success-color: #00ff88;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-hover: rgba(0, 255, 255, 0.1);
    --border-width: 1px;
    --border-radius: 0px;
    --overlay-heavy: rgba(0, 0, 0, 0.95);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 6rem;
    
    /* Typography */
    --font-primary: 'Arial', sans-serif;
    --font-secondary: 'Arial', sans-serif;
    --font-mono: 'Courier New', monospace;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
}

/* =================================
   RESET AND BASE STYLES
   ================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 255, 0.03) 2px,
            rgba(0, 255, 255, 0.03) 4px
        );
    pointer-events: none;
    z-index: 1;
}

/* WordPress Core Styles */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin: 0 auto 1rem;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
}

.wp-caption-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    padding: 0.5rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--secondary-color);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lists */
ul, ol {
    list-style: none;
}

/* Form elements */
input, button, textarea, select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
}

/* =================================
   TYPOGRAPHY HIERARCHY
   ================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 0.9;
    color: var(--primary-color);
    text-shadow: 
        0 0 10px currentColor,
        0 0 20px currentColor;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-primary);
}

h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--primary-color);
}

h5 {
    font-size: clamp(1rem, 2vw, 1.2rem);
}

h6 {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* =================================
   UTILITY CLASSES
   ================================= */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-xxl) 0;
    position: relative;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.text-muted { color: var(--text-muted); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.btn {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.05em;
    border: 2px solid var(--primary-color);
    transition: all var(--transition-base);
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left var(--transition-base);
    z-index: -1;
}

.btn:hover {
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.btn-primary::before {
    background: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.6);
}

/* =================================
   HEADER & NAVIGATION
   ================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: var(--overlay-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color) 20%, 
        var(--primary-color) 80%, 
        transparent);
}

.site-header.scrolled {
    background: var(--bg-primary);
    padding: var(--space-sm) 0;
    box-shadow: 0 2px 20px rgba(0, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.site-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    transition: all var(--transition-base);
}

.site-logo:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px currentColor;
}

.custom-logo {
    max-height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--primary-color));
}

.main-navigation {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-navigation a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
    position: relative;
    padding: var(--space-sm) 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

.main-navigation a:hover,
.main-navigation a.current-menu-item {
    color: var(--primary-color);
    text-shadow: 0 0 10px currentColor;
}

.main-navigation a:hover::after,
.main-navigation a.current-menu-item::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: var(--space-sm);
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* =================================
   SIDEBAR NAVIGATION (Music Page)
   ================================= */
.sidebar-layout {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

.sidebar-nav {
    width: 250px;
    background: var(--bg-secondary);
    padding: 2rem 0;
    border-right: 1px solid var(--border-color);
    position: fixed;
    left: 0;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.sidebar-nav .site-logo {
    padding: 0 2rem;
    margin-bottom: 3rem;
    display: block;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-menu a {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
    position: relative;
}

.sidebar-menu a:hover,
.sidebar-menu a.current-menu-item {
    color: var(--primary-color);
    background: var(--bg-hover);
}

.sidebar-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform var(--transition-base);
}

.sidebar-menu a:hover::after,
.sidebar-menu a.current-menu-item::after {
    transform: scaleY(1);
}

.sidebar-content {
    flex: 1;
    margin-left: 250px;
    padding: 2rem;
}

/* =================================
   BREADCRUMBS
   ================================= */
.breadcrumbs {
    padding: 8rem 0 2rem 0;
    background: var(--bg-secondary);
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.breadcrumb-list li {
    color: var(--text-muted);
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 1rem;
    color: var(--primary-color);
}

.breadcrumb-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-base);
}

.breadcrumb-list a:hover {
    color: var(--primary-color);
}

/* =================================
   MAIN CONTENT AREAS
   ================================= */
.site-main {
    padding-top: 80px;
    min-height: 100vh;
}

.content-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.entry-header {
    text-align: center;
    padding: 4rem 0;
}

.entry-title {
    margin-bottom: 1rem;
}

.entry-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.entry-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--border-color);
}

/* =================================
   HERO SECTION - HOMEPAGE
   ================================= */
.hero-homepage {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 0, 128, 0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: glow-pulse 3s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes glow-pulse {
    0% { text-shadow: 0 0 20px var(--primary-color); }
    100% { text-shadow: 0 0 30px var(--secondary-color), 0 0 40px var(--secondary-color); }
}

/* =================================
   POST LISTS & ARCHIVES
   ================================= */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
    backdrop-filter: blur(10px);
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 0, 128, 0.1) 100%
    );
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.post-card:hover::before {
    opacity: 1;
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.post-thumbnail {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
    filter: contrast(1.2) saturate(1.3);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-primary);
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    text-shadow: 0 0 20px currentColor;
}

.post-content {
    padding: 2rem;
}

.post-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.post-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

.post-title a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px currentColor;
}

.post-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.post-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* =================================
   ABOUT PREVIEW SECTION
   ================================= */
.about-preview {
    background: var(--bg-secondary);
    position: relative;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--text-primary);
    text-shadow: 0 0 30px currentColor;
}

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* =================================
   PORTFOLIO STYLES
   ================================= */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--bg-primary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition-slow);
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    position: relative;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(128, 0, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(0, 255, 255, 0.1) 100%
    );
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(128, 0, 255, 0.3);
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.portfolio-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    position: relative;
    overflow: hidden;
}

.portfolio-item-content {
    padding: 2rem;
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.portfolio-category {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* =================================
   MUSIC & TRACKS STYLES
   ================================= */
.track-list {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    margin: 2rem 0;
}

.track-list-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-card);
}

.track-list-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.track-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.track-item:hover {
    background: var(--bg-card);
}

.track-number {
    width: 30px;
    color: var(--text-muted);
    font-weight: bold;
}

.track-play-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.track-play-btn:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.track-details {
    flex: 1;
}

.track-name {
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.track-duration {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.streaming-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.streaming-btn {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: all var(--transition-base);
}

.streaming-btn:hover {
    border-color: var(--primary-color);
    background: var(--bg-hover);
    color: var(--primary-color);
}

/* =================================
   EVENTS STYLES
   ================================= */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.event-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 0, 128, 0.1) 0%, 
        transparent 50%, 
        rgba(128, 0, 255, 0.1) 100%
    );
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.event-card:hover::before {
    opacity: 1;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-
/* =================================
   RESET AND BASE STYLES
   ================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* WordPress Core Styles */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin: 0 auto 1rem;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1rem;
}

.wp-caption-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    padding: 0.5rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

/* =================================
   TYPOGRAPHY HIERARCHY
   ================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 0.9;
    color: var(--primary-color);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-primary);
}

h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--primary-color);
}

h5 {
    font-size: clamp(1rem, 2vw, 1.2rem);
}

h6 {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* =================================
   UTILITY CLASSES
   ================================= */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.05em;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

/* =================================
   HEADER & NAVIGATION
   ================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--overlay-color);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: var(--bg-primary);
    box-shadow: 0 2px 20px rgba(0, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    transform: scale(1.1);
}

/* =================================
   MUSIC PAGE STYLES
   ================================= */
.music-player {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 210px;
    background: var(--bg-tertiary);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    z-index: var(--z-fixed);
    backdrop-filter: blur(10px);
}

.current-track {
    margin-bottom: 1rem;
}

.current-track .track-title {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.current-track .track-artist {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.control-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.control-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.control-btn.play-pause {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn.play-pause:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.progress-bar:hover {
    height: 6px;
}

.progress {
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--primary-color);
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.track-filters {
    margin: 3rem 0;
    text-align: center;
}

.track-filters .filter-btn {
    margin: 0 0.5rem 0.5rem 0;
}

.tracks-container {
    margin-top: 2rem;
}

.track-list {
    margin-bottom: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
}

.track-list:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.track-list-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}

.track-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.track-list-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.track-list-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

.track-list-title a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px currentColor;
}

.track-categories {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.track-technical-info {
    font-size: 0.8rem;
    color: var(--accent-color);
    display: flex;
    gap: 1rem;
}

.track-artwork {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    flex-    .music-player {
        position: static;
        width: 100%;
        margin: 2rem auto;
        max-width: 400px;
    }

/* =================================
   RESPONSIVE DESIGN
   ================================= */
@media (max-width: 768px) {
    .main-navigation {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid var(--border-color);
    }

    .main-navigation.active {
        transform: translateX(0);
    }

    .mobile-toggle {
        display: flex;
    }

    .sidebar-layout {
        flex-direction: column;
    }

    .sidebar-nav {
        position: relative;
        width: 100%;
        height: auto;
        top: 0;
    }

    .sidebar-content {
        margin-left: 0;
        padding: 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .posts-grid,
    .portfolio-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
        text-align: center;
    }

    .streaming-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .breadcrumbs {
        padding: 6rem 0 1rem 0;
    }

    h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem;
        margin: 2rem 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* =================================
   WORDPRESS ADMIN BAR ADJUSTMENT
   ================================= */
.admin-bar .site-header {
    top: 32px;
}

.admin-bar .site-main {
    padding-top: 112px;
}

.admin-bar .sidebar-nav {
    top: 112px;
    height: calc(100vh - 112px);
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }

    .admin-bar .site-main {
        padding-top: 126px;
    }

    .admin-bar .sidebar-nav {
        top: 126px;
        height: calc(100vh - 126px);
    }
}

/* =================================
   ACCESSIBILITY
   ================================= */
.screen-reader-text {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* =================================
   PRINT STYLES
   ================================= */
@media print {
    .site-header,
    .site-footer,
    .sidebar-nav,
    .portfolio-filters,
    .mobile-toggle {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .sidebar-content {
        margin-left: 0;
    }
} space-between;
    align-items: center;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    text-decoration: none;
}

.custom-logo {
    max-height: 60px;
    width: auto;
}

.main-navigation {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-navigation a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
}

.main-navigation a:hover,
.main-navigation a.current-menu-item {
    color: var(--primary-color);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation a.current-menu-item::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* =================================
   SIDEBAR NAVIGATION (Music Page)
   ================================= */
.sidebar-layout {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

.sidebar-nav {
    width: 250px;
    background: var(--bg-secondary);
    padding: 2rem 0;
    border-right: 1px solid var(--border-color);
    position: fixed;
    left: 0;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.sidebar-nav .site-logo {
    padding: 0 2rem;
    margin-bottom: 3rem;
    display: block;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-menu a {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-menu a:hover,
.sidebar-menu a.current-menu-item {
    color: var(--primary-color);
    background: rgba(0, 255, 255, 0.1);
}

.sidebar-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sidebar-menu a:hover::after,
.sidebar-menu a.current-menu-item::after {
    transform: scaleY(1);
}

.sidebar-content {
    flex: 1;
    margin-left: 250px;
    padding: 2rem;
}

/* =================================
   BREADCRUMBS
   ================================= */
.breadcrumbs {
    padding: 8rem 0 2rem 0;
    background: var(--bg-secondary);
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.breadcrumb-list li {
    color: var(--text-muted);
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 1rem;
    color: var(--primary-color);
}

.breadcrumb-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: var(--primary-color);
}

/* =================================
   MAIN CONTENT AREAS
   ================================= */
.site-main {
    padding-top: 80px;
    min-height: 100vh;
}

.content-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.entry-header {
    text-align: center;
    padding: 4rem 0;
}

.entry-title {
    margin-bottom: 1rem;
}

.entry-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.entry-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--border-color);
}

/* =================================
   POST LISTS & ARCHIVES
   ================================= */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.post-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.post-thumbnail {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
}

.post-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.post-title a {
    color: inherit;
    text-decoration: none;
}

.post-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =================================
   PORTFOLIO STYLES
   ================================= */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--bg-primary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.portfolio-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.portfolio-item-content {
    padding: 2rem;
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.portfolio-category {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* =================================
   MUSIC & TRACKS STYLES
   ================================= */
.track-list {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    margin: 2rem 0;
}

.track-list-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.05);
}

.track-list-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.track-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.track-number {
    width: 30px;
    color: var(--text-muted);
    font-weight: bold;
}

.track-play-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.track-play-btn:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
}

.track-details {
    flex: 1;
}

.track-name {
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.track-duration {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.streaming-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.streaming-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.streaming-btn:hover {
    border-color: var(--primary-color);
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary-color);
}

/* =================================
   EVENTS STYLES
   ================================= */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.event-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    position: relative;
}

.event-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-primary);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    border: 1px solid var(--border-color);
}

.event-content {
    padding: 2rem;
}

.event-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
}

.event-details {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.event-meta {
    list-style: none;
    margin-bottom: 1.5rem;
}

.event-meta li {
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
}

.event-meta strong {
    color: var(--primary-color);
}

/* =================================
   FORMS
   ================================= */
.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

.form-error {
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.form-success {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

/* Comment Forms */
.comment-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border: 1px solid var(--border-color);
    margin: 2rem 0;
}

.comment-list {
    list-style: none;
    margin: 2rem 0;
}

.comment {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.comment-author {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.comment-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* =================================
   FOOTER
   ================================= */
.site-footer {
    background: var(--bg-secondary);
    padding: 4rem 0 2rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-widget {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.footer-widget-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary-color);
}

.site-info {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Social Media Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content:/*
Theme Name: SynthWave
Description: Professional synthwave WordPress theme with retro-futuristic aesthetic, perfect for electronic artists, DJs, and digital creators. Features neon colors, grid patterns, and cyberpunk styling with portfolio filtering, event management, and music player integration.
Author: Your Name
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: synthwave
Tags: music, artist, portfolio, events, dark, synthwave, cyberpunk, neon, responsive, custom-post-types
*/

/* Import all CSS modules following the folder structure */
@import url("assets/css/core/reset.css");
@import url("assets/css/core/variables.css");
@import url("assets/css/core/typography.css");
@import url("assets/css/core/utilities.css");
@import url("assets/css/components/buttons.css");
@import url("assets/css/components/forms.css");
@import url("assets/css/components/cards.css");
@import url("assets/css/components/modals.css");
@import url("assets/css/layout/header.css");
@import url("assets/css/layout/footer.css");
@import url("assets/css/layout/sidebar.css");
@import url("assets/css/layout/navigation.css");
@import url("assets/css/pages/homepage.css");

/* =================================
   CSS VARIABLES - SYNTHWAVE COLORS
   ================================= */
:root {
    /* SynthWave Color Scheme */
    --primary-color: #00ffff;        /* Neon Cyan */
    --secondary-color: #ff0080;      /* Hot Pink */
    --accent-color: #8000ff;         /* Electric Purple */
    --highlight-color: #ffff00;      /* Electric Yellow */
    
    /* Background Colors */
    --bg-primary: #0a0a0a;           /* Deep Black */
    --bg-secondary: #1a0a1a;         /* Dark Purple */
    --bg-tertiary: #2a1a2a;          /* Purple-tinted Dark */
    --bg-gradient: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    
    /* Text Colors */
    --text-primary: #ffffff;         /* Pure White */
    --text-secondary: #e0e0e0;       /* Light Gray */
    --text-muted: #888888;           /* Medium Gray */
    --text-glow: 0 0 10px currentColor, 0 0 20px currentColor;
    
    /* Border & Effects */
    --border-color: rgba(0, 255, 255, 0.3);
    --border-glow: rgba(255, 0, 128, 0.4);
    --overlay-color: rgba(0, 0, 0, 0.85);
    --shadow-neon: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(255, 0, 128, 0.3);
    --shadow-purple: 0 0 20px rgba(128, 0, 255, 0.4);
    
    /* Grid Pattern */
    --grid-pattern: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    --grid-size: 50px 50px;
    
    /* Animations */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.6s ease;
    --transition-slow: 1s ease;
}

/* =================================
   RESET AND BASE STYLES
   ================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', 'Monaco', monospace;
    background: var(--bg-primary);
    background-image: var(--grid-pattern);
    background-size: var(--grid-size);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(128, 0, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* WordPress Core Styles with SynthWave theme */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin: 0 auto 1rem;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    background: rgba(0, 255, 255, 0.05);
}

.wp-caption-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    padding: 0.5rem;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

/* =================================
   TYPOGRAPHY HIERARCHY - SYNTHWAVE
   ================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Courier New', 'Monaco', monospace;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    position: relative;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 6rem);
    line-height: 0.9;
    color: var(--primary-color);
    text-shadow: var(--text-glow);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--text-primary);
}

h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--primary-color);
}

h5 {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--secondary-color);
}

h6 {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    color: var(--accent-color);
}

p {
    font-family: 'Arial', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
}

a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px currentColor;
}

/* =================================
   UTILITY CLASSES
   ================================= */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 255, 0.05) 50%, transparent 100%),
        repeating-linear-gradient(0deg, transparent 0px, rgba(255, 0, 128, 0.02) 2px, transparent 4px);
    pointer-events: none;
    z-index: -1;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
    text-shadow: 0 0 10px currentColor;
}

/* Enhanced SynthWave Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    letter-spacing: 0.1em;
    border: 2px solid var(--primary-color);
    position: relative;
    transition: var(--transition-fast);
    cursor: pointer;
    font-size: 0.9rem;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.6);
}

/* =================================
   HEADER & NAVIGATION - SYNTHWAVE
   ================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--overlay-color);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 2px solid var(--border-color);
    transition: var(--transition-fast);
}

.site-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color) 20%, 
        var(--secondary-color) 50%, 
        var(--accent-color) 80%, 
        transparent
    );
    box-shadow: 0 0 10px currentColor;
}

.site-header.scrolled {
    background: var(--bg-primary);
    box-shadow: var(--shadow-neon);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: var(--text-glow);
    transition: var(--transition-fast);
}

.site-logo:hover {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.custom-logo {
    max-height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--primary-color));
}

.main-navigation {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-navigation a {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.main-navigation a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-navigation a:hover,
.main-navigation a.current-menu-item {
    color: var(--primary-color);
    text-shadow: 0 0 10px currentColor;
}

.main-navigation a:hover::before,
.main-navigation a:hover::after,
.main-navigation a.current-menu-item::before,
.main-navigation a.current-menu-item::after {
    transform: scaleX(1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition-fast);
    box-shadow: 0 0 10px currentColor;
}

.mobile-toggle:hover span {
    background: var(--secondary-color);
    box-shadow: 0 0 15px currentColor;
}

/* =================================
   HERO SECTION - SYNTHWAVE
   ================================= */
.hero-homepage {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--bg-gradient);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 0, 128, 0.15) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: synthwave-glow 3s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes synthwave-glow {
    0% { text-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color); }
    100% { text-shadow: 0 0 30px var(--secondary-color), 0 0 60px var(--secondary-color); }
}

/* =================================
   POST CARDS - SYNTHWAVE STYLE
   ================================= */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.post-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    backdrop-filter: blur(10px);
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 0, 128, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.post-card:hover::before {
    opacity: 1;
}

.post-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-neon);
}

.post-thumbnail {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.1);
    filter: contrast(1.2) saturate(1.3);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-primary);
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    text-shadow: 0 0 20px currentColor;
}

.post-content {
    padding: 2rem;
}

.post-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.post-title a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px currentColor;
}

.post-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.post-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* =================================
   STREAMING LINKS
   ================================= */
.streaming-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.streaming-btn {
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
    transition: var(--transition-fast);
    letter-spacing: 0.05em;
}

.streaming-btn:hover {
    border-color: var(--primary-color);
    background: rgba(0, 255, 255, 0.2);
    color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* =================================
   ABOUT PREVIEW SECTION
   ================================= */
.about-preview {
    background: var(--bg-secondary);
    position: relative;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--text-primary);
    text-shadow: 0 0 30px currentColor;
}

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* =================================
   EVENTS SECTION
   ================================= */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.event-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 0, 128, 0.1) 0%, 
        transparent 50%, 
        rgba(128, 0, 255, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.event-card:hover::before {
    opacity: 1;
}

.event-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(255, 0, 128, 0.4);
}

.event-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    position: relative;
    overflow: hidden;
}

.event-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-primary);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    border: 2px solid var(--primary-color);
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.event-content {
    padding: 2rem;
}

.event-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-details {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.event-details strong {
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
}

/* =================================
   PORTFOLIO SECTION
   ================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.portfolio-item {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    position: relative;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(128, 0, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(0, 255, 255, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-purple);
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.portfolio-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    position: relative;
    overflow: hidden;
}

.portfolio-item-content {
    padding: 2rem;
}

.portfolio-title {
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
}

.portfolio-category {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
}

/* =================================
   ARCHIVE LAYOUT
   ================================= */
.archive-layout {
    padding-top: 6rem;
}

.page-header {
    text-align: center;
    padding: 4rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    box-shadow: 0 0 20px currentColor;
}

.page-title {
    color: var(--primary-color);
    margin-bottom: 0;
}

.archive-post-card {
    transition: var(--transition-smooth);
}

.archive-post-card[data-post-type="track"] {
    border-left: 4px solid var(--primary-color);
}

.archive-post-card[data-post-type="portfolio"] {
    border-left: 4px solid var(--accent-color);
}

.archive-post-card[data-post-type="event"] {
    border-left: 4px solid var(--secondary-color);
}

.post-read-more {
    margin-top: 1rem;
}

/* =================================
   NO CONTENT MESSAGES
   ================================= */
.no-content-message,
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    margin: 2rem 0;
}

.no-content-message p,
.no-posts p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.no-posts h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* =================================
   PAGINATION
   ================================= */
.posts-navigation {
    display: flex;
    justify-content: space-between;
    margin: 4rem 0;
    gap: 2rem;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-previous a,
.nav-next a {
    display: block;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
    text-align: center;
}

.nav-previous a:hover,
.nav-next a:hover {
    border-color: var(--primary-color);
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

/* =================================
   FOOTER - SYNTHWAVE
   ================================= */
.site-footer {
    background: var(--bg-secondary);
    background-image: var(--grid-pattern);
    background-size: var(--grid-size);
    padding: 6rem 0 2rem 0;
    border-top: 2px solid var(--border-color);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color) 25%, 
        var(--secondary-color) 50%, 
        var(--accent-color) 75%, 
        transparent
    );
    box-shadow: 0 0 15px currentColor;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: left;
}

.footer-widget {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.footer-widget-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px currentColor;
}

.footer-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    transition: var(--transition-fast);
    letter-spacing: 0.05em;
}

.footer-menu a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px currentColor;
}

.site-info {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Social Media Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.2;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 0 30px var(--primary-color);
}

/* =================================
   RESPONSIVE DESIGN
   ================================= */
@media (max-width: 768px) {
    .main-navigation {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid var(--border-color);
    }

    .main-navigation.active {
        transform: translateX(0);
    }

    .mobile-toggle {
        display: flex;
    }

    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-placeholder {
        height: 300px;
        font-size: 4rem;
    }

    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .posts-grid,
    .portfolio-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .posts-navigation {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-homepage {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .page-header {
        padding: 3rem 0;
    }

    .event-content,
    .post-content,
    .portfolio-item-content {
        padding: 1.5rem;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
    }

    .footer-widget {
        padding: 1.5rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* =================================
   WORDPRESS ADMIN BAR ADJUSTMENT
   ================================= */
.admin-bar .site-header {
    top: 32px;
}

.admin-bar .site-main {
    padding-top: 112px;
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }

    .admin-bar .site-main {
        padding-top: 126px;
    }
}

/* =================================
   ACCESSIBILITY & PERFORMANCE
   ================================= */
.screen-reader-text {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =================================
   PRINT STYLES
   ================================= */
@media print {
    .site-header,
    .site-footer,
    .mobile-toggle,
    .cta-buttons,
    .streaming-links,
    .social-links {
        display: none;
    }

    body {
        background: white !important;
        color: black !important;
        font-family: serif;
    }

    .site-main {
        padding-top: 0;
    }

    h1, h2, h3, h4, h5, h6 {
        color: black !important;
        text-shadow: none !important;
    }

    .post-card,
    .event-card,
    .portfolio-item {
        border: 1px solid #ccc;
        background: white;
        box-shadow: none;
        page-break-inside: avoid;
    }
}