/* get-WISE-er Theme — trouwe nabootsing WISE visuele stijl */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,400&display=swap');

:root {
    --green: #00c567;      /* WISE: #00c566 */
    --green-dark: #00a456; /* WISE: #00a455 */
    --yellow: #f9e43a;     /* WISE: #f9e439 */
    --orange: #ff6917;     /* WISE: #ff6916 */
    --black: #010101;      /* WISE: #000000 */
    --white: #fefeff;      /* WISE: #fefefe */
    --gray-bg: #f2f2f3;    /* WISE: #f2f2f2 */
    --gray-mid: #8a8a8b;   /* WISE: #8a8a8a */
    --gray-dark: #333334;  /* WISE: #333333 */
    --font-head: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-body: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.grid { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* ==================== TOPBAR ==================== */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-bg);
}

.topbar .grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar .logo img { height: 40px; }

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 500;
}

.topbar-right a { color: var(--black); }
.topbar-right a:hover { color: var(--green); }

.menu-trigger {
    background: none;
    border: none;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.menu-trigger .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-trigger .hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--black);
}

/* ==================== MENU OVERLAY ==================== */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--black);
    color: var(--white);
    z-index: 200;
    padding: 3rem;
    overflow-y: auto;
}

.menu-overlay.active { display: flex; }

.menu-overlay .grid {
    display: flex;
    gap: 4rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.menu-overlay .menu-col { min-width: 180px; }

.menu-overlay .close-btn {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    font-family: var(--font-head);
}

.menu-overlay .logo-extended {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
}

.menu-overlay .logo-extended img { height: 40px; filter: brightness(0) invert(1); }

.menu-overlay h6 {
    font-family: var(--font-head);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-mid);
    margin: 0 0 0.75rem;
}

.menu-overlay ul { list-style: none; }

.menu-overlay ul li a {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    padding: 0.25rem 0;
}

.menu-overlay ul li a:hover { color: var(--green); }

/* ==================== HERO ==================== */
.hero {
    background: var(--yellow) url('../images/hero-bg.svg') no-repeat center center / cover;
    color: var(--black);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.25rem;
}

.hero h6 {
    font-family: var(--font-head);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--black);
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.15rem;
    color: var(--black);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.hero p a { color: var(--black); font-weight: 700; text-decoration: underline; }

.btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.15s;
}

