/* =============================================
   LHBT Netwerk Zeeland - Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
    --clr-violet: #6D28D9;
    --clr-violet-deep: #4C1D95;
    --clr-magenta: #A855F7;
    --clr-pink: #D946EF;
    --clr-rose: #F0ABFC;
    --clr-light: #FAF5FF;
    --clr-white: #FFFFFF;
    --clr-dark: #1E1B2E;
    --clr-text: #2D2640;
    --clr-text-light: #6B5F83;
    --clr-border: #E2D8F0;
    --clr-banner-bg: #FEF3C7;
    --clr-banner-text: #92400E;
    --ff-heading: 'Lora', Georgia, serif;
    --ff-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    --rad: 8px;
    --shadow-sm: 0 1px 3px rgba(109,40,217,0.08);
    --shadow-md: 0 4px 16px rgba(109,40,217,0.12);
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--ff-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--clr-text);
    background: var(--clr-white);
    -webkit-font-smoothing: antialiased;
}

/* --- REDIRECT BANNER --- */
.rdr-banner {
    background: var(--clr-banner-bg);
    color: var(--clr-banner-text);
    text-align: center;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    z-index: 1000;
}

.rdr-banner a {
    color: #B45309;
    font-weight: 700;
    text-decoration: underline;
}

.rdr-banner a:hover {
    color: #92400E;
}

/* --- SITE HEADER --- */
.siteHead {
    background: linear-gradient(135deg, var(--clr-violet-deep) 0%, var(--clr-violet) 50%, var(--clr-magenta) 100%);
    position: relative;
}

.siteHead-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.siteHead .brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--clr-white);
}

.siteHead .brand img {
    height: 48px;
    width: auto;
}

.siteHead .brand-label {
    font-family: var(--ff-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.siteHead .brand-sub {
    font-size: 0.75rem;
    font-weight: 300;
    opacity: 0.85;
    letter-spacing: 0.04em;
    display: block;
}

/* Navigation */
.topNav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topNav a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--rad);
    transition: background var(--transition), color var(--transition);
}

.topNav a:hover,
.topNav a.current {
    background: rgba(255,255,255,0.18);
    color: var(--clr-white);
}

.topNav a.cta-link {
    background: var(--clr-pink);
    color: var(--clr-white);
    font-weight: 600;
}

.topNav a.cta-link:hover {
    background: var(--clr-rose);
    color: var(--clr-violet-deep);
}

/* Mobile toggle */
.menuToggle {
    display: none;
    background: none;
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--clr-white);
    font-size: 1.5rem;
    padding: 6px 10px;
    border-radius: var(--rad);
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 860px) {
    .menuToggle {
        display: block;
    }
    .topNav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--clr-violet-deep);
        flex-direction: column;
        padding: 12px 24px 20px;
        gap: 4px;
        z-index: 999;
    }
    .topNav.open {
        display: flex;
    }
    .topNav a {
        width: 100%;
        padding: 12px 16px;
    }
}

/* --- HERO SECTION --- */
.heroSplit {
    background: var(--clr-light);
    overflow: hidden;
}

.heroSplit-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 440px;
    align-items: center;
}

.heroSplit-content {
    padding: 64px 48px 64px 24px;
}

.heroSplit-content h1 {
    font-family: var(--ff-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--clr-violet-deep);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.heroSplit-content p {
    font-size: 1.15rem;
    color: var(--clr-text-light);
    margin-bottom: 24px;
    max-width: 520px;
}

.heroSplit-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(160deg, var(--clr-violet) 0%, var(--clr-magenta) 60%, var(--clr-pink) 100%);
}

.heroSplit-visual svg {
    max-width: 340px;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .heroSplit-grid {
        grid-template-columns: 1fr;
    }
    .heroSplit-content {
        padding: 48px 24px 32px;
    }
    .heroSplit-content h1 {
        font-size: 2rem;
    }
    .heroSplit-visual {
        padding: 32px;
        min-height: 260px;
    }
}

