/*
Theme Name: My Portfolio
Theme URI: https://aryanlohia.com
Author: Aryan Lohia
Author URI: https://aryanlohia.com
Description: High-performance event management portfolio theme converted from Next.js. Pixel-perfect replication with ACF support for dynamic content.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-portfolio
Tags: portfolio, events, one-page, custom-background, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready

*/

/* Critical fallback: design tokens and body (main styles in assets/css/styles.css) */
:root {
    --color-bg: #0a0a0a;
    --color-surface: #0f0f0f;
    --color-text: #f5f5f5;
    --color-accent: #eab308;
    --color-accent-rgb: 234, 179, 8;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
body, main {
    min-height: 100vh;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

