/* --- BEGIN style.css --- */

/*
 Theme Name:   ProMarketa Architecture
 Theme URI:    https://www.promarketa.com
 Description:  Custom High-Performance GeneratePress Child Theme for ProMarketa. Zero-bloat, highly optimized.
 Author:       Elite WordPress Architect
 Author URI:   https://www.promarketa.com
 Template:     generatepress
 Version:      1.0.0
 Text Domain:  promarketa
*/

:root {
    /* Brand Colors - Dark Neon / Glassmorphism Palette */
    --pm-dark-bg: #0a0a0c;
    --pm-charcoal: #1a1a1d;
    --pm-neon-accent: #00ffcc;
    --pm-text-light: #f4f4f5;
    --pm-text-muted: #a1a1aa;
    --pm-glass-bg: rgba(26, 26, 29, 0.6);
    --pm-glass-border: rgba(255, 255, 255, 0.08);

    /* Fluid Typography using clamp() */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Futura', 'Trebuchet MS', sans-serif;
    
    --text-sm: clamp(0.8rem, 0.17vw + 0.76rem, 0.89rem);
    --text-base: clamp(1rem, 0.34vw + 0.91rem, 1.19rem);
    --text-lg: clamp(1.25rem, 0.61vw + 1.1rem, 1.58rem);
    --text-xl: clamp(1.56rem, 1vw + 1.31rem, 2.11rem);
    --text-2xl: clamp(1.95rem, 1.56vw + 1.56rem, 2.81rem);
    --text-3xl: clamp(2.44rem, 2.38vw + 1.85rem, 3.75rem);
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: var(--pm-dark-bg);
    color: var(--pm-text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* --- END style.css --- */