/*
Theme Name: SwiftPress
Theme URI: https://wbpay.in
Author: WBPay
Author URI: https://wbpay.in
Description: Ultra-fast, mobile-first news theme with AI-powered features via Google Gemini. Built for Core Web Vitals performance with modern design, dark mode, bilingual support (Bengali/English), and intelligent content highlights.
Version: 1.2.7
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: swiftpress
Tags: news, magazine, blog, mobile-first, fast-loading, dark-mode, ai, translation-ready, custom-logo, custom-menu, featured-images, threaded-comments
*/

/* === Tiro Bangla — Local Display Font === */
@font-face {
    font-family: 'Tiro Bangla';
    src: url('assets/fonts/tiro-bangla-v6-bengali_latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* === SwiftPress — Design Tokens === */
:root {
    /* Brand */
    --sp-primary: #EF0707;
    --sp-primary-hover: #CC0606;
    --sp-primary-light: #FEE2E2;
    --sp-primary-rgb: 239, 7, 7;

    /* Surfaces */
    --sp-bg: #F3F4F6;
    --sp-surface: #FFFFFF;
    --sp-surface-hover: #F9FAFB;
    --sp-surface-raised: #FFFFFF;

    /* Text */
    --sp-text: #111827;
    --sp-text-secondary: #4B5563;
    --sp-text-muted: #9CA3AF;
    --sp-text-inverse: #FFFFFF;

    /* Borders */
    --sp-border: #E5E7EB;
    --sp-border-strong: #D1D5DB;

    /* Accent / Secondary */
    --sp-accent: #1E40AF;
    --sp-accent-light: #DBEAFE;
    --sp-success: #059669;
    --sp-warning: #D97706;

    /* Shadows */
    --sp-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --sp-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --sp-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --sp-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);

    /* Typography */
    --sp-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --sp-font-display: 'Tiro Bangla', 'Inter', serif;
    --sp-font-bengali: 'Tiro Bangla', 'Hind Siliguri', 'Noto Sans Bengali', 'Bangla MN', sans-serif;
    --sp-font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --sp-gap: 1.5rem;
    --sp-radius: 0.5rem;
    --sp-radius-lg: 0.75rem;
    --sp-max-width: 1280px;
    --sp-content-width: 800px;
    --sp-sidebar-width: 320px;

    /* Transitions */
    --sp-transition: 150ms ease;
    --sp-transition-slow: 300ms ease;

    /* Z-index */
    --sp-z-header: 100;
    --sp-z-overlay: 200;
    --sp-z-modal: 300;

    /* Header */
    --sp-header-height: 60px;
}

/* Dark Mode */
[data-theme="dark"] {
    --sp-bg: #0B0F19;
    --sp-surface: #141824;
    --sp-surface-hover: #1C2233;
    --sp-surface-raised: #1C2233;
    --sp-text: #E5E7EB;
    --sp-text-secondary: #9CA3AF;
    --sp-text-muted: #6B7280;
    --sp-text-inverse: #111827;
    --sp-border: #1F2937;
    --sp-border-strong: #374151;
    --sp-primary: #F43F3F;
    --sp-primary-hover: #EF6060;
    --sp-primary-light: rgba(239, 7, 7, 0.15);
    --sp-accent: #60A5FA;
    --sp-accent-light: rgba(30, 64, 175, 0.2);
    --sp-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --sp-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
    --sp-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
    --sp-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
}