/* =============================================================
   CONTACT.CSS — Heart Workx contactpagina
   Mobile-first. Etalage Methode stijl.
   ============================================================= */

/* ── Hero ─────────────────────────────────────────────────── */
.contact-hero {
    background: #2c4a52;
    padding: 48px 20px 40px;
}
.contact-hero-inner {
    max-width: 680px;
    margin: 0 auto;
}
.contact-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
    color: #e8c9a0;
}
.contact-label-rood { color: #a32508; }
.contact-hero-titel {
    font-family: var(--display-font, Georgia, serif);
    font-size: clamp(1.7rem, 5vw, 2.6rem);
    font-weight: 300;
    color: #faf7f2;
    line-height: 1.25;
    margin-bottom: 14px;
}
.contact-hero-tekst {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #c8dde2;
}

/* ── Scheiding ────────────────────────────────────────────── */
.contact-scheiding {
    height: 3px;
    background: linear-gradient(to right, #a32508, #e8c9a0, #2c4a52);
}

/* ── Hoofdsectie ──────────────────────────────────────────── */
.contact-sectie {
    background: #faf7f2;
}
.contact-inner {
    display: flex;
    flex-direction: column;
}

/* ── Foto ─────────────────────────────────────────────────── */
.contact-foto-kolom {
    width: 100%;
}
.contact-foto {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/2;
}

/* ── Rechter kolom (info + formulier) ────────────────────── */
.contact-rechts {
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ── Contactinfo ──────────────────────────────────────────── */
.contact-info-titel {
    font-family: var(--display-font, Georgia, serif);
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 300;
    color: #2c4a52;
    line-height: 1.3;
    margin: 8px 0 12px;
}
.contact-info-tekst {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 24px;
}
.contact-gegevens {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-gegeven {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.gegeven-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #bbb;
}
.contact-gegeven a,
.contact-gegeven span {
    font-size: 0.97rem;
    color: #2c4a52;
    text-decoration: none;
}
.contact-gegeven a:hover { color: #a32508; }

/* ── Formulier ────────────────────────────────────────────── */
.contact-formulier {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(44,74,82,0.07);
    border: 1px solid #ede8e0;
}
.contact-formulier-titel {
    font-family: var(--display-font, Georgia, serif);
    font-size: 1.3rem;
    font-weight: 300;
    color: #2c4a52;
    margin-bottom: 20px;
}
.contact-veld {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 16px;
}
.contact-veld label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #bbb;
}
.contact-veld input,
.contact-veld textarea {
    padding: 12px 14px;
    border: 1.5px solid #ede8e0;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: Lato, sans-serif;
    color: #2c2c2c;
    background: white;
    outline: none;
    width: 100%;
    transition: border-color 0.2s;
}
.contact-veld input:focus,
.contact-veld textarea:focus { border-color: #c17f5a; }
.contact-veld textarea { resize: vertical; min-height: 120px; }
.contact-knop {
    background: #a32508;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s, transform 0.15s;
    -webkit-tap-highlight-color: transparent;
}
.contact-knop:hover {
    background: #8a1f06;
    transform: translateY(-1px);
}
.contact-fout {
    background: #fff5f5;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 12px 16px;
    color: #dc2626;
    font-size: 0.88rem;
    margin-bottom: 16px;
}
.contact-succes {
    text-align: center;
    padding: 32px 16px;
}
.succes-icoon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f0fdf4;
    border: 2px solid #86efac;
    color: #16a34a;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.contact-succes h3 {
    font-family: var(--display-font, Georgia, serif);
    font-size: 1.3rem;
    font-weight: 300;
    color: #2c4a52;
    margin-bottom: 8px;
}
.contact-succes p {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   DESKTOP (900px+)
   ══════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
    .contact-hero { padding: 80px 48px 72px; }
    .contact-hero-inner { max-width: 1400px; }

    .contact-inner {
        flex-direction: row;
        align-items: stretch;
        min-height: 600px;
    }
    .contact-foto-kolom {
        width: 50%;
        flex-shrink: 0;
    }
    .contact-foto {
        width: 100%;
        height: 100%;
        aspect-ratio: unset;
        object-fit: cover;
    }
    .contact-rechts {
        flex: 1;
        padding: 64px 72px;
        justify-content: center;
    }
}

/* ── Desktop tekst varianten ─────────────────────────────── */
.tekst-uitgebreid { display: none; }
@media (min-width: 1280px) {
    .tekst-kort       { display: none; }
    .tekst-uitgebreid { display: block; }
}
