/**
 * Bakspa Custom Styles v2.0
 * Dark theme met orange accents voor kennisbank & blog posts
 * Compatible met: ArileWP & Fayos themes
 * 
 * Toepassen: Dashboard > Appearance > Customize > Additional CSS
 * Of: style.css van child theme
 */

/* ========================================
   1. CORE VARIABLES & COLORS
   ======================================== */

:root {
    --bakspa-orange: #ff6a00;
    --bakspa-orange-dark: #e55f00;
    --bakspa-orange-light: rgba(255, 106, 0, 0.1);
    --bakspa-gray-900: #111114;
    --bakspa-gray-800: #1a1b1f;
    --bakspa-gray-700: #23252b;
    --bakspa-gray-600: #2c2f36;
    --bakspa-gray-400: #6b7280;
    --bakspa-gray-300: #9aa1ad;
    --bakspa-gray-200: #c9ced6;
    --bakspa-offwhite: #fffdf5;
    --bakspa-white: #ffffff;
}

/* ========================================
   2. FONTS IMPORT
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;900&family=Work+Sans:wght@300;400;500;600&display=swap');

/* ========================================
   3. PAGE CONTAINER & BACKGROUND
   ======================================== */

/* Target specifieke pagina types voor dark theme */
.page-template-default .entry-content,
.single-post .entry-content,
body.page .site-content,
body.single .site-content {
    background: linear-gradient(180deg, var(--bakspa-gray-900), var(--bakspa-gray-800));
    padding: 3rem 0;
}

/* Full width content area */
.page-template-default .container,
.single-post .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ========================================
   4. TYPOGRAPHY
   ======================================== */

/* H1 - Main Title */
.entry-content h1,
.entry-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    color: var(--bakspa-white) !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
}

/* H2 - Section Heading */
.entry-content h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--bakspa-white) !important;
    margin: 3rem 0 1.5rem !important;
    position: relative;
    padding-left: 2rem;
}

.entry-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: var(--bakspa-orange);
    border-radius: 2px;
}

/* H2 met orange class (subtitle) */
h2.wp-block-heading.orangetext.subtitle {
    color: var(--bakspa-orange) !important;
}
.entry-content h2.has-text-color {
    color: var(--bakspa-orange) !important;
    padding-left: 0;
}

.entry-content h2.has-text-color::before {
    display: none;
}

/* H3 - Sub-section */
.entry-content h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    color: var(--bakspa-white) !important;
    margin: 2rem 0 1rem !important;
}

/* H4 - Smaller heading */
.entry-content h4 {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: var(--bakspa-white) !important;
    margin: 1.5rem 0 0.75rem !important;
}

/* Paragraphs */
.entry-content p {
    font-family: 'Work Sans', sans-serif !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: var(--bakspa-gray-200) !important;
    margin-bottom: 1.5rem !important;
}

/* Strong/Bold text */
.entry-content strong,
.entry-content b {
    color: var(--bakspa-white) !important;
    font-weight: 600 !important;
}

/* Links */
.entry-content a {
    color: var(--bakspa-orange) !important;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.entry-content a:hover {
    color: var(--bakspa-orange-dark) !important;
}

/* Lists */
.entry-content ul,
.entry-content ol {
    color: var(--bakspa-gray-200) !important;
    margin-bottom: 1.5rem !important;
    padding-left: 2rem !important;
}

.entry-content li {
    margin-bottom: 0.75rem !important;
    color: var(--bakspa-gray-200) !important;
}

/* ========================================
   5. CUSTOM GUTENBERG BLOCKS
   ======================================== */

/* Meta Tags Container (Hero) */
.hero-meta-tags {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.meta-tag {
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #ff6a00;
    font-weight: 500;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.stat-card {
    /*background: linear-gradient(135deg, rgba(255, 106, 0, 0.1), rgba(255, 106, 0, 0.05));*/
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 106, 0, 0.5);
    box-shadow: 0 8px 24px rgba(255, 106, 0, 0.2);
}
.stat-card .stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--bakspa-orange);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    display: block;
    color: var(--bakspa-gray-200);
    font-size: 0.95rem;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.1) 0%, rgba(255, 106, 0, 0.05) 100%);
    border: 1px solid rgba(255,255,255,.10);
    border-left: 4px solid var(--bakspa-orange);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.info-box h4,
.info-box .info-title {
    color: var(--bakspa-orange) !important;
    margin-bottom: 1rem;
    margin-top: 0;
    font-size: 1.2rem !important;
}

.info-box p {
    margin-bottom: 0 !important;
}

/* Warning Box */
.warning-box {
    background: rgba(255, 106, 0, 0.08);
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.15);
}

