/*
Theme Name: CoworkDen

Author: CoworkDen
Version: 2.1
*/
:root {
    --brand-purple: #8e2aa8;
}

/* ===========================
   RESET & BASE
=========================== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    color: #444;
}

/* ===========================
   NIKE-STYLE TYPO (ALLEEN TEKST)
=========================== */

h1 {
    font-size: 64px;
    font-weight: 800; /* NIKE-ACHTIG DIK */
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

/* ===========================
   HEADER (SIMPEL, NIKE-WHITE)
=========================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 32px;

    display: flex;
    align-items: center;
    justify-content: center; /* MENU PERFECT IN HET MIDDEN */
    gap: 60px;

    position: relative;
}

/* LOGO LINKS VAST */
.logo {
    position: absolute;
    left: 32px;
}

.site-logo {
    height: 36px;
    width: auto;
}

/* NAVIGATION */
.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.main-nav a:hover {
    opacity: 0.6;
}

/* ===========================
   PAGE WRAPPER
=========================== */

.page {
    max-width: 100%;
    margin: 0 auto;
    padding: 0px;
}

/* main mag full width zijn */
main {
    width: 100%;
    margin: 0;
    padding: 0;
}


/* ===========================
   HERO (OUDE LAYOUT BEHOUDEN)
=========================== */

.hero {
    margin-bottom: 140px;
}

.hero h1 {
    font-weight: 900; /* extra power voor hero */
}

.hero-text,
.hero-sub {
    font-size: 20px;
    max-width: 520px;
    color: #444;
}

/* ===========================
   SECTIONS
=========================== */

.section {
    margin-bottom: 160px;
}

.section-head {
    max-width: 640px;
    margin-bottom: 64px;
}

/* ===========================
   GRID (WAT WE DOEN)
=========================== */

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    padding: 28px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #eee;
    font-weight: 500;
}

/* ===========================
   STEPS
=========================== */

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.step {
    max-width: 520px;
}

.step-number,
.step span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #999;
}

/* ===========================
   LISTS
=========================== */

.list {
    list-style: none;
    padding: 0;
}

.list li {
    margin-bottom: 14px;
}

.list li::before {
    content: "✔ ";
    color: #22c55e;
    font-weight: 700;
}

/* ===========================
   FAQ
=========================== */

.faq,
.inbegrepen-faq {
    border-top: 1px solid #eee;
    padding-top: 80px;
}

details {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 14px;
}

summary {
    cursor: pointer;
    font-weight: 600;
}

/* ===========================
   BUTTONS (ONGEWIJZIGD)
=========================== */

.btn {
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
}

.btn.primary {
    background: #111;
    color: #fff;
}

.btn.subtle {
    color: #111;
}

.site-logo {
    height: 42px;
    width: auto;
    display: block;
}

/* ===========================
   THEMA KLEUR – PAARS
=========================== /

/ Header accent /
.site-header {
    border-bottom: 2px solid var(--brand-purple);
}

/ Navigatie hover paars /
.main-nav a:hover {
    color: var(--brand-purple);
    opacity: 1;
}

/ Footer paars (algemeen) /
.site-footer,
footer {
    background: var(--brand-purple);
    color: #fff;
}

/ Footer links */
.site-footer a,
footer a {
    color: #fff;
}

.site-footer a:hover,
footer a:hover {
    opacity: 0.8;
}


/* ===========================
   FOOTER (VERKLEIND & STRAK)
=========================== */

.site-footer {
    width: 100%;
    background: linear-gradient(
        135deg,
        #7b1fa2 0%,
        #8e2aa8 45%,
        #6a1b9a 100%
    );
    color: #ffffff;
}

/* 🔽 HOOFDVERKLEINING */
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

/* LOGO */
.footer-logo {
    width: 110px;
    margin-bottom: 8px;
}

/* TEKST */
.footer-brand p {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255,255,255,0.85);
}

/* KOLOMMEN */
.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 8px;
    font-size: 13px;
}

.footer-col a {
    color: rgba(255,255,255,0.9);
}

/* ONDERSTE BALK */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.25);
    text-align: center;
    padding: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
}

/* FIX: Werkwijze layout gelijk aan Home */
.page-template-page-werkwijze .page {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

/* inhoud opnieuw centreren */
.page-template-page-werkwijze .page > * {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* =========================
MOBILE HEADER FIX
========================= */

@media (max-width: 768px){

.header-inner{
display:flex;
align-items:center;
justify-content:space-between;
padding:12px 16px;
}

/* logo */
.site-logo{
height:32px;
}

/* menu */
.main-nav{
display:flex;
gap:10px;
flex-wrap:wrap;
justify-content:flex-end;
}

.main-nav a{
font-size:12px;
white-space:nowrap;
}

}

/* =========================
HOME HERO MOBILE
========================= */

@media (max-width:768px){

.hero{
display:grid;
grid-template-columns:1fr;
}

.hero-right{
margin-top:40px;
}

.hero h1{
font-size:34px;
line-height:1.2;
}

}

/* =========================
MOBILE HEADER FIX (ECHT)
========================= */

@media (max-width:768px){

/* header layout reset */
.header-inner{
    justify-content:space-between;
    gap:12px;
}

/* logo mag NIET absolute zijn op mobiel */
.logo{
    position:static;
}

/* logo grootte */
.site-logo{
    height:32px;
}

/* menu */
.main-nav{
    gap:12px;
}

.main-nav a{
    font-size:13px;
}

}

/* =========================
MOBILE HERO SPLIT FIX
========================= */

@media (max-width:768px){

.hero{
display:flex !important;
flex-direction:column !important;
}

.hero > *{
width:100% !important;
}

.hero > *:last-child{
margin-top:40px;
}

}


/* ===========================
   HAMBURGER MENU
=========================== */

.menu-toggle{
display:none;
font-size:26px;
background:none;
border:none;
cursor:pointer;
}

/* mobiel */
@media (max-width:768px){

.menu-toggle{
display:block;
}

.main-nav{
display:none;
position:absolute;
top:70px;
right:20px;
background:#fff;
flex-direction:column;
padding:20px;
border-radius:10px;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.main-nav a{
padding:8px 0;
}

.main-nav.active{
display:flex;
}

}