/*
Theme Name: Dgroup
Theme URI: https://dgroup.com
Description: A clean, minimal WordPress theme built for Elementor Pro. Lightweight and fast with zero bloat.
Author: Dgroup
Author URI: https://dgroup.com
Version: 1.0.0
Text Domain: dgroup
Tags: elementor, minimal, clean, business
*/

/* ── CSS Variables ────────────────────────────────────────── */
:root {
    --dgroup-color-primary:    #1a1a2e;
    --dgroup-color-accent:     #e94560;
    --dgroup-color-light:      #f5f5f7;
    --dgroup-color-white:      #ffffff;
    --dgroup-color-text:       #2d2d2d;
    --dgroup-color-muted:      #6b7280;
    --dgroup-color-border:     #e5e7eb;

    --dgroup-font-heading:     'Sora', sans-serif;
    --dgroup-font-body:        'DM Sans', sans-serif;

    --dgroup-radius:           6px;
    --dgroup-radius-lg:        12px;
    --dgroup-shadow-sm:        0 1px 3px rgba(0,0,0,.06);
    --dgroup-shadow-md:        0 4px 12px rgba(0,0,0,.08);
    --dgroup-transition:       0.2s ease;
}

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

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

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

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--dgroup-font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dgroup-color-primary);
    margin-top: 0;
    margin-bottom: 0.75em;
}

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

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

a {
    color: var(--dgroup-color-accent);
    text-decoration: none;
    transition: opacity var(--dgroup-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 full width 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: 2rem; }
    h2 { font-size: 1.5rem; }
}
