/*
Theme Name: Kadence Child - De Johanneshoeve
Theme URI: https://www.johanneshoeve.nl
Template: kadence
Version: 1.0.0
Description: Child thema voor De Johanneshoeve, gebaseerd op Kadence.
Author: De Johanneshoeve
Text Domain: kadence-child
*/

/* ============================================
   GLOBALE VARIABELEN
   ============================================ */
:root {
    --paars: #42113D;
    --goud:  #9F8F76;
    --licht: #F6F6F8;
    --wit:   #FFFFFF;
}

/* ============================================
   LAYOUT FIXES — Geen witte randen
   ============================================ */
.entry-header,
.wp-block-post-title {
    display: none !important;
}

.entry-content,
.wp-block-post-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

.site-content .content-area {
    padding-top: 0 !important;
}

.kadence-inner-column-inner,
.wp-site-blocks {
    padding: 0 !important;
}

/* ============================================
   HERO SECTIE
   ============================================ */
.hero {
    position: relative;
    height: 75vh;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
}

.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 24px;
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: hero-fadeup .9s ease both;
}

@keyframes hero-fadeup {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero__title-italic {
    font-family: 'loretta-display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2.6rem, 6vw, 5rem);
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.hero__title-bold {
    font-family: 'futura-pt', sans-serif;
    font-weight: 600;
    font-size: clamp(2.8rem, 7vw, 5.6rem);
    color: #ffffff;
    line-height: 1.0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 48px;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #42113D;
    width: 246px;
    height: 37px;
    padding: 8px;
    gap: 8px;
    border-radius: 4px;
    border: none;
    font-family: 'futura-pt', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.hero__btn:hover {
    background: rgba(255, 255, 255, 0.85);
}

@media (max-width: 600px) {
    .hero__title-italic { font-size: 2.2rem; }
    .hero__title-bold   { font-size: 2.6rem; margin-bottom: 36px; }
    .hero__btn          { width: 100%; max-width: 280px; }
}

.tli {
    background: #ffffff;
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.tli__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.tli__title {
    margin-bottom: 24px;
}

.tli__title-italic {
    display: block;
    font-family: 'loretta-display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #42113D;
    line-height: 1.15;
    margin-bottom: 4px;
}

.tli__title-bold {
    display: block;
    font-family: 'futura-pt', sans-serif;
    font-weight: 600;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: #42113D;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.tli__card {
    background: #F6F6F8;
    border-radius: 12px;
    padding: 36px;
}

.tli__text {
    font-family: 'futura-pt', sans-serif;
    font-weight: 400;
    font-size: 0.97rem;
    line-height: 1.75;
    color: #42113D;
    margin-bottom: 20px;
}

.tli__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #9F8F76;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 4px;
    font-family: 'futura-pt', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.tli__btn:hover {
    background: #8a7a65;
}

.tli__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    min-height: 480px;
}

@media (max-width: 768px) {
    .tli {
        padding: 48px 24px;
    }
    .tli__grid {
        grid-template-columns: 1fr;
    }
    .tli__img {
        min-height: 300px;
    }
}