/* ========================================
   Project Detail Page - Aqua+ style (Black/Red)
   Scaled down for better proportions
   ======================================== */

/* ========================================
   HERO
   ======================================== */
.pd-hero {
    position: relative;
    width: 100%;
    height: clamp(560px, 60vh, 760px);
    background-size: cover; /* foto vult de volledige breedte (geen zwarte balken) */
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    display: flex;
    align-items: flex-end;
    margin-top: 80px;
}

/* Sfeer-hero (geen projectfoto): full-bleed zoals aqua, vult de hele breedte */
.pd-hero.pd-hero--cover {
    background-size: cover;
    background-position: center center;
}

.pd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.15) 30%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.pd-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 50px max(140px, 12vw);
    width: 100%;
}

.pd-hero-label {
    font-family: 'pill-gothic-900mg', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 6px;
}

.pd-hero h1 {
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.0;
    letter-spacing: -0.5px;
    margin: 0;
    max-width: 78%;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

/* ========================================
   SPEC BAR
   ======================================== */
.pd-specs {
    position: relative;
    z-index: 10;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 50px;
}

.pd-specs-inner {
    display: flex;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
    margin-top: -80px;
    margin-left: 20%;
    width: 80%;
}

.pd-spec-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 26px 34px;
    border-right: 1px solid #ececec;
}

.pd-spec-item:last-child {
    border-right: none;
}

.pd-spec-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 2px;
}

.pd-spec-icon svg {
    width: 36px;
    height: 36px;
    max-width: 36px;
    max-height: 36px;
    stroke: #6b7275;
    fill: none;
    stroke-width: 1.5;
}

.pd-spec-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.pd-spec-value {
    font-size: 15px;
    font-weight: 400;
    color: #6b7275;
}

/* ========================================
   PAGE INTRO
   ======================================== */
.pd-intro {
    max-width: 1480px;
    margin: 0 auto;
    padding: 64px 50px 12px;
}

.pd-intro-inner {
    margin-left: 6%;
    max-width: 900px;
}

.pd-breadcrumb {
    font-size: 14px;
    color: #6b7275;
    margin-bottom: 18px;
}

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

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

.pd-breadcrumb .sep {
    margin: 0 6px;
}

.pd-location {
    font-family: 'pill-gothic-900mg', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #b4a5aa;
    margin-bottom: 10px;
}

.pd-intro h1,
.pd-intro h2 {
    font-size: clamp(32px, 3.5vw, 50px);
    font-weight: 900;
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 24px;
}

.pd-intro-text {
    font-size: 22px;
    line-height: 1.6;
    color: #6b7275;
}

/* ========================================
   TEXT BLOCKS
   ======================================== */
.pd-text-block {
    max-width: 1480px;
    margin: 0 auto;
    padding: 26px 50px;
}

.pd-text-block-inner {
    margin-left: 6%;
    max-width: 900px;
}

.pd-text-block h3 {
    font-size: clamp(26px, 2.6vw, 34px);
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 16px;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.pd-text-block p {
    font-size: 22px;
    line-height: 1.75;
    color: #6b7275;
    margin-bottom: 20px;
}

.pd-text-block p:last-child {
    margin-bottom: 0;
}

/* ========================================
   IMAGE SLIDER
   ======================================== */
.pd-gallery {
    max-width: 1480px;
    margin: 0 auto;
    padding: 40px 0 30px;
    position: relative;
}

.pd-gallery-nav {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 5;
}

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

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

.pd-gallery-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.pd-gallery-btn:disabled:hover {
    background: var(--accent);
}

.pd-gallery-track {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 50px;
}

.pd-gallery-track::-webkit-scrollbar {
    display: none;
}

.pd-gallery-slide {
    flex: 0 0 580px;
    min-width: 0;
    background: #f4f4f4;
}

.pd-gallery-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.08 / 1;
    object-fit: cover;
    display: block;
}

.pd-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 20px;
}

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

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

/* ========================================
   PULL QUOTE (Aqua+ stijl)
   ======================================== */
.pd-quote {
    background: #f4f4f4;
    margin: 50px 0;
    padding: 70px 50px;
    position: relative;
    overflow: hidden;
}

.pd-quote-inner {
    max-width: 1480px;
    margin: 0 auto;
    position: relative;
}

.pd-quote-mark {
    position: absolute;
    top: -54px;
    right: 4%;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 180px;
    line-height: 1;
    color: var(--accent);
    pointer-events: none;
    user-select: none;
}

.pd-quote-text {
    margin-left: 8%;
    max-width: 820px;
    font-family: "pill-gothic-900mg", 'Barlow', sans-serif;
    font-size: clamp(24px, 2.7vw, 36px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.4px;
    color: var(--primary);
}

.pd-quote-author {
    margin-left: 8%;
    margin-top: 22px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
}

/* ========================================
   VIDEO BLOCK (optional)
   ======================================== */
.pd-video {
    max-width: 1480px;
    margin: 0 auto;
    padding: 30px 50px;
}

.pd-video-inner {
    margin-left: 8%;
    max-width: 860px;
}

.pd-video-inner iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}

/* ========================================
   CTA BLOCK
   ======================================== */
.pd-cta {
    max-width: 1480px;
    margin: 0 auto;
    padding: 64px 50px 72px;
}

.pd-cta-card {
    margin-left: 8%;
    max-width: 78%;
    background: var(--bg-dark);
    padding: 64px 60px;
    position: relative;
    overflow: hidden;
}