.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); }
.btn-outline-white { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: var(--white); color: var(--black); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-black { background: var(--black); color: var(--white); border-color: var(--white); }
.btn-black-solid { background: var(--black); color: var(--white); }
.btn-outline-black { border-color: var(--black); color: var(--black); background: transparent; }
.btn-outline-black:hover { background: var(--black); color: var(--white); }

.hero .btn { margin: 0 0.4rem; }

/* ==================== DONATE BAR ==================== */
.donate-bar {
    background: var(--black);
    color: var(--white);
    padding: 2rem 1.25rem;
    text-align: center;
}

.donate-bar h5 {
    font-family: var(--font-head);
    font-size: 1rem;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
}

.donate-form {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.donate-label {
    font-family: var(--font-head);
    font-weight: 700;
}

.donate-amount {
    background: var(--white);
    border-radius: 4px;
    padding: 0.4rem 1rem;
    font-family: var(--font-head);
    color: var(--black);
}

.donate-amount input {
    border: none;
    width: 40px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    background: transparent;
    color: var(--black);
}

.donate-freq {
    font-family: var(--font-head);
    font-size: 0.85rem;
}

.donate-freq label {
    cursor: pointer;
    margin: 0 0.25rem;
}

/* ==================== GREEN CARDS ==================== */
.section { padding: 4rem 0; }
.section-title { text-align: center; margin-bottom: 0.5rem; }

.section-subtitle {
    text-align: center;
    font-family: var(--font-head);
    font-size: 1.05rem;
    color: var(--gray-dark);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.greencard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1rem;
}

.greencard {
    background: var(--green);
    color: var(--white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    transition: transform 0.2s;
    position: relative;
    overflow: hidden;
}

.greencard:hover { transform: translateY(-3px); }

.greencard .icon {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 65px;
    height: 65px;
    opacity: 0.3;
    line-height: 1;
}

.greencard .icon img {
    width: 100%;
    height: 100%;
    filter: invert(1);
}

.greencard h6 {
    font-family: var(--font-head);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.4rem;
}

.greencard h5 {
    font-family: var(--font-head);
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.greencard .btn {
    background: var(--black);
    color: var(--white);
    font-size: 0.75rem;
    padding: 0.5rem 1.5rem;
}

.more-link {
    text-align: center;
    margin-top: 2rem;
}

.more-link a {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* ==================== PROTEST IMAGE + NEWSLETTER BAR ==================== */
.protest-image {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.protest-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.newsletter-bar-orange {
    background: var(--orange);
    padding: 1.25rem 1.25rem;
}

.newsletter-bar-orange h5 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    color: var(--white);
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.newsletter-inner h5 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-head);
}

.input-group {
    display: flex;
    max-width: 360px;
}

.input-group input {
    flex: 1;
    padding: 0.55rem 1rem;
    border: 2px solid var(--gray-bg);
    border-right: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.input-group .btn {
    border-radius: 0;
    padding: 0.55rem 1rem;
}

/* ==================== KNOWLEDGE DOSSIERS ==================== */
.dossier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
}

.dossier-card {
    background: var(--yellow);
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.dossier-card .dossier-icon {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 75px;
    height: 75px;
    opacity: 0.25;
    line-height: 1;
}

.dossier-card .dossier-icon img {
    width: 100%;
    height: 100%;
    filter: invert(1);
}

.dossier-card h6 {
    font-family: var(--font-head);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-mid);
    margin-bottom: 0.25rem;
}

.dossier-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

.dossier-card p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.dossier-card .meta {
    font-family: var(--font-head);
    font-size: 0.8rem;
    color: var(--gray-mid);
    margin-bottom: 0.75rem;
}

.dossier-card .read-more {
    display: inline-block;
    background: var(--white);
    color: var(--black);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

/* ==================== NEWS ==================== */
.section-gray { background: var(--gray-bg); }

.actueel-header {
    background: var(--green);
    color: var(--black);
    padding: 3rem 0;
}

.actueel-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.actueel-inner h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0;
}

.actueel-inner p {
    max-width: 400px;
    margin: 0;
    font-size: 1.1rem;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.news-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    text-decoration: none;
    color: var(--black);
}

.news-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }

.news-card h6 {
    font-family: var(--font-head);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.news-card h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

.news-card .date {
    font-family: var(--font-head);
    font-size: 0.8rem;
    color: var(--gray-mid);
    text-transform: uppercase;
}

.news-card .btn {
    align-self: flex-end;
    margin-top: auto;
    white-space: nowrap;
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
    background: var(--orange);
    color: var(--white);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner .grid {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cta-banner img { max-height: 150px; }

.cta-badge {
    max-height: 120px;
    border-radius: 50%;
}

.cta-shop-btn {
    margin-top: 1rem;
}

.cta-banner h5 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    max-width: 500px;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--green);
    color: var(--black);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 0.6fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.site-footer h5 {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.site-footer p, .site-footer a {
    font-size: 0.9rem;
    color: rgba(0,0,0,0.7);
    line-height: 1.8;
}

.site-footer a:hover { color: var(--black); }

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1rem;
    font-size: 0.8rem;
    color: rgba(0,0,0,0.4);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo { margin-bottom: 0.25rem; }
.footer-logo img { height: 50px; }
.footer-tagline {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}
.social-icons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white) !important;
    text-decoration: none;
}
.social-icons a svg {
    color: var(--white);
}

.follow-heading { margin-top: 1.5rem; }

.footer-wise-intl { margin-top: 0.75rem; }

.footer-atom {
    width: 60px;
    height: 60px;
    margin: 0.5rem 0;
}

.footer-powered-text {
    font-size: 0.75rem;
    opacity: 0.6;
}

.footer-powered-text a { text-decoration: underline; }

/* ==================== PARTNERS BAR ==================== */
.partners-bar {
    padding: 2rem 0;
    background: var(--black);
}

.partners-bar .grid { text-align: center; }

.partners-link {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--green);
    text-transform: uppercase;
    text-decoration: none;
}

/* ==================== MENU OVERLAY EXTRAS ==================== */
.menu-grid { padding-top: 4rem; }
.menu-extern-heading { margin-top: 1.5rem; }

/* ==================== ARTICLE ==================== */
.article-header {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--gray-bg);
    margin-bottom: 2rem;
}

.article-meta {
    font-family: var(--font-head);
    font-size: 0.8rem;
    color: var(--gray-mid);
    margin-bottom: 0.75rem;
    display: flex;
    gap: 1.5rem;
}

.article-body {
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

.article-body p { margin-bottom: 1.5rem; }
.article-body h2 { font-size: 1.5rem; margin: 2rem 0 1rem; }

/* ==================== TOOLTIP ==================== */
[data-bron] {
    border-bottom: 1px dotted var(--green);
    cursor: help;
    position: relative;
}

[data-bron]:hover::after {
    content: "Bron: " attr(data-bron);
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-family: var(--font-head);
    font-size: 0.75rem;
    max-width: 350px;
    white-space: normal;
    z-index: 10;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero { min-height: 50vh; }
    .hero h1 { font-size: 1.8rem; }
    .greencard-grid { grid-template-columns: 1fr 1fr; }
    .dossier-grid { grid-template-columns: 1fr; }
    .news-list { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-banner .grid { flex-direction: column; text-align: center; }
    .newsletter-section .grid { flex-direction: column; }
}

@media (max-width: 480px) {
    .greencard-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
