/*
Theme Name: Dance Mogul - Black Chair Cyberpunk
Theme URI: https://dancemogul.com
Description: Dance Mogul Magazine - Cyberpunk child theme with black chair background, neon cyan and magenta aesthetics, animated rain effects, and mobile-ready design. "Inspiring Self-Empowerment"
Author: Dance Mogul Magazine
Author URI: https://dancemogul.com
Template: thevoux-wp
Version: 3.0.0
Text Domain: dance-mogul-black-chair
*/

/*
===============================================
DANCE MOGUL MAGAZINE - BLACK CHAIR CYBERPUNK
Theme: The Voux Child Theme
Purpose: Cyberpunk aesthetic with chair background
Colors: Neon Cyan (#00ffff), Magenta (#ff00ff)
Features: Animated neon, glassmorphism, rain effects, responsive
===============================================
*/

/* ============================================
   CSS VARIABLES - DANCE MOGUL COLOR PALETTE
   ============================================ */
:root {
    /* Primary Cyberpunk Colors */
    --dm-cyan: #00ffff;
    --dm-magenta: #ff00ff;
    --dm-white: #ffffff;
    
    /* Color Variations */
    --dm-cyan-light: #5fffff;
    --dm-cyan-dark: #00cccc;
    --dm-magenta-light: #ff5fff;
    --dm-magenta-dark: #cc00cc;
    
    /* Backgrounds */
    --dark-bg: #0a0a0a;
    --dark-bg-2: #1a1a1a;
    --dark-bg-3: #2a2a2a;
    
    /* Accent Colors */
    --accent-cyan: rgba(0, 255, 255, 0.2);
    --accent-magenta: rgba(255, 0, 255, 0.2);
    --accent-glow: rgba(0, 255, 255, 0.3);
    
    /* Glass Effect */
    --glass-bg: rgba(20, 20, 30, 0.8);
    --glass-border: rgba(0, 255, 255, 0.3);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #9e9e9e;
}

/* ============================================
   GLOBAL STYLES & BACKGROUND
   ============================================ */
body {
    background: var(--dark-bg);
    color: var(--text-primary);
    position: relative;
    overflow-x: hidden;
}

/* Animated Cyberpunk Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        linear-gradient(90deg, var(--dark-bg) 0%, var(--dark-bg-2) 50%, var(--dark-bg) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 255, 0.05) 2px,
            rgba(0, 255, 255, 0.05) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 0, 255, 0.05) 2px,
            rgba(255, 0, 255, 0.05) 4px
        );
    background-size: 100% 100%, 50px 50px, 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 0 0, 50px 50px, -50px -50px; }
}

/* ============================================
   TYPOGRAPHY - NO TEXT BLUR
   ============================================ */
h1, h2, h3, h4, h5, h6,
.entry-title,
.widget-title,
.post-title {
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    filter: none !important;
    opacity: 1 !important;
}

h1, .entry-title a {
    background: linear-gradient(135deg, var(--dm-cyan), var(--dm-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    filter: none !important;
}

p, .entry-content,
article p,
.post-content,
.content-area {
    color: var(--text-secondary);
    line-height: 1.8;
    filter: none !important;
    opacity: 1 !important;
}

a {
    color: var(--dm-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--dm-magenta);
    text-shadow: 0 0 10px var(--dm-magenta);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header,
#header,
.site-header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 255, 255, 0.2);
    position: relative;
    z-index: 1000;
}

.main-navigation,
.site-navigation,
#site-navigation {
    background: transparent;
}

.menu a,
.nav-menu a,
.main-navigation a {
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    filter: none !important;
}

.menu a:hover,
.nav-menu a:hover,
.main-navigation a:hover {
    color: var(--dm-cyan);
    text-shadow: 0 0 15px var(--dm-cyan);
}

.menu a::after,
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--dm-cyan), var(--dm-magenta));
    transition: width 0.3s ease;
}

