/* ========================================
   Mensen Page - Aqua+ Style (Black/Red)
   Font: pill-gothic (same as Aqua+)
   All classes use mp- prefix
   ======================================== */

/* ========================================
   FONT FAMILIES (matching Aqua+)
   pill-gothic-900mg = headings
   pill-gothic-600mg = body text
   ======================================== */
.mp-hero,
.mp-team,
.mp-text,
.mp-imgtext,
.mp-faces,
.mp-cta {
    font-family: pill-gothic-600mg, 'Barlow', sans-serif;
}

.mp-hero-title,
.mp-hero-subtitle,
.mp-team-title,
.mp-team-name,
.mp-text h2,
.mp-imgtext-content h2,
.mp-faces-title,
.mp-cta h2,
.mp-scroll-link,
.mp-btn,
.mp-cta-btn {
    font-family: pill-gothic-900mg, 'Barlow', sans-serif;
}

/* ========================================
   HERO - Aqua+ style: big title over photo
   ======================================== */
.mp-hero {
    background: var(--white);
    padding-top: 80px;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100svh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mp-hero-inner {
    position: relative;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 50px;
    min-height: 520px;
}

/* Single hero image - compact like Aqua+ */
.mp-hero-img {
    position: absolute;
    top: 20px;
    right: 100px;
    width: 42%;
    height: 380px;
    object-fit: cover;
    z-index: 1;
}

/* Big title - overlaps the image */
.mp-hero-title {
    position: relative;
    z-index: 2;
    font-size: clamp(60px, 9vw, 120px);
    font-weight: 900;
    color: #b4a5aa;
    line-height: 1.15;
    margin: 0;
    padding-top: 150px;
    letter-spacing: -0.02em;
}

/* Content block - sits below-left under the title */
.mp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 460px;
    padding: 16px 0 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mp-breadcrumb {
    font-size: 16px;
    color: #6b7275;
}

.mp-breadcrumb a {
    color: #6b7275;
    text-decoration: none;
}

.mp-breadcrumb a:hover {
    text-decoration: underline;
}

.mp-breadcrumb-sep {
    margin: 0 8px;
}

.mp-hero-subtitle {
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 900;
    color: var(--accent);
    margin: 0;
}

.mp-hero-text {
    font-size: 22px;
    line-height: 1.75;
    color: #6b7275;
    margin: 0;
}

.mp-scroll-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 900;
    font-size: 15px;
    transition: color 0.3s ease;
}

.mp-scroll-link:hover {
    color: var(--accent-dark);
}

/* ========================================
   TEAM SLIDER - Horizontal, asymmetric
   ======================================== */
.mp-team {
    background: var(--white);
    padding: 100px 0 80px;
    overflow: visible;
    position: relative;
    max-width: 1210px;
    margin: 0 auto;
}

/* Accent background block behind the title text (like Aqua+) */
.mp-team::before {
    content: '';
    position: absolute;
    top: 80px;
    left: -100px;
    width: 580px;
    height: 420px;
    background: #ece8e9;
    z-index: 0;
}

.mp-team-header {
    position: relative;
    z-index: 1;
    padding: 60px 0 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
}

.mp-team-title {
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 900;
    color: var(--accent);
    margin: 0;
    max-width: 500px;
    line-height: 1.2;
}

.mp-team-nav {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.mp-team-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: var(--accent);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mp-team-btn:hover {
    background: var(--accent-dark);
}

.mp-team-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.mp-team-btn:disabled:hover {
    background: var(--accent);
}

.mp-team-track {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-left: 0;
    padding-right: 0;
}

.mp-team-track::-webkit-scrollbar {
    display: none;
}

/* Team cards - fixed size, container limits visible count */
.mp-team-card {
    flex: 0 0 320px;
    transition: transform 0.3s ease;
}

.mp-team-card:hover {
    transform: translateY(-5px);
}

.mp-team-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #e5e5e5;
}

.mp-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mp-team-info {
    padding: 18px 0;
}

.mp-team-role {
    font-size: 18px;
    font-weight: 700;
    color: #b4a5aa;
    margin: 0 0 6px;
    text-transform: none;
}

.mp-team-name {
    font-size: 24px;
    font-weight: 900;
    color: var(--accent);
    margin: 0 0 8px;
    line-height: 1.2;
}

