/*
Theme Name: TTPixel Neon Theme
Theme URI: https://ttpixel.com
Description: A highly optimized, professional, and feature-rich standalone theme for agency & portfolio websites. Built with modular PHP architecture, bilingual (English & Bangla) support, dark/neon design system, custom admin panel, and performance-tuned asset loading.
Author: TTPixel
Author URI: https://ttpixel.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ttpixel-neon
Tags: elementor, responsive-layout, dark-mode, neon, bilingual, agency, portfolio, theme-options
*/

/* ==========================================================================
   Design System & Global CSS Variables
   ========================================================================== */
:root {
    --epc-primary: #4F46E5;
    --epc-primary-hover: #4338CA;
    --epc-secondary: #06B6D4;
    --epc-accent: #F59E0B;
    --epc-dark: #0F172A;
    --epc-light: #F8FAFC;
    --epc-white: #FFFFFF;
    --epc-text-main: #334155;
    --epc-text-muted: #64748B;
    --epc-border-color: #E2E8F0;
    
    /* Dynamic Glassmorphism */
    --epc-glass-bg: rgba(255, 255, 255, 0.75);
    --epc-glass-border: rgba(255, 255, 255, 0.3);
    --epc-glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    /* Transitions & Shadows */
    --epc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --epc-shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --epc-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --epc-shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
}

/* ==========================================================================
   Child Theme Base Enhancements
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

body {
    color: var(--epc-text-main);
    font-family: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar for Modern Aesthetics */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