.menu a:hover::after,
.nav-menu a:hover::after {
    width: 100%;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.menu-toggle,
.hamburger,
.mobile-menu-button {
    display: none;
    background: transparent;
    border: 2px solid var(--dm-cyan);
    color: var(--dm-cyan);
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.menu-toggle:hover,
.hamburger:hover,
.mobile-menu-button:hover {
    background: var(--dm-cyan);
    color: #000;
}

@media (max-width: 768px) {
    .menu-toggle,
    .hamburger,
    .mobile-menu-button {
        display: block;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(20, 20, 30, 0.95);
        padding: 20px;
        border-top: 1px solid var(--glass-border);
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
    }
    
    .main-navigation li {
        margin: 10px 0;
    }
}

/* ============================================
   CONTENT CARDS & ARTICLES
   ============================================ */
.post,
.article,
.entry,
.hentry,
article {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    filter: none !important;
}

.post::before,
.article::before,
article::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.post:hover,
.article:hover,
article:hover {
    border-color: var(--dm-cyan);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.3),
        0 0 60px rgba(255, 0, 255, 0.2);
    transform: translateY(-5px);
}

.post:hover::before,
.article:hover::before,
article:hover::before {
    opacity: 0.1;
}

/* ============================================
   FEATURED IMAGES
   ============================================ */
.post-thumbnail,
.entry-thumbnail,
.featured-image,
img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.post-thumbnail img,
.entry-thumbnail img,
.featured-image img {
    transition: all 0.3s ease;
    border: 2px solid var(--glass-border);
}

.post-thumbnail:hover img,
.entry-thumbnail:hover img,
.featured-image:hover img {
    transform: scale(1.05);
    border-color: var(--dm-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

/* ============================================
   BUTTONS & CALLS TO ACTION
   ============================================ */
button,
.button,
.btn,
input[type="submit"],
.wp-block-button__link,
.more-link {
    background: linear-gradient(135deg, var(--dm-cyan), var(--dm-magenta));
    color: #000000;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    filter: none !important;
}

button::before,
.button::before,
.btn::before,
input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

button:hover::before,
.button:hover::before,
.btn:hover::before,
input[type="submit"]:hover::before {
    width: 300px;
    height: 300px;
}

button:hover,
.button:hover,
.btn:hover,
input[type="submit"]:hover {
    box-shadow: 
        0 0 20px var(--dm-cyan),
        0 0 40px var(--dm-magenta),
        0 0 60px rgba(0, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* ============================================
   CONTACT PAGE - WHITE TEXT
   ============================================ */
.page-contact,
.contact-page,
.wpcf7,
.gform_wrapper,
.contact-form {
    color: var(--text-primary) !important;
}

.contact-page h1,
.contact-page h2,
.contact-page h3,
.page-contact h1,
.page-contact h2,
.page-contact h3 {
    color: var(--text-primary) !important;
    filter: none !important;
}

.contact-page p,
.page-contact p,
.contact-page label,
.page-contact label {
    color: var(--text-primary) !important;
    filter: none !important;
}

/* ============================================
   SIDEBAR & WIDGETS
   ============================================ */
.sidebar,
.widget-area,
#secondary {
    padding: 20px;
}

.widget {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    filter: none !important;
}

.widget:hover {
    border-color: var(--dm-magenta);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.widget-title,
.widgettitle {
    color: var(--text-primary);
    border-bottom: 2px solid var(--dm-cyan);
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    filter: none !important;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget li {
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.widget li:hover {
    padding-left: 10px;
    border-left: 3px solid var(--dm-cyan);
}

/* ============================================
   FOOTER
   ============================================ */
.footer,
.site-footer,
#footer {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
    margin-top: 60px;
    position: relative;
    z-index: 100;
}

.footer-widget,
.footer .widget {
    color: var(--text-secondary);
}

.footer-widget h3,
.footer .widget-title {
    color: var(--dm-cyan);
    filter: none !important;
}

/* ============================================
   FORMS & INPUTS
   ============================================ */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
textarea,
select {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    padding: 12px 15px;
    transition: all 0.3s ease;
    filter: none !important;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--dm-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    background: var(--dark-bg-2);
}

/* ============================================
   COMMENTS
   ============================================ */
.comment,
.comment-body {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    filter: none !important;
}

.comment-author {
    color: var(--dm-cyan);
    font-weight: 600;
    filter: none !important;
}

.comment-metadata {
    color: var(--text-muted);
    font-size: 0.9em;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination,
.nav-links,
.page-numbers {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 40px 0;
}

.page-numbers,
.pagination a {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 10px 15px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    filter: none !important;
}

.page-numbers:hover,
.pagination a:hover,
.page-numbers.current {
    background: linear-gradient(135deg, var(--dm-cyan), var(--dm-magenta));
    border-color: var(--dm-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
    color: #000000;
}

/* ============================================
   SEARCH BAR
   ============================================ */
.search-form {
    position: relative;
}

.search-form input[type="search"] {
    width: 100%;
    padding-right: 50px;
}

.search-form button,
.search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 15px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes neonPulse {
    0%, 100% { text-shadow: 0 0 10px var(--dm-cyan), 0 0 20px var(--dm-cyan); }
    50% { text-shadow: 0 0 20px var(--dm-cyan), 0 0 30px var(--dm-magenta), 0 0 40px var(--dm-cyan); }
}

.neon-pulse {
    animation: neonPulse 2s ease-in-out infinite;
}

/* ============================================
   RAIN ANIMATION
   ============================================ */
.rain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.rain-drop {
    position: absolute;
    width: 2px;
    height: 10px;
    background: linear-gradient(to bottom, transparent, var(--dm-cyan));
    opacity: 0.6;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100vh) translateX(0);
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
}

/* ============================================
   LOADING ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.post,
.article,
article {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg-2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--dm-cyan), var(--dm-magenta));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--dm-magenta), var(--dm-cyan));
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    body::before {
        background-size: 100% 100%, 30px 30px, 30px 30px;
    }
    
    .post,
    .article,
    article {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    .widget {
        padding: 15px;
    }
    
    .rain-drop {
        width: 1px;
        height: 8px;
    }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--dm-cyan), var(--dm-magenta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
    color: #000000;
    font-weight: bold;
    filter: none !important;
}

#back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 0, 255, 0.5);
}

/* ============================================
   CUSTOM UTILITIES
   ============================================ */
.dance-mogul-brand {
    font-family: 'Arial Black', sans-serif;
    background: linear-gradient(135deg, var(--dm-cyan), var(--dm-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: none !important;
}

.tagline {
    color: var(--dm-cyan);
    font-style: italic;
    text-shadow: 0 0 10px var(--dm-cyan);
    filter: none !important;
}

/* ============================================
   DANCE MOGUL LOGO IN TOP LEFT
   ============================================ */
.site-header::before,
#header::before,
.header::before {
    content: 'DANCE MOGUL';
    position: fixed;
    top: 20px;
    left: 30px;
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--dm-cyan), var(--dm-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 10000;
    animation: neonPulse 3s infinite;
    pointer-events: none;
    filter: none !important;
}

/* Alternative logo styling for sites with custom header structure */
body::after {
    content: 'DANCE MOGUL';
    position: fixed;
    top: 20px;
    left: 30px;
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #ffffff;
    text-shadow: 
        0 0 10px var(--dm-cyan), 
        0 0 20px var(--dm-cyan), 
        0 0 30px var(--dm-cyan),
        0 0 40px var(--dm-magenta);
    z-index: 10001;
    animation: neonPulse 3s infinite;
    pointer-events: none;
    filter: none !important;
}

@media (max-width: 768px) {
    .site-header::before,
    #header::before,
    .header::before,
    body::after {
        font-size: 1.5rem;
        top: 15px;
        left: 20px;
        letter-spacing: 2px;
    }
}

/* ============================================
   VISUAL COMPOSER / PAGE BUILDER OVERRIDES
   ============================================ */
.vc_row,
.wpb_column {
    color: var(--text-primary);
    filter: none !important;
}

.vc_custom_heading {
    color: var(--text-primary) !important;
    filter: none !important;
}

/* ============================================
   REMOVE BLUR FROM ALL TEXT ELEMENTS
   ============================================ */
* {
    filter: none !important;
}

.blurred,
[style*="blur"],
[style*="filter"] {
    filter: none !important;
    opacity: 1 !important;
}

/* ============================================
   END OF BLACK CHAIR CYBERPUNK THEME STYLES
   ============================================ */