.mp-team-quote {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
}

.mp-team-dots {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 40px;
}

.mp-team-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mp-team-dots .dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* ========================================
   TEXT SECTIONS - Aqua+ style: centered, wider text
   ======================================== */
.mp-text {
    background: var(--white);
    padding: 60px 0;
}

.mp-text-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 50px;
}

.mp-text h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 900;
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 16px;
}

.mp-text p {
    font-size: 22px;
    line-height: 1.75;
    color: #6b7275;
    margin: 0;
}

/* ========================================
   IMAGE-TEXT BLOCKS
   ======================================== */
.mp-imgtext {
    background: var(--white);
    padding: 100px 0;
}

.mp-imgtext-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.mp-imgtext-image {
    flex: 0 0 45%;
}

.mp-imgtext-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.mp-imgtext-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mp-imgtext-content h2 {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 900;
    color: var(--accent);
    line-height: 1.2;
    margin: 0;
}

.mp-imgtext-content p {
    font-size: 22px;
    line-height: 1.75;
    color: #6b7275;
    margin: 0;
}

.mp-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.mp-btn:hover {
    background: var(--accent-dark);
}

/* Reversed layout */
.mp-imgtext--reversed .mp-imgtext-inner {
    flex-direction: row-reverse;
}

/* Certification badges */
.mp-certs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.mp-cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
}

.mp-cert-badge svg {
    stroke: var(--accent);
    flex-shrink: 0;
}

.mp-cert-badge span {
    font-size: 14px;
    font-weight: 900;
    color: var(--primary);
    font-family: pill-gothic-900mg, 'Barlow', sans-serif;
}

/* ========================================
   FACES CAROUSEL - Dark bg, two-row
   ======================================== */
.mp-faces {
    background: var(--bg-dark);
    padding: 100px 0;
    overflow: hidden;
}

.mp-faces-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 50px;
}

.mp-faces-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.mp-faces-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 900;
    color: var(--white);
    margin: 0;
}

.mp-faces-nav {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.mp-faces-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: var(--accent);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mp-faces-btn:hover {
    background: var(--accent-dark);
}

.mp-faces-rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mp-faces-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mp-faces-row::-webkit-scrollbar {
    display: none;
}

.mp-faces-row-2 {
    padding-left: 80px;
}

.mp-face-card {
    flex: 0 0 220px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.mp-face-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.mp-face-card:hover img {
    transform: scale(1.05);
}

.mp-face-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.mp-face-overlay span {
    font-size: 15px;
    font-weight: 900;
    color: var(--white);
    font-family: pill-gothic-900mg, 'Barlow', sans-serif;
}

/* ========================================
   CTA - Red background
   ======================================== */
.mp-cta {
    background: var(--accent);
    padding: 100px 0;
}

.mp-cta-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 50px;
    text-align: center;
}

.mp-cta h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.mp-cta p {
    font-size: 22px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
}

.mp-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
    transition: all 0.3s ease;
    background: transparent;
}

.mp-cta-btn:hover {
    background: var(--white);
    color: var(--accent);
}

/* ========================================
   RESPONSIVE - 1920px+
   ======================================== */
@media (min-width: 1920px) {
    .mp-team {
        max-width: 1210px;
    }

    .mp-text-inner {
        max-width: 850px;
    }

    .mp-face-card {
        flex: 0 0 260px;
    }
}

/* ========================================
   RESPONSIVE - 1024px
   ======================================== */
@media (max-width: 1024px) {
    .mp-hero {
        padding-top: 100px;
    }

    .mp-hero-inner {
        padding: 0 24px;
        min-height: 600px;
    }

    .mp-hero-img {
        width: 45%;
        height: 340px;
        right: 24px;
    }

    .mp-hero-title {
        font-size: clamp(50px, 9vw, 100px);
        padding-top: 40px;
    }

    .mp-hero-content {
        padding: 20px 0 40px 20px;
    }

    .mp-hero-text {
        font-size: 18px;
    }

    .mp-team {
        max-width: 94%;
    }

    .mp-team-track {
        gap: 20px;
    }

    .mp-team-card {
        flex: 0 0 280px;
    }

    .mp-text-inner {
        padding: 0 24px;
    }

    .mp-text p,
    .mp-imgtext-content p {
        font-size: 20px;
    }

    .mp-imgtext-inner {
        padding: 0 24px;
        gap: 40px;
    }

    .mp-faces-inner {
        padding: 0 24px;
    }

    .mp-face-card {
        flex: 0 0 190px;
    }

    .mp-faces-row-2 {
        padding-left: 50px;
    }

    .mp-cta-inner {
        padding: 0 24px;
    }

    .mp-cta p {
        font-size: 20px;
    }
}