/* --- GENERIC ELEMENTS --- */
h2, h3, h4 {
    font-family: var(--ff-heading);
    color: var(--clr-violet-deep);
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 10px;
}

a {
    color: var(--clr-violet);
    transition: color var(--transition);
}

a:hover {
    color: var(--clr-pink);
}

img {
    max-width: 100%;
    height: auto;
}

/* --- PAGE CONTENT --- */
.pgWrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px;
}

.pgWrap--narrow {
    max-width: 820px;
}

/* Section spacing */
.sect {
    margin-bottom: 72px;
}

.sect:last-child {
    margin-bottom: 0;
}

.sect-title {
    text-align: center;
    margin-bottom: 40px;
}

.sect-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-violet), var(--clr-pink));
    margin: 12px auto 0;
    border-radius: 2px;
}

/* --- INTRODUCTION --- */
.introBox {
    background: var(--clr-white);
    border-left: 5px solid var(--clr-magenta);
    padding: 32px 36px;
    border-radius: 0 var(--rad) var(--rad) 0;
    box-shadow: var(--shadow-sm);
    font-size: 1.08rem;
    line-height: 1.8;
}

/* --- THEMES GRID --- */
.themeGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.themeCard {
    padding: 32px 28px;
    border-radius: var(--rad);
    background: var(--clr-light);
    transition: transform var(--transition), box-shadow var(--transition);
}

.themeCard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.themeCard h3 {
    margin-bottom: 12px;
}

.themeCard h3 a {
    text-decoration: none;
    color: var(--clr-violet-deep);
}

.themeCard h3 a:hover {
    color: var(--clr-pink);
}

.themeCard p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.themeCard .readOn {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-magenta);
    text-decoration: none;
}

.themeCard .readOn:hover {
    color: var(--clr-pink);
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border: none;
    border-radius: var(--rad);
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}

.btn-primary {
    background: var(--clr-violet);
    color: var(--clr-white);
}

.btn-primary:hover {
    background: var(--clr-violet-deep);
    color: var(--clr-white);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--clr-violet);
    border: 2px solid var(--clr-violet);
}

.btn-outline:hover {
    background: var(--clr-violet);
    color: var(--clr-white);
}

/* --- PARTNERS GRID --- */
.partnerGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.partnerItem {
    padding: 28px 24px;
    background: var(--clr-light);
    border-radius: var(--rad);
}

.partnerItem h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.partnerItem p {
    font-size: 0.93rem;
    color: var(--clr-text-light);
    margin-bottom: 12px;
}

.partnerItem .extLink {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-magenta);
    text-decoration: none;
}

.partnerItem .extLink:hover {
    color: var(--clr-pink);
}

/* --- FILTER BUTTONS --- */
.filterBar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.filterBtn {
    background: var(--clr-border);
    border: none;
    padding: 8px 18px;
    border-radius: var(--rad);
    font-family: var(--ff-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--clr-text);
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.filterBtn.active,
.filterBtn:hover {
    background: var(--clr-violet);
    color: var(--clr-white);
}

/* --- CONTACT FORM --- */
.formGroup {
    margin-bottom: 20px;
}

.formGroup label {
    display: block;
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 6px;
    color: var(--clr-text);
}

.formGroup input,
.formGroup textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--clr-border);
    border-radius: var(--rad);
    font-family: var(--ff-body);
    font-size: 1rem;
    color: var(--clr-text);
    transition: border-color var(--transition);
    background: var(--clr-white);
}

.formGroup input:focus,
.formGroup textarea:focus {
    outline: none;
    border-color: var(--clr-magenta);
}

.formGroup textarea {
    min-height: 140px;
    resize: vertical;
}