.warning-box h4,
.warning-box .warning-title {
    color: var(--bakspa-orange) !important;
    margin: 0 0 1rem 0 !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warning-box h4::before,
.warning-box .warning-title::before {
    content: '⚠️';
    font-size: 1.3rem;
}

/* Numbered Grid */
.numbered-grid {
    display: grid;
    gap: 2rem;
    margin: 2.5rem 0;
}

.numbered-item {
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.numbered-item:hover {
    background: rgba(255, 106, 0, 0.05);
    border-color: rgba(255, 106, 0, 0.3);
    transform: translateX(5px);
}

.numbered-item .number-badge {
    background: var(--bakspa-orange);
    color: var(--bakspa-white);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.numbered-item .item-content h4 {
    margin-top: 0 !important;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.feature-card {
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 106, 0, 0.05);
    border-color: rgba(255, 106, 0, 0.3);
    transform: translateY(-5px);
}

.feature-card .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h4 {
    color: var(--bakspa-white) !important;
    margin-bottom: 0.75rem !important;
}

.feature-card p {
    color: var(--bakspa-gray-200) !important;
    font-size: 1rem !important;
}

/* Steps Grid */
/*.steps-grid {*/
/*    display: grid;*/
/*    gap: 2.5rem;*/
/*    margin: 2.5rem 0;*/
/*}*/
.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}

/*.step-card {*/
/*    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));*/
/*    border: 1px solid rgba(255,255,255,.10);*/
/*    border-radius: 16px;*/
/*    padding: 2.5rem;*/
/*    position: relative;*/
/*}*/
.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
}
.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #ff6a00;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}
.step-number:empty {
    display: none;
}
/*.step-card::before {*/
/*    !*content: attr(data-number);*!*/
/*    position: absolute;*/
/*    top: -1.5rem;*/
/*    left: 2rem;*/
/*    background: var(--bakspa-orange);*/
/*    color: var(--bakspa-white);*/
/*    width: 50px;*/
/*    height: 50px;*/
/*    border-radius: 12px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    font-family: 'Playfair Display', serif;*/
/*    font-size: 1.5rem;*/
/*    font-weight: 700;*/
/*}*/

.step-card h3 {
    color: var(--bakspa-white) !important;
    margin-bottom: 1rem !important;
}

/* Answer Options (Example Card) */
.answer-options {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.answer-option {
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.answer-option:hover {
    background: rgba(255, 106, 0, 0.05);
    border-color: rgba(255, 106, 0, 0.3);
}

.answer-option .option-label {
    background: var(--bakspa-orange);
    color: var(--bakspa-white);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.answer-option h4 {
    margin: 0 0 0.5rem 0 !important;
    color: var(--bakspa-white) !important;
}

.answer-option p {
    margin: 0 !important;
    color: var(--bakspa-gray-200) !important;
    font-size: 0.95rem !important;
}

/* Example Card Container */
.example-card {
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
}

/* Mistake Item */
.mistake-item {
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border-left: 4px solid var(--bakspa-orange);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.mistake-item h4 {
    color: var(--bakspa-orange) !important;
    margin-bottom: 1rem !important;
}

.mistake-item .mistake-error {
    color: var(--bakspa-gray-200) !important;
    margin-bottom: 1rem !important;
}

.mistake-item .mistake-solution {
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.mistake-item .mistake-solution strong {
    color: var(--bakspa-orange) !important;
}

/* ========================================
   6. SEPARATORS & SPACING
   ======================================== */

.entry-content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 3rem 0;
}

/* ========================================
   7. IMAGES
   ======================================== */

.entry-content img {
    border-radius: 12px;
    margin: 2rem 0;
    max-width: 100%;
    height: auto;
}

.entry-content figure {
    margin: 2rem 0;
}

.entry-content figcaption {
    color: var(--bakspa-gray-300);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
}

/* ========================================
   8. MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .entry-content h1,
    .entry-title {
        font-size: 2.5rem !important;
    }

    .entry-content h2 {
        font-size: 2rem !important;
        padding-left: 1.5rem;
    }

    .entry-content h3 {
        font-size: 1.5rem !important;
    }

    .entry-content h4 {
        font-size: 1.2rem !important;
    }

    .entry-content p {
        font-size: 1rem !important;
    }

    .stats-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .numbered-item {
        grid-template-columns: 1fr;
    }

    .numbered-item .number-badge {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .answer-option {
        grid-template-columns: 1fr;
    }

    .answer-option .option-label {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ========================================
   9. PRINT STYLES
   ======================================== */

@media print {
    body {
        background: white !important;
    }

    .entry-content h1,
    .entry-content h2,
    .entry-content h3,
    .entry-content h4,
    .entry-content p,
    .entry-content li,
    .entry-content strong {
        color: black !important;
    }

    .info-box,
    .warning-box,
    .numbered-item,
    .feature-card,
    .step-card {
        background: white !important;
        border: 1px solid #ccc !important;
    }
}

/* ========================================
   10. COMPATIBILITY OVERRIDES
   ======================================== */

/* Override default theme styles */
.entry-content .hero-meta-tags,
.entry-content .stats-grid,
.entry-content .feature-grid,
.entry-content .steps-grid,
.entry-content .numbered-grid,
.entry-content .answer-options {
    list-style: none !important;
    padding-left: 0 !important;
}

/* Ensure dark background extends full width */
.site-content {
    background: linear-gradient(180deg, var(--bakspa-gray-900), var(--bakspa-gray-800));
}

/* Sidebar compatibility (if present) */
.sidebar {
    background: var(--bakspa-gray-800);
    color: var(--bakspa-gray-200);
    padding: 2rem;
    border-radius: 12px;
}

.sidebar h2,
.sidebar h3 {
    color: var(--bakspa-white) !important;
}

.sidebar a {
    color: var(--bakspa-orange) !important;
}

/**

- BAKSPA EMERGENCY FIX CSS
-
- Als het theme geïnstalleerd is maar de styling niet werkt,
- plak deze CSS in: Appearance → Customize → Additional CSS
-
- Dit forceert de styling met !important flags
-
- GEBRUIK DIT ALLEEN ALS:
- - Theme v13.2 is geïnstalleerd
- - bakspa-custom.css niet laadt
- - Template is toegewezen
- - Cache is cleared
*/

/* === FONTS IMPORT === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;900&family=Work+Sans:wght@300;400;500;600&display=swap');

/* === FORCE DARK BACKGROUND === */
body.page,
body.single,
body.page-template-page-bakspa-content,
.site,
.site-content,
#wrapper,
.theme-bg-dark {
    background: linear-gradient(180deg, #111114, #1a1b1f) !important;
}

.entry-content,
.bakspa-content-page,
.page-content {
    background: transparent !important;
}

/* === TYPOGRAPHY OVERRIDES === */
.entry-title,
.entry-content h1,
h1.entry-title {
    font-family: ‘Playfair Display’, serif !important;
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
}

.entry-content h2,
.bakspa-content-page h2 {
    font-family: ‘Playfair Display’, serif !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 3rem 0 1.5rem !important;
    position: relative;
    padding-left: 2rem;
}


/* Orange subtitle (H2 with color) */
.entry-content h2[style*=“color”],
.entry-content .has-text-color {
    color: #ff6a00 !important;
    border-left: none !important;
    padding-left: 0 !important;
}

.entry-content h2[style*=“color”]::before {
    display: none;
}

.entry-content h3 {
    font-family: ‘Playfair Display’, serif !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
}

.entry-content h4 {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
}

.entry-content p,
.bakspa-content-page p {
    font-family: ‘Work Sans’, sans-serif !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: #c9ced6 !important;
}

.entry-content strong,
.entry-content b {
    color: #ffffff !important;
    font-weight: 600 !important;
}

.entry-content a {
    color: #ff6a00 !important;
}

.entry-content a:hover {
    color: #e55f00 !important;
}

/* === LISTS === */
.entry-content ul,
.entry-content ol {
    color: #c9ced6 !important;
}

.entry-content li {
    color: #c9ced6 !important;
    margin-bottom: 0.75rem !important;
}

/* === HORIZONTAL RULES === */
.entry-content hr {
    border: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin: 3rem 0 !important;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 106, 0, 0.3) 50%, transparent 100%);
}

/* === CUSTOM BLOCKS (FORCE) === */

/* Meta Tags */
.hero-meta-tags,
.entry-content > p:first-of-type {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem !important;
}

.entry-content > p:first-of-type {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    color: #c9ced6 !important;
    display: inline-block;
    margin-right: 1rem;
}

/* Stats Grid */
.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    margin: 2.5rem 0 !important;
}


.stat-number {
    display: block;
    font-family: ‘Playfair Display’, serif !important;
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: #ff6a00 !important;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: #c9ced6 !important;
    font-size: 0.95rem !important;
}

.info-box h4,
.info-box .info-title {
    color: #ff6a00 !important;
    margin-bottom: 1rem !important;
    margin-top: 0 !important;
}


.warning-box h4 {
    color: #ff6a00 !important;
    margin: 0 0 1rem 0 !important;
}

/* Feature Grid */
.feature-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
    margin: 2.5rem 0 !important;
}

.feature-card {
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)) !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 106, 0, 0.05) !important;
    border-color: rgba(255, 106, 0, 0.3) !important;
    transform: translateY(-5px);
}

