/* ========== PROJECT DETAIL - HERO ========== */
.project-detail-hero {
    padding: 112px 64px 80px;
    background: var(--nh-black);
}

.project-detail-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.project-detail-hero-col:first-child {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-detail-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.project-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-detail-badge--location {
    background: rgba(136, 184, 40, 0.15);
    color: var(--nh-green);
    text-decoration: none;
}

.project-detail-badge--location svg {
    flex-shrink: 0;
}

.project-detail-badge--category {
    background: rgba(255, 255, 255, 0.08);
    color: var(--nh-gray);
}

.project-detail-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--nh-white);
}

.project-detail-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--nh-gray);
    margin-bottom: 32px;
}

.project-detail-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== PROJECT DETAIL - DETAILS SECTION (WHY-STYLE) ========== */
.project-detail-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 80px 60px;
    position: relative;
    background: var(--nh-dark) url('../images/Achtergrondtest.png') center center / cover no-repeat;
}

.project-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 0;
}

.project-detail-mobile-img {
    display: none;
}

.project-detail-card {
    position: relative;
    z-index: 1;
    background: var(--nh-black);
    border-radius: 20px;
    padding: 48px;
    max-width: 520px;
    width: 100%;
}

.project-detail-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--nh-white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.project-detail-card > p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    /* Hero */
    .project-detail-hero {
        padding: 48px 24px 40px;
    }

    .project-detail-hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .project-detail-heading {
        font-size: 2rem;
    }

    .project-detail-text {
        font-size: 1rem;
    }

    .project-detail-buttons {
        flex-direction: column;
    }

    .project-detail-buttons .btn-primary,
    .project-detail-buttons .btn-secondary {
        justify-content: center;
        text-align: center;
    }

    /* Details section */
    .project-detail-section {
        min-height: auto;
        padding: 0;
        flex-direction: column;
        justify-content: center;
        background: var(--nh-black);
    }

    .project-detail-section::before {
        display: none;
    }

    .project-detail-mobile-img {
        display: block;
        width: 100%;
    }

    .project-detail-mobile-img img {
        width: 100%;
        max-height: 280px;
        object-fit: cover;
        display: block;
    }

    .project-detail-card {
        padding: 32px 24px;
        max-width: 100%;
        border-radius: 0;
        height: auto;
    }

    .project-detail-card h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .project-detail-heading {
        font-size: 1.75rem;
    }

    .project-detail-mobile-img img {
        max-height: 220px;
    }
}