/* ========================================
   RESPONSIVE - 768px
   ======================================== */
@media (max-width: 768px) {
    .mp-hero {
        padding-top: 90px;
        padding-bottom: 40px;
    }

    .mp-hero-inner {
        padding: 0 16px;
        min-height: auto;
    }

    .mp-hero-img {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: 360px;
        margin-bottom: 20px;
    }

    .mp-hero-title {
        font-size: clamp(50px, 14vw, 80px);
        padding-top: 20px;
        margin-bottom: 10px;
    }

    .mp-hero-content {
        padding: 0 0 30px;
        max-width: 100%;
    }

    .mp-hero-text {
        font-size: 18px;
    }

    .mp-team {
        max-width: 100%;
        padding: 60px 0 40px;
    }

    .mp-team::before {
        display: none;
    }

    .mp-team-header {
        padding: 0 16px;
        flex-direction: column;
        gap: 16px;
    }

    .mp-team-track {
        padding-left: 16px;
        padding-right: 16px;
        gap: 16px;
    }

    .mp-team-card {
        flex: 0 0 280px;
    }

    .mp-text {
        padding: 30px 0;
    }

    .mp-text-inner {
        max-width: 100%;
        padding: 0 16px;
    }

    .mp-text p,
    .mp-imgtext-content p {
        font-size: 18px;
    }

    .mp-imgtext {
        padding: 50px 0;
    }

    .mp-imgtext-inner {
        flex-direction: column !important;
        gap: 30px;
        padding: 0 16px;
    }

    .mp-imgtext-image {
        flex: 1;
    }

    .mp-faces {
        padding: 60px 0;
    }

    .mp-faces-inner {
        padding: 0 16px;
    }

    .mp-faces-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .mp-face-card {
        flex: 0 0 170px;
    }

    .mp-faces-row-2 {
        padding-left: 40px;
    }

    .mp-cta {
        padding: 60px 0;
    }

    .mp-cta-inner {
        padding: 0 16px;
    }

    .mp-cta p {
        font-size: 18px;
    }
}

/* ========================================
   RESPONSIVE - 480px
   ======================================== */
@media (max-width: 480px) {
    .mp-hero-title {
        font-size: clamp(40px, 12vw, 70px);
    }

    .mp-hero-subtitle {
        font-size: 22px;
    }

    .mp-hero-text {
        font-size: 16px;
    }

    .mp-team-card {
        flex: 0 0 250px;
    }

    .mp-team-title {
        font-size: 26px;
    }

    .mp-text h2 {
        font-size: 26px;
    }

    .mp-text p {
        font-size: 16px;
    }

    .mp-imgtext-content h2 {
        font-size: 26px;
    }

    .mp-imgtext-content p {
        font-size: 16px;
    }

    .mp-certs {
        gap: 12px;
    }

    .mp-cert-badge {
        padding: 6px 12px;
    }

    .mp-face-card {
        flex: 0 0 140px;
    }

    .mp-faces-row-2 {
        padding-left: 30px;
    }

    .mp-faces-title {
        font-size: 24px;
    }

    .mp-cta h2 {
        font-size: 28px;
    }

    .mp-cta p {
        font-size: 16px;
    }
}

/* Teamfoto-blok (vervangt de placeholder-slider) */
.mp-groep {
    max-width: 1180px;
    width: 82%;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1; /* boven het accentblok van .mp-team::before */
}

.mp-groep img {
    width: 100%;
    display: block;
}

.mp-groep-caption {
    font-size: 14px;
    color: #6b7275;
    margin-top: 12px;
}

.mp-uitgelicht {
    max-width: 1180px;
    width: 82%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.mp-uitgelicht .mp-team-card {
    max-width: 340px;
}

.mp-uitgelicht-note {
    font-size: 15px;
    color: #6b7275;
}
