/*
 Theme Name:   48-7 Divi Child
 Theme URI:    https://48-7.nl
 Description:  Divi Child Theme voor 48-7 AI Agency
 Author:       48-7 AI Agency
 Template:     Divi
 Version:      1.0.0
 Text Domain:  fourtyeight-seven
*/

/* ─────────────────────────────────────────
   GLOBAL KLEUREN & VARIABELEN
   ───────────────────────────────────────── */
:root {
    --kleur-accent:      #FAB868;
    --kleur-accent-dark: #E8A050;
    --kleur-donker:      #0D0D0F;
    --kleur-donker-80:   rgba(13, 13, 15, 0.8);
    --kleur-tekst:       #0A0A0A;
    --kleur-tekst-grijs: #4B5563;
    --kleur-licht:       #F4F4F4;
    --kleur-wit:         #FFFFFF;
    --font-basis:        'Inter', system-ui, -apple-system, sans-serif;
    --radius:            12px;
    --radius-groot:      24px;
}

/* ─────────────────────────────────────────
   BASIS TYPOGRAFIE
   ───────────────────────────────────────── */
body {
    font-family: var(--font-basis);
    color: var(--kleur-tekst);
    background-color: var(--kleur-wit);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-basis);
    font-weight: 700;
    line-height: 1.15;
}

/* ─────────────────────────────────────────
   DIVI KNOP OVERSCHRIJVINGEN
   ───────────────────────────────────────── */
.et_pb_button,
.et_pb_promo_button,
a.et_pb_button {
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: background 0.2s ease, transform 0.1s ease !important;
}

/* Primaire knop — oranje */
.et_pb_button.btn-primary,
.et_pb_button_0 {
    background-color: var(--kleur-accent) !important;
    color: var(--kleur-donker) !important;
    border: none !important;
}

.et_pb_button.btn-primary:hover,
.et_pb_button_0:hover {
    background-color: var(--kleur-accent-dark) !important;
    transform: translateY(-1px);
}

/* Ghost knop — wit omlijnd */
.et_pb_button.btn-ghost {
    background: transparent !important;
    border: 2px solid var(--kleur-wit) !important;
    color: var(--kleur-wit) !important;
}

.et_pb_button.btn-ghost:hover {
    background: var(--kleur-wit) !important;
    color: var(--kleur-donker) !important;
}

/* ─────────────────────────────────────────
   ORANJE ACCENT TEKST
   ───────────────────────────────────────── */
.accent,
.tekst-oranje {
    color: var(--kleur-accent);
}

/* ─────────────────────────────────────────
   DARK SECTION (donkere achtergrond secties)
   ───────────────────────────────────────── */
.et_pb_section.sectie-donker {
    background-color: var(--kleur-donker) !important;
}

.et_pb_section.sectie-donker h1,
.et_pb_section.sectie-donker h2,
.et_pb_section.sectie-donker h3,
.et_pb_section.sectie-donker p {
    color: var(--kleur-wit);
}

/* ─────────────────────────────────────────
   STATISTIEKEN BLOKJES (resultaten in cases)
   ───────────────────────────────────────── */
.stat-blok {
    text-align: center;
    padding: 24px 16px;
}

.stat-blok .getal {
    font-size: 3rem;
    font-weight: 800;
    color: var(--kleur-accent);
    line-height: 1;
}

.stat-blok .label {
    font-size: 0.9rem;
    color: var(--kleur-tekst-grijs);
    margin-top: 6px;
}

/* ─────────────────────────────────────────
   CASE KAARTJES
   ───────────────────────────────────────── */
.case-kaart {
    background: var(--kleur-wit);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    border: 1px solid var(--kleur-licht);
}

.case-kaart:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.case-kaart .badge {
    display: inline-block;
    background: var(--kleur-accent);
    color: var(--kleur-donker);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

/* ─────────────────────────────────────────
   PROCESS STAPPEN (nummers)
   ───────────────────────────────────────── */
.stap-nummer {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--kleur-accent);
    color: var(--kleur-donker);
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

/* ─────────────────────────────────────────
   QUOTE BLOK
   ───────────────────────────────────────── */
.quote-blok {
    border-left: 4px solid var(--kleur-accent);
    padding: 16px 24px;
    background: var(--kleur-licht);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.quote-blok blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin: 0 0 12px 0;
    color: var(--kleur-tekst);
}

.quote-blok .auteur {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--kleur-tekst-grijs);
}

/* ─────────────────────────────────────────
   NAVIGATIE
   ───────────────────────────────────────── */
#main-header {
    background: var(--kleur-wit) !important;
    box-shadow: 0 1px 0 var(--kleur-licht);
}

#main-header .et-menu a {
    font-weight: 500;
    color: var(--kleur-tekst) !important;
}

#main-header .et-menu a:hover {
    color: var(--kleur-accent) !important;
}

/* Contact knop in navigatie */
#main-header .et_pb_button {
    background: var(--kleur-accent) !important;
    color: var(--kleur-donker) !important;
    padding: 8px 22px !important;
    border-radius: 50px !important;
}

/* ─────────────────────────────────────────
   FORMULIER STIJLEN
   ───────────────────────────────────────── */
.et_pb_contact_field input,
.et_pb_contact_field textarea,
.et_pb_contact_field select {
    border: 1px solid #E5E7EB !important;
    border-radius: var(--radius) !important;
    padding: 12px 16px !important;
    font-family: var(--font-basis) !important;
}

.et_pb_contact_field input:focus,
.et_pb_contact_field textarea:focus {
    border-color: var(--kleur-accent) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(250, 184, 104, 0.2) !important;
}