.feature-card .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

/* Numbered Grid */
.numbered-grid {
    display: grid !important;
    gap: 2rem !important;
    margin: 2.5rem 0 !important;
}


.numbered-item:hover {
    background: rgba(255, 106, 0, 0.05) !important;
    border-color: rgba(255, 106, 0, 0.3) !important;
    transform: translateX(5px);
}


/* Steps Grid */
.steps-grid {
    display: grid !important;
    gap: 2.5rem !important;
    margin: 2.5rem 0 !important;
}

/*.step-card {*/
/*    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)) !important;*/
/*    border: 1px solid rgba(255,255,255,.10) !important;*/
/*    border-radius: 16px !important;*/
/*    padding: 2.5rem !important;*/
/*    position: relative;*/
/*}*/


/* Answer Options */
.answer-options {
    display: grid !important;
    gap: 1.5rem !important;
    margin: 2rem 0 !important;
}



.answer-option:hover {
    background: rgba(255, 106, 0, 0.05) !important;
    border-color: rgba(255, 106, 0, 0.3) !important;
}


/* === SIDEBAR HIDE === */
.page-template-page-bakspa-content .sidebar,
.bakspa-content-page .sidebar,
body.page #secondary {
    display: none !important;
}

/* === FULL WIDTH === */
.page-template-page-bakspa-content #primary,
.page-template-page-bakspa-content .content-area {
    width: 100% !important;
    float: none !important;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
    .entry-content h1 {
        font-size: 2rem !important;
    }

    .entry-content h2 {
        font-size: 1.5rem !important;
    }

    .entry-content h3 {
        font-size: 1.3rem !important;
    }

    .stats-grid,
    .feature-grid {
        grid-template-columns: 1fr !important;
    }

    .numbered-item {
        grid-template-columns: 1fr !important;
    }

    .number-badge {
        margin-bottom: 1rem;
    }

}

