/*
Theme Name: Dance Mogul - The Voux Child
Theme URI: https://dancemogul.com
Description: Dance Mogul Magazine - Full cyberpunk child theme for The Voux with neon cyan and magenta aesthetics, animated effects, and futuristic design. "Inspiring Self-Empowerment"
Author: Dance Mogul Magazine
Author URI: https://dancemogul.com
Template: thevoux-wp
Version: 2.0.0
Text Domain: dance-mogul-child
*/

/*
===============================================
DANCE MOGUL MAGAZINE - CYBERPUNK CHILD THEME
Theme: The Voux Child Theme
Purpose: Full cyberpunk aesthetic transformation
Colors: Neon Cyan (#00ffff), Magenta (#ff00ff), Dark backgrounds
Features: Animated neon effects, glassmorphism, glowing borders
Branding: DANCE MOGUL logo in top left corner
===============================================
*/

/* ============================================
   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
   ============================================ */
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);
}

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;
}

p, .entry-content,
article p {
    color: var(--text-secondary);
    line-height: 1.8;
}

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);
}

.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;
}

.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%;
}

/* ============================================
   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;
}

.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;
}

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);
}

/* ============================================
   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;
}

.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;
}

.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;
}

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

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

/* ============================================
   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;
}

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;
}

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

.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;
}

.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;
}

/* ============================================
   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;
    }
}

/* ============================================
   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;
}

#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;
}

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

/* ============================================
   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;
}

/* 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;
}

@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);
}

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

/* ============================================
   END OF DANCE MOGUL CHILD THEME STYLES
   ============================================ */
