/* ===========================================
   THEME: VIOLET
   Used on: voice-search-seo.html
   Primary: #8B5CF6 | Dark: #7C3AED | Light: #A78BFA
   =========================================== */

:root {
    --theme: #8B5CF6;
    --theme-dark: #7C3AED;
    --theme-light: #A78BFA;
    --theme-glow: rgba(139, 92, 246, 0.25);
    --theme-pale: rgba(139, 92, 246, 0.08);
    --theme-rgb: 139, 92, 246;
    --theme-nav-rgb: 46, 16, 101; /* #2E1065 - matches header/footer */
}

/* Navigation CTA Button */
.nav-cta {
    background: var(--theme) !important;
    color: white !important;
    box-shadow: 0 4px 15px var(--theme-glow) !important;
}
.nav-cta:hover {
    background: var(--theme-dark) !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(var(--theme-rgb), 0.4) !important;
}

/* Fluid Header Background */
.fluid-header {
    background: linear-gradient(135deg, #2E1065 0%, #4C1D95 100%);
}
.fluid-header canvas {
    background: linear-gradient(135deg, #2E1065 0%, #4C1D95 100%);
}

/* Typewriter Effect */
.typewriter-text {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #8B5CF6 25%,
        #A78BFA 50%,
        #8B5CF6 75%,
        #ffffff 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}
.typewriter-cursor {
    background: var(--theme-light) !important;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2E1065 0%, #4C1D95 100%) !important;
}
.footer__bottom {
    border-top-color: rgba(255, 255, 255, 0.15);
}

/* Theme Accents */
.theme-accent {
    color: var(--theme);
}
.theme-accent-bg {
    background: var(--theme);
}
.theme-gradient-bg {
    background: linear-gradient(135deg, var(--theme) 0%, var(--theme-light) 100%);
}
.theme-border {
    border-color: var(--theme);
}
.theme-glow {
    box-shadow: 0 4px 20px var(--theme-glow);
}

/* Intro Section Styling */
.page-intro {
    background: linear-gradient(180deg, transparent 0%, var(--theme-pale) 50%, transparent 100%);
}
.page-intro::before {
    background: linear-gradient(180deg, transparent, var(--theme), transparent);
}

/* Stats/Numbers */
.stat-number,
.theme-number {
    color: var(--theme);
}

/* Cards & Highlights */
.theme-card:hover {
    border-color: var(--theme-light);
    box-shadow: 0 8px 30px var(--theme-glow);
}

/* Violet-specific: Voice Search indicators */
.voice-indicator {
    background: var(--theme-pale);
    border-color: var(--theme);
}
.voice-indicator.active {
    background: var(--theme);
}