/* === HEADER/FOOTER DARK (optional) === */
.site-header {
    background: rgba(17, 17, 20, 0.95) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.site-footer {
    background: #1a1b1f !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.site-header a,
.site-footer a {
    color: #fffdf5 !important;
}

.site-header a:hover,
.site-footer a:hover {
    color: #ff6a00 !important;
}

/* === CLEANUP === */
/* Remove list-style if blocks are detected */
[class*=“wp-block-bakspa”] {
    list-style: none !important;
    padding-left: 0 !important;
}

/* Ensure no theme backgrounds override */
.theme-bg-default,
.theme-bg-dark,
.theme-bg-grey {
    background: transparent !important;
}
.orangetext {
    color: var(--bakspa-orange) !important;
}


/* Bakspa Blog Archive */

.bakspa-blog-archive {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    min-height: 100vh;
}

.bakspa-blog-archive .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Header */
.archive-header {
    margin-bottom: 60px;
    text-align: center;
}

.archive-title {
    font-family: 'Playfair Display', serif;
    color: #ff6a00;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

/* Card */
.blog-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 106, 0, 0.2);
}

/* Image */
.blog-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #0f172a;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

/* Content */
.blog-card-content {
    padding: 30px;
}

.blog-meta {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title a {
    color: #ff6a00;
}

.blog-card-excerpt {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6a00;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-read-more {
    gap: 12px;
}

/* Verberg oude meta */
.blog-card .entry-meta,
.blog-card .posted-on,
.blog-card .byline {
    display: none !important;
}

/* Pagination */
.blog-pagination {
    margin-top: 60px;
    text-align: center;
}

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.blog-pagination a,
.blog-pagination span {
    padding: 12px 20px;
    background: rgba(255, 106, 0, 0.1);
    color: #ff6a00;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-pagination a:hover {
    background: #ff6a00;
    color: #ffffff;
}

.blog-pagination .current {
    background: #ff6a00;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .archive-title {
        font-size: 2.5rem;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 1.5rem;
    }
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 106, 0, 0.3);
}
.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top-color: rgba(255, 255, 255, 0.1);
    border-right-color: rgba(255, 255, 255, 0.1);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    border-left-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.entry-content strong {
    color: #ff6a00 !important;
    font-weight: 600 !important;
}
.entry-content p, .bakspa-content-page p {
    margin-bottom: 0rem !important;
    font-size: 1.125rem !important;
    color: #d1d5db !important;
}