/*
Theme Name: AJANS PRO
Theme URI: https://example.com/ajans-pro
Author: Your Name
Author URI: https://example.com
Description: A high-end, performance-oriented WordPress theme for digital agencies.
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: ajans-pro
Tags: agency, portfolio, business, modern, dark-mode
*/

:root {
    /* Colors */
    --color-primary: #FF4B3A;
    --color-secondary: #007BFF;
    --color-text: #212121;
    --color-bg: #F9FAFB;
    --color-white: #FFFFFF;
    --color-border: #E2E8F0;

    /* Dark Mode Colors */
    --color-bg-dark: #121212;
    --color-text-dark: #E0E0E0;
    --color-surface-dark: #1E1E1E;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-unit: 8px;
    --container-width: 1200px;
    --header-height: 90px;
    --header-height-scrolled: 60px;
}

/* Basic Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --color-bg: var(--color-bg-dark);
        --color-text: var(--color-text-dark);
    }
}

body.dark-mode {
    --color-bg: var(--color-bg-dark);
    --color-text: var(--color-text-dark);
}