.pd-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: rgba(225, 4, 16, 0.12);
    transform: rotate(-15deg);
    pointer-events: none;
}

.pd-cta-title {
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 14px;
    max-width: 520px;
    position: relative;
    z-index: 1;
}

.pd-cta-desc {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 28px;
    max-width: 560px;
    position: relative;
    z-index: 1;
}

.pd-cta-btn {
    display: inline-block;
    padding: 15px 36px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
}

.pd-cta-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* ========================================
   RELATED PROJECTS SLIDER
   ======================================== */
.pd-related {
    background: #f4f4f4; /* zelfde grijs als .pd-quote */
    padding: 60px 0 72px;
}

.pd-related-inner {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
}

.pd-related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.pd-related-label {
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

.pd-related-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

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

.pd-related-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.pd-related-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.pd-related-track::-webkit-scrollbar {
    display: none;
}

.pd-related-card {
    flex: 0 0 300px;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.pd-related-card:hover {
    transform: translateY(-6px);
}

.pd-related-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.pd-related-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    padding: 14px 0 0;
    transition: color 0.2s ease;
}

.pd-related-card:hover .pd-related-card-title {
    color: var(--accent);
}

.pd-related-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-top: 20px;
}

.pd-related-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(26, 26, 26, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pd-related-dots .dot.active {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .pd-specs-inner {
        margin-left: 12%;
        width: 88%;
    }

    .pd-intro-inner {
        margin-left: 5%;
        max-width: 740px;
    }

    .pd-text-block-inner {
        margin-left: 5%;
        max-width: 740px;
    }

    .pd-video-inner {
        margin-left: 5%;
    }

    .pd-cta-card {
        margin-left: 5%;
        max-width: 88%;
    }

    .pd-gallery-slide {
        flex: 0 0 45%;
    }
}

@media (max-width: 1024px) {
    .pd-hero {
        height: 380px;
        margin-top: 70px;
    }

    .pd-hero-content {
        padding: 0 24px max(140px, 16vw);
    }

    .pd-hero-label {
        font-size: 16px;
    }

    .pd-hero h1 {
        max-width: 100%;
    }

    .pd-specs {
        padding: 0 24px;
    }

    .pd-specs-inner {
        margin-left: 0;
        width: 100%;
        flex-direction: column;
    }

    .pd-spec-item {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding: 16px 20px;
    }

    .pd-spec-item:last-child {
        border-bottom: none;
    }

    .pd-intro {
        padding: 30px 24px 20px;
    }

    .pd-intro-inner {
        margin-left: 0;
        max-width: 100%;
    }

    .pd-intro h2 {
        font-size: clamp(24px, 4vw, 32px);
    }

    .pd-text-block {
        padding: 16px 24px;
    }

    .pd-text-block-inner {
        margin-left: 0;
        max-width: 100%;
    }

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

    .pd-gallery {
        padding: 30px 0 20px;
    }

    .pd-gallery-nav {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: flex-end;
        padding: 0 24px 12px;
    }

    .pd-gallery-track {
        padding: 0 24px;
    }

    .pd-gallery-slide {
        flex: 0 0 50%;
        min-width: 260px;
    }

    .pd-video {
        padding: 20px 24px;
    }

    .pd-video-inner {
        margin-left: 0;
        max-width: 100%;
    }

    .pd-cta {
        padding: 30px 24px 40px;
    }

    .pd-cta-card {
        margin-left: 0;
        max-width: 100%;
        padding: 40px 24px;
    }

    .pd-related-inner {
        padding: 0 24px;
    }

    .pd-related-nav {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .pd-hero {
        height: 50vh;
        min-height: 340px;
    }

    .pd-hero h1 {
        font-size: clamp(28px, 7vw, 40px);
    }

    .pd-hero-content {
        padding: 0 16px max(140px, 20vw);
    }

    .pd-specs {
        padding: 0 16px;
    }

    .pd-intro {
        padding: 24px 16px 16px;
    }

    .pd-intro h2 {
        font-size: 24px;
    }

    .pd-intro-text {
        font-size: 16px;
    }

    .pd-text-block {
        padding: 12px 16px;
    }

    .pd-text-block h3 {
        font-size: 20px;
    }

    .pd-text-block p {
        font-size: 15px;
    }

    .pd-quote {
        padding: 44px 22px;
        margin: 30px 0;
    }

    .pd-quote-text,
    .pd-quote-author {
        margin-left: 0;
    }

    .pd-quote-text {
        font-size: 21px;
    }

    .pd-quote-mark {
        font-size: 110px;
        top: -34px;
        right: 16px;
    }

    .pd-gallery-nav {
        padding: 0 16px 10px;
    }

    .pd-gallery-track {
        padding: 0 16px;
    }

    .pd-gallery-slide {
        flex: 0 0 75%;
    }

    .pd-gallery-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .pd-cta {
        padding: 24px 16px 36px;
    }

    .pd-cta-card {
        padding: 32px 20px;
    }

    .pd-cta-title {
        font-size: 20px;
    }

    .pd-cta-desc {
        font-size: 15px;
    }

    .pd-related {
        padding: 30px 0 40px;
    }

    .pd-related-inner {
        padding: 0 16px;
    }

    .pd-related-card {
        flex: 0 0 200px;
    }
}

@media (max-width: 480px) {
    .pd-hero {
        height: 45vh;
        min-height: 300px;
    }

    .pd-gallery-slide {
        flex: 0 0 85%;
        min-width: 220px;
    }

    .pd-related-card {
        flex: 0 0 180px;
    }
}
