/* =============================================================
   OVER.CSS — Heart Workx over ons pagina
   Mobile-first. Etalage Methode stijl.
   ============================================================= */

/* ── Pagina hero ──────────────────────────────────────────── */
.over-hero {
    background: #2c4a52;
    padding: 48px 20px 40px;
}
.over-hero-inner {
    max-width: 680px;
    margin: 0 auto;
}
.over-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
}
.over-label-zand { color: #e8c9a0; }
.over-label-rood { color: #a32508; }

.over-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;
}
.over-hero-tekst {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #c8dde2;
}

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

/* ── Over Jou sectie ──────────────────────────────────────── */
.over-jou {
    background: #f5ede4;
    padding: 48px 20px;
}
.over-jou-inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.over-jou-tekst { flex: 1; order: -1; }
.over-jou-foto-kolom { order: 1; }

/* ── Verhaal sectie ───────────────────────────────────────── */
.over-verhaal {
    background: #faf7f2;
    padding: 48px 20px;
}
.over-verhaal-inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.over-sectie-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-bottom: 16px;
}
.over-sectie-tekst {
    font-size: 0.97rem;
    line-height: 1.85;
    color: #3a3a3a;
    margin-bottom: 12px;
}
.over-verhaal-foto {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 32px rgba(44,74,82,0.12);
}
.over-knop {
    display: inline-block;
    background: #a32508;
    color: #faf7f2;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    -webkit-tap-highlight-color: transparent;
    margin-top: 8px;
}
.over-knop:hover {
    background: #8a1f06;
    transform: translateY(-1px);
    color: #faf7f2;
    text-decoration: none;
}

/* ── Team sectie ──────────────────────────────────────────── */
.over-team {
    background: #f5ede4;
    padding: 48px 20px;
}
.over-team-inner {
    max-width: 680px;
    margin: 0 auto;
}
.over-team-header {
    margin-bottom: 32px;
}
.over-team-intro {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-top: 12px;
}

/* Team kaarten */
.over-team-kaarten {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.over-team-kaart {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(44,74,82,0.07);
    outline: 1.5px solid rgba(44,74,82,0.1);
}
.over-team-kaart::after {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 12px;
    border: 1.5px solid rgba(232,201,160,0.4);
    pointer-events: none;
    z-index: 2;
}
.over-team-media {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #2c4a52;
    position: relative;
}
.over-team-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.over-team-media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display-font, Georgia, serif);
    font-size: 4rem;
    color: #e8c9a0;
    opacity: 0.5;
}
.over-team-info {
    padding: 24px;
}
.over-team-naam {
    font-family: var(--display-font, Georgia, serif);
    font-size: 1.4rem;
    font-weight: 300;
    color: #2c4a52;
    margin-bottom: 4px;
}
.over-team-rol {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a32508;
    margin-bottom: 12px;
    display: block;
}
.over-team-tekst {
    font-size: 0.90rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* ── Video sectie ─────────────────────────────────────────── */
.over-video {
    background: #1e333a;
    padding: 48px 20px;
}
.over-video-inner {
    max-width: 680px;
    margin: 0 auto;
}
.over-video-header {
    margin-bottom: 32px;
}
.over-video-titel {
    font-family: var(--display-font, Georgia, serif);
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 300;
    color: #faf7f2;
    line-height: 1.3;
    margin-bottom: 8px;
}
.over-video-intro {
    font-size: 0.93rem;
    line-height: 1.8;
    color: #c8dde2;
}

/* Video kaarten */
.over-video-kaarten {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.over-video-kaart {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.over-video-naam {
    font-family: var(--display-font, Georgia, serif);
    font-size: 1.1rem;
    color: #faf7f2;
    text-align: center;
}

/* Video embed wrapper */
.over-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #2c4a52;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Placeholder/thumbnail */
.over-video-cover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
.over-video-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.over-video-cover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28,48,54,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.over-video-wrap:hover .over-video-cover-overlay {
    background: rgba(28,48,54,0.2);
}
.over-video-play {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
    color: #faf7f2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
}
.over-video-wrap:hover .over-video-play {
    background: rgba(255,255,255,0.25);
    transform: scale(1.08);
}

/* Iframe laadt pas na klik */
.over-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}
.over-video-wrap.actief .over-video-cover { display: none; }
.over-video-wrap.actief iframe { display: block; }

/* ══════════════════════════════════════════════════════════
   DESKTOP (900px+)
   ══════════════════════════════════════════════════════════ */
@media (min-width: 900px) {

    .over-hero { padding: 80px 48px 72px; }
    .over-hero-inner { max-width: 1400px; }

    .over-jou { padding: 80px 48px; }
    .over-jou-inner {
        max-width: 1400px;
        display: grid;
        grid-template-columns: 3fr 2fr;
        gap: 80px;
        align-items: start;
    }

    .over-verhaal { padding: 80px 48px; }
    .over-verhaal-inner {
        max-width: 1400px;
        display: grid;
        grid-template-columns: 3fr 2fr;
        gap: 80px;
        align-items: start;
    }

    .over-team { padding: 80px 48px; }
    .over-team-inner { max-width: 1400px; }
    .over-team-kaarten {
        flex-direction: row;
        gap: 32px;
    }
    .over-team-kaart { flex: 1; }
    .over-team-media { aspect-ratio: 16/9; }

    .over-video { padding: 80px 48px; }
    .over-video-inner { max-width: 1400px; }
    .over-video-kaarten {
        flex-direction: row;
        gap: 32px;
    }
    .over-video-kaart { flex: 1; }
}

/* ── OVER PERSOON — grote foto + tekst secties ──────────── */
.over-persoon {
    padding: 48px 0;
    background: #faf7f2;
}
.over-persoon-zand {
    background: #f5ede4;
}
.over-persoon-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
}
.over-persoon-foto-kolom {
    width: 100%;
    flex-shrink: 0;
}
.over-persoon-foto {
    width: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 3/2;
    border-radius: 0;
}
.over-persoon-foto-placeholder {
    width: 100%;
    aspect-ratio: 3/2;
    background: linear-gradient(135deg, #f5ede4, #e8c9a0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #c17f5a;
    font-family: Georgia, serif;
}
.over-persoon-foto-kolom { order: 2; }
.over-persoon-tekst-kolom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 24px;
}
.over-persoon-naam {
    font-family: Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    color: #2c4a52;
    line-height: 1.2;
    margin: 4px 0 0;
}
.over-persoon-rol {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c17f5a;
}
.over-persoon-tekst {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin-top: 8px;
}

/* Desktop: volledige breedte, foto en tekst naast elkaar */
@media (min-width: 860px) {
    .over-persoon {
        padding: 0;
    }
    .over-persoon-inner {
        flex-direction: row;
        gap: 0;
        align-items: stretch;
        min-height: 520px;
    }
    .over-persoon-foto-kolom {
        width: 50%;
        flex-shrink: 0;
    }
    .over-persoon-foto {
        width: 100%;
        height: 100%;
        aspect-ratio: unset;
        object-fit: cover;
    }
    .over-persoon-foto-placeholder {
        height: 100%;
        aspect-ratio: unset;
    }
    .over-persoon-foto-kolom { order: 2; }
.over-persoon-tekst-kolom {
        flex: 1;
        justify-content: center;
        padding: 64px 72px;
        gap: 16px;
    }
    /* Foto altijd naar links op desktop */
    .over-persoon-foto-kolom {
        order: -1;
    }
    /* Gespiegeld: foto naar rechts */
    .over-persoon-gespiegeld .over-persoon-foto-kolom {
        order: 1;
    }
}

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