/* Visser & De Vries Advocaten — Shared Stylesheet */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
a { color: #1a2744; text-decoration: none; }
a:hover { color: #8b7340; }
h1, h2, h3, h4 { color: #1a2744; font-weight: 600; letter-spacing: -0.01em; }
p { margin-bottom: 14px; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 40px; }

/* ── HEADER ── */
.site-header { position: relative; }
.header-top {
    background: #fff;
    border-bottom: 1px solid #eee;
}
.header-top .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo img { height: 52px; }
.logo-text {
    color: #1a2744;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
}
.logo-text span {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: #8b7340;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-top: 2px;
}
.header-contact {
    color: #888;
    font-size: 13px;
    text-align: right;
    line-height: 1.6;
}
.header-contact a { color: #1a2744; }
.header-contact a:hover { color: #8b7340; }
.header-contact strong { color: #1a2744; font-weight: 600; }

/* NAV */
.nav-bar { background: #1a2744; }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-bar ul { list-style: none; display: flex; gap: 0; }
.nav-bar li { position: relative; }
.nav-bar a {
    display: block;
    padding: 14px 22px;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.15s;
}
.nav-bar a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-bar .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: 50;
    border-top: 2px solid #8b7340;
}
.nav-bar .dropdown:hover .dropdown-menu { display: block; }
.nav-bar .dropdown-menu a {
    padding: 11px 20px;
    font-size: 13px;
    color: #4a4a4a;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    border-bottom: 1px solid #f0f0f0;
}
.nav-bar .dropdown-menu a:hover { background: #fafafa; color: #1a2744; }

/* ── BREADCRUMB ── */
.breadcrumb {
    background: #f8f8f6;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    font-size: 12px;
    color: #999;
}
.breadcrumb a { color: #999; }
.breadcrumb a:hover { color: #1a2744; }

/* ── PAGE CONTENT (subpages) ── */
.page-content { padding: 45px 0 70px; }
.page-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
}
.page-main h1 {
    font-size: 26px;
    margin-bottom: 8px;
}
.page-main .intro-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 28px;
}
.page-main h2 {
    font-size: 18px;
    margin: 28px 0 12px;
}
.page-main h2:first-of-type { margin-top: 0; }
.page-main p { font-size: 14px; line-height: 1.8; color: #555; }
.page-main ul {
    padding-left: 20px;
    margin-bottom: 18px;
}
.page-main li {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.7;
}

/* ── SIDEBAR ── */
.page-sidebar {}
.sidebar-box {
    background: #f8f8f6;
    border: 1px solid #eee;
    padding: 22px;
    margin-bottom: 18px;
}
.sidebar-box h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e6e1;
    color: #1a2744;
}
.sidebar-box p { font-size: 13px; margin-bottom: 6px; color: #666; }
.sidebar-box p:last-child { margin-bottom: 0; }
.sidebar-box ul { list-style: none; }
.sidebar-box li {
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
}
.sidebar-box li:last-child { border-bottom: none; }
.sidebar-box li a { color: #666; }
.sidebar-box li a:hover { color: #8b7340; }

/* ── FOOTER ── */
footer {
    background: #141e30;
    color: rgba(255,255,255,0.4);
    padding: 22px 0;
    font-size: 12px;
    text-align: center;
}
footer a { color: rgba(255,255,255,0.4); }
footer a:hover { color: rgba(255,255,255,0.7); }

/* ── MOBILE ── */
.menu-toggle { display: none; cursor: pointer; font-size: 22px; color: rgba(255,255,255,0.8); background: none; border: none; padding: 10px; }
@media (max-width: 980px) {
    .wrap { padding: 0 24px; }
    .menu-toggle { display: block; }
    .nav-bar ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #1a2744;
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 50;
    }
    .nav-bar ul.open { display: flex; }
    .nav-bar .dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        background: rgba(255,255,255,0.05);
        border-left: 2px solid #8b7340;
        margin: 4px 0 4px 20px;
    }
    .nav-bar .dropdown-menu a {
        padding: 12px 18px;
        color: rgba(255,255,255,0.7);
        font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-bar .dropdown-menu a:hover { color: #fff; background: rgba(255,255,255,0.08); }
    .nav-bar .dropdown:hover .dropdown-menu { display: none; }
    .nav-bar .dropdown.open-mobile .dropdown-menu { display: block; }
    .page-layout { grid-template-columns: 1fr; }
    .header-contact { display: none; }
}
