/* --- Root Variabelen --- */
:root {
    --bg-deep-space: #121212;
    --p-gold: #d4af37;
    --accent-purple: #4b0082;
    --text-main: #dcd5e4;
}

/* --- Intro Sectie (Tekst NAAST Foto) --- */
.blog-intro {
    padding: 60px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 50px;
}

.intro-content {
    display: flex !important; /* Forceert de naast-elkaar layout */
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.profile-image-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, var(--p-gold), var(--accent-purple));
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
    flex-shrink: 0;
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-deep-space);
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #fff;
    margin: 0 0 15px 0;
}

/* --- Blog Grid --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.blog-card-static {
    background: #1a1a1a;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.card-image-static {
    height: 190px;
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid var(--p-gold);
}

.card-content-static {
    padding: 25px;
}

.date-static {
    color: var(--accent-purple);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: block;
}

.card-content-static h3 {
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

.btn-read-static {
    display: inline-block;
    padding: 10px 22px;
    border: 2px solid var(--p-gold);
    color: var(--p-gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 15px;
}

.btn-read-static:hover {
    background: var(--p-gold);
    color: #000;
}

/* --- Mobiel --- */
@media (max-width: 768px) {
    .intro-content {
        flex-direction: column;
        text-align: center;
    }
}
.detail-hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.detail-hero-img {
    width: 200px;         /* Of maak dit '100%' als je hem groot wilt houden */
    height: 200px;        /* Zorg dat breedte en hoogte gelijk zijn voor een cirkel */
    object-fit: cover;
    border-radius: 50%;   /* Dit maakt hem rond */
    margin: 0 auto 20px auto;
    display: block;
    border: 4px solid #c5a059; /* Luxe gouden rand */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
/* --- Grid Layout --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* --- De Kaart: Luxe Gelaagdheid --- */
.blog-card-static {
    background: #1a1a1a;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease; /* Subtiele interactie bij hover */
    display: flex;
    flex-direction: column;
}

.blog-card-static:hover {
    transform: translateY(-5px);
    border-color: #c5a059;
}

/* --- Afbeelding met diepte --- */
.card-image-static {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 4px solid #c5a059;
    position: relative;
}

/* --- Inhoud --- */
.card-content-static {
    padding: 25px;
    flex-grow: 1;
}

.date-static {
    display: block;
    color: #6a4c9c; /* Paars accent */
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.card-content-static h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-family: 'Cinzel', serif;
}

.card-content-static p {
    color: #b3b3b3;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* --- De Knop: Luxe Ghost-Style --- */
.btn-read-static {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #c5a059;
    color: #c5a059;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-read-static:hover {
    background: #c5a059;
    color: #000;
}
.blog-detail-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.detail-hero-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.detail-hero-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--p-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.text-center { text-align: center; }
/* --- Detail Pagina: Luxe & Spiritueel --- */
.blog-detail-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: radial-gradient(circle at top, rgba(106, 76, 156, 0.15) 0%, transparent 70%);
}

.detail-hero-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

/* De 'Wow' Ring: Goud naar Paars verloop */
.detail-hero-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    /* Gradiënt rand */
    padding: 6px;
    background: linear-gradient(135deg, var(--p-gold), var(--accent-purple));
    border: none;
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.4);
    transition: transform 0.5s ease;
}

/* Subtiel zweef-effect bij hover */
.detail-hero-img:hover {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 0 50px rgba(197, 160, 89, 0.6);
}

/* Tekst effecten */
.text-center { 
    text-align: center; 
    margin-bottom: 20px;
}

/* Datum met een kleurig accent */
.date-static {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    background: rgba(106, 76, 156, 0.2);
    color: var(--p-gold) !important;
    font-size: 0.8rem;
    margin-bottom: 10px;
}