/* --- BLOG LISTING --- */
.postList {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.postEntry {
    padding: 28px 32px;
    background: var(--clr-light);
    border-radius: var(--rad);
    border-left: 4px solid var(--clr-magenta);
}

.postEntry time {
    display: inline-block;
    font-size: 0.82rem;
    color: var(--clr-text-light);
    margin-bottom: 6px;
    font-weight: 500;
}

.postEntry h3 {
    margin-bottom: 8px;
}

.postEntry h3 a {
    text-decoration: none;
    color: var(--clr-violet-deep);
}

.postEntry h3 a:hover {
    color: var(--clr-pink);
}

.postEntry p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.postEntry .more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-magenta);
    text-decoration: none;
}

.postEntry .more:hover {
    color: var(--clr-pink);
}

/* --- SINGLE POST --- */
.articleBody {
    max-width: 760px;
    margin: 0 auto;
}

.articleBody h1 {
    font-family: var(--ff-heading);
    font-size: 2.4rem;
    color: var(--clr-violet-deep);
    margin-bottom: 12px;
    line-height: 1.2;
}

.articleBody .postMeta {
    color: var(--clr-text-light);
    font-size: 0.88rem;
    margin-bottom: 32px;
}

.articleBody h2 {
    font-size: 1.5rem;
    margin-top: 36px;
    margin-bottom: 12px;
}

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

.articleBody ul, .articleBody ol {
    margin: 0 0 18px 24px;
}

.articleBody li {
    margin-bottom: 6px;
}

/* --- BREADCRUMB --- */
.crumbs {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    margin-bottom: 24px;
}

.crumbs a {
    color: var(--clr-magenta);
    text-decoration: none;
}

.crumbs a:hover {
    text-decoration: underline;
}

.crumbs span {
    margin: 0 6px;
    opacity: 0.5;
}

/* --- PAGE HEADER --- */
.pgHeader {
    background: linear-gradient(135deg, var(--clr-violet-deep), var(--clr-violet));
    padding: 48px 24px;
    text-align: center;
}

.pgHeader h1 {
    font-family: var(--ff-heading);
    font-size: 2.4rem;
    color: var(--clr-white);
    font-weight: 700;
}

.pgHeader p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-top: 8px;
}

/* --- FOOTER --- */
.siteFoot {
    background: var(--clr-dark);
    color: rgba(255,255,255,0.75);
    padding: 56px 24px 0;
}

.siteFoot-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.siteFoot-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.siteFoot-about p {
    font-size: 0.93rem;
    line-height: 1.7;
    margin-top: 12px;
}

.siteFoot h4 {
    color: var(--clr-white);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.siteFoot-links {
    list-style: none;
}

.siteFoot-links li {
    margin-bottom: 8px;
}

.siteFoot-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color var(--transition);
}

.siteFoot-links a:hover {
    color: var(--clr-rose);
}

.siteFoot-contact p {
    font-size: 0.92rem;
    margin-bottom: 6px;
}

.siteFoot-contact a {
    color: var(--clr-rose);
    text-decoration: none;
}

.siteFoot-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

@media (max-width: 768px) {
    .siteFoot-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* --- COOKIE POPUP --- */
.cookiePopup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 380px;
    background: var(--clr-dark);
    color: rgba(255,255,255,0.85);
    padding: 24px;
    border-radius: var(--rad);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    z-index: 9999;
    font-size: 0.88rem;
    line-height: 1.6;
    display: none;
}

.cookiePopup.visible {
    display: block;
}

.cookiePopup p {
    margin-bottom: 16px;
}

.cookieBtns {
    display: flex;
    gap: 10px;
}

.cookieBtns button {
    padding: 8px 18px;
    border: none;
    border-radius: var(--rad);
    font-family: var(--ff-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity var(--transition);
}

.cookieBtns button:hover {
    opacity: 0.85;
}

.cookieAccept {
    background: var(--clr-magenta);
    color: var(--clr-white);
}

.cookieDecline {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
}

/* --- UTILITY --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.txtCenter {
    text-align: center;
}

.mtop-sm { margin-top: 16px; }
.mtop-md { margin-top: 32px; }
.mtop-lg { margin-top: 48px; }
