/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   BASE
========================= */
body {
    font-family: "Inter", "Helvetica Neue", sans-serif;
    background: #ededed;
    color: #121212;
    line-height: 1.75;
}

/* =========================
   HEADER
========================= */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    z-index: 100;
}

.header-inner {
    max-width: 1440px;
    margin: auto;
    padding: 22px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 15px;
    letter-spacing: 3px;
    font-weight: 500;
}

/* =========================
   MENU
========================= */
.menu a {
    position: relative;
    margin-left: 34px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #121212;
    opacity: 0.65;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: #121212;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.menu a:hover {
    opacity: 1;
}

.menu a:hover::after {
    transform: scaleX(1);
}

.menu a.active {
    opacity: 1;
}

/* =========================
   HERO
========================= */
.hero {
    height: 65vh;
    background:
        linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
        url("templates/family/images/banner.png") center / cover no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 0 5% 90px;
}


.hero-copy {
    color: #000000;
    max-width: 640px;
}

.label {
    font-size: 11px;
    color: #000000;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.7;
}

.hero h1 {
    font-size: 68px;
    font-weight: 400;
    line-height: 1.05;
    margin-top: 18px;
}

/* =========================
   MAIN PANEL
========================= */
.main-panel {
    margin-top: -120px;
    padding: 140px 5% 120px;
    background: transparent;
}

/* =========================
   CONTENT WRAPPER (wit vlak)
========================= */
.content-wrapper {
    max-width: 1200px;
    margin: auto;
    background: #fafafa;
    padding: 40px 40px;
    display: flex;
    gap: 80px;
    box-shadow: 0 40px 90px rgba(0,0,0,0.12);
}

/* Geen sidebar */
.content-wrapper.no-sidebar {
    display: block;
}

/* =========================
   EDITORIAL CONTENT
========================= */
.editorial {
    flex: 1;
}

.intro {
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 40px;
}

.editorial p {
    font-size: 17px;
    margin-bottom: 26px;
}

/* Divider */
.divider {
    width: 40px;
    height: 2px;
    background: #121212;
    margin: 60px 0;
}

/* =========================
   SIDEBAR
========================= */
.sidebar {
    width: 220px;
    flex-shrink: 0;
    border-left: 1px solid #CCC;
    padding-left: 48px;
    font-size: 15px;
    color: #555;
}

.sidebar h3,
.sidebar h4 {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #121212;
}

.sidebar p {
    margin-bottom: 18px;
}

/* =========================
   FOOTER
========================= */
.footer {
    padding: 60px 5%;
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.6;
    text-align: center;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

    .hero h1 {
        font-size: 42px;
    }

    .menu {
        display: none;
    }

    .content-wrapper {
        flex-direction: column;
        padding: 60px 40px;
        gap: 50px;
    }

    .sidebar {
        width: 100%;
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 40px;
    }
}
