/*
Theme Name: UConstruction
Theme URI: https://uconstruction.com
Description: A dark, industrial WordPress theme built for Elementor Pro. Designed for construction and engineering companies.
Author: UConstruction
Author URI: https://uconstruction.com
Version: 1.0.0
Text Domain: uconstruction
Tags: elementor, minimal, dark, construction, industrial
*/

/* ── CSS Variables ────────────────────────────────────────── */
:root {
    --uc-color-primary:    #1c2228;
    --uc-color-secondary:  #131820;
    --uc-color-accent:     #4a5568;
    --uc-color-accent-lt:  #718096;
    --uc-color-steel:      #2d3748;
    --uc-color-light:      #f0f2f4;
    --uc-color-white:      #ffffff;
    --uc-color-text:       #111111;
    --uc-color-muted:      #666666;
    --uc-color-border:     #dde1e7;

    --uc-font-heading:     'Barlow Condensed', sans-serif;
    --uc-font-body:        'Inter', sans-serif;

    --uc-radius:           4px;
    --uc-radius-lg:        8px;
    --uc-shadow-sm:        0 1px 4px rgba(0,0,0,.10);
    --uc-shadow-md:        0 4px 20px rgba(0,0,0,.15);
    --uc-transition:       0.2s ease;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--uc-font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--uc-color-text);
    background-color: var(--uc-color-white);
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--uc-font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--uc-color-primary);
    margin-top: 0;
    margin-bottom: 0.75em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p { margin-top: 0; margin-bottom: 1.25em; }

a {
    color: var(--uc-color-accent);
    text-decoration: none;
    transition: opacity var(--uc-transition);
}
a:hover { opacity: 0.8; }

img, video { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.5em; margin-top: 0; margin-bottom: 1.25em; }
li { margin-bottom: 0.4em; }

/* ── Layout ───────────────────────────────────────────────── */
.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-content { flex: 1; }

/* ── Elementor Support ────────────────────────────────────── */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1200px;
}
.e-con-inner { max-width: 1200px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
}
