/* assets/css/page-builder.css */

.acf-page-wrapper {
    background-color: #fff;
    padding-top: var(--header-height);
    min-height: 100vh;
}

/* --- HEADER --- */
.acf-page-header {
    position: relative;
    padding: 140px 0 100px 0;
    background-color: #f4f4f4;
    background-size: cover;
    background-position: center;
    text-align: center;
    margin-bottom: 80px;
}

.acf-page-header.has-bg { color: #fff; }
.acf-page-header.no-bg { color: var(--color-text-main); }

.header-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}
.acf-page-header.no-bg .header-overlay { display: none; }

.header-subtitle {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0.9;
    color: var(--color-gold);
    font-weight: 700;
}

.header-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
}

/* --- ALGEMENE BUILDER SECTIES --- */
.builder-section {
    margin-bottom: 100px;
    position: relative;
}

/* --- TEKST STYLES --- */
.text-container {
    max-width: 800px;
    margin: 0 auto;
}

.editorial-text {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-main);
}

.editorial-text h2, 
.editorial-text h3 {
    font-family: 'Playfair Display', serif;
    color: var(--color-text-main);
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.editorial-text h2 { font-size: 2.5rem; }
.editorial-text h3 { font-size: 1.8rem; font-style: italic; color: var(--color-gold); }

.editorial-text p { margin-bottom: 25px; }

.editorial-text ul {
    list-style: none; padding: 0; margin-bottom: 30px;
}
.editorial-text li {
    position: relative; padding-left: 20px; margin-bottom: 10px;
}
.editorial-text li::before {
    content: '—'; position: absolute; left: 0; color: var(--color-gold);
}

/* --- SPLIT (TEKST + BEELD) --- */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Als image rechts moet */
.section-split.pos-right .col-img { order: 2; }
.section-split.pos-right .col-txt { order: 1; }

.img-frame img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 0px rgba(0,0,0,0.03); /* Chique schaduw blok */
}

/* --- FULL IMAGE --- */
.section-full-img img {
    width: 100%;
    height: auto;
    display: block;
}

.section-full-img.height-screen img {
    height: 80vh;
    object-fit: cover;
}

/* --- QUOTE BLOCK --- */
.section-quote {
    text-align: center;
    padding: 60px 0;
    background-color: #fcfcfc;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-style: italic;
    color: var(--color-text-main);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
}

cite {
    display: block;
    margin-top: 20px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.9rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    font-weight: 700;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .section-split.pos-right .col-img { order: -1; } /* Op mobiel altijd img eerst */
    
    .header-title { font-size: 3rem; }
}

@media (max-width: 768px) {
    .acf-page-header { padding: 100px 0 60px 0; }
    blockquote { font-size: 1.6rem; }
}