/* ============================================================
   BASE.CSS – Global base styles for DiNC-POSiTiVE
   ============================================================ */

:root {
    --dp-primary: #00caff;
    --dp-dark: #05060a;
    --dp-bg: #f8f9fb;
    --dp-text: #222;
    --dp-radius: 12px;
}

body {
    background: var(--dp-bg);
    color: var(--dp-text);
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-weight: 800;
    color: #111;
}

p {
    line-height: 1.65;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.dp-btn {
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: 0.25s;
}

.dp-btn-primary {
    background: #fff;
    color: #111;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.dp-btn-primary:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
}

.dp-btn-outline {
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
}

.dp-btn-outline:hover {
    background: rgba(255,255,255,0.15);
}
