/*
Theme Name: Picsta Premium Theme
Theme URI: http://picsta.in/
Author: Picsta Team
Description: Ultra-fast, lightweight theme with Light & Premium Dark mode support.
Version: 2.1
*/

/* --- 1. Light Mode Variables (Default Premium White) --- */
:root {
    --bg-main: #f8fafc; 
    --text-main: #111827; 
    --accent-color: #7B61FF; /* Picsta Purple */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(226, 232, 240, 0.8);
}

/* --- 2. Dark Mode Variables (Tumhara Original Code Safe Hai!) --- */
html[data-theme="dark"], body.dark-mode {
    --bg-main: #0f172a; /* Deep premium dark blue */
    --text-main: #f8fafc;
    --accent-color: #3b82f6; /* Trustworthy blue */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* --- 3. Base Reset --- */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth toggle effect */
}

/* --- 4. Glassmorphism Container Class (Original) --- */
.glass-box {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* --- 5. Generic Hero Section --- */
.hero-section {
    text-align: center;
    padding: 60px 20px;
}
.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}
.usp-text {
    color: #94a3b8;
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}