/* ============================================================
   Scouts en Gidsen Beerse – Lotenlening 2026
   Style Sheet
============================================================ */

:root {
    --green: #2D5016;
    --brown: #8B6F47;
    --gold: #D4A574;
    --gold-light: #e8c49a;
    --cream: #F5F3F0;
    --white: #FFFFFF;
    --text-dark: #3A3A3A;
    --text-muted: #6B7280;
    --border: #E5E3E0;
    --card-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --card-shadow-hover: 0 8px 24px rgba(0,0,0,0.14);
    --radius: 0.65rem;
    --radius-lg: 1.2rem;
    --transition: all 0.25s ease;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.25;
    color: var(--green);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--brown);
}

p {
    margin-bottom: 0;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media (min-width: 768px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 0.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

/* Modifier class voor kleine knoppen */
.btn-sm {
    padding: 0.5rem 1.25rem !important;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: inline-block;
}

/* ============================================================
   NAVIGATION
============================================================ */

#navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 2px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: var(--transition);
}

#navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
    gap: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 6rem;
    flex-shrink: 0;
}

.nav-brand img {
    height: 50px;
    width: auto;
}

.nav-brand-text span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    position: relative;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.35rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
}

.btn-nav {
    background: var(--gold);
    color: var(--text-dark) !important;
    border: none;
    padding: 0.55rem 1.25rem !important;
    border-radius: var(--radius);
    font-weight: 700 !important;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: var(--radius);
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--green);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 1.5rem 1.25rem 2rem;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.85rem 0.75rem;
    border-radius: var(--radius);
    display: block;
    text-align: center;
}

.mobile-nav a:hover {
    background: var(--cream);
    color: var(--green);
}

.mobile-nav .btn-nav-mobile {
    background: var(--gold);
    color: var(--text-dark) !important;
    font-weight: 700;
    border-radius: var(--radius);
    padding: 1rem;
    margin-top: 1rem;
}

@media (min-width: 900px) {
    .nav-links {
        display: flex;
    }
    .hamburger {
        display: none;
    }
}

/* ============================================================
   HERO
============================================================ */

#hero {
    position: relative;
    min-height: 580px;
    height: 70vh;
    max-height: 760px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/lotenlening/img/bouwplan.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease-out;
}

#hero.loaded .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(45,80,22,0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem 1.25rem;
    max-width: 760px;
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.45rem 1.25rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    line-height: 1;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45,80,22,0.35);
}

.btn-gold {
    background: var(--gold);
    color: var(--text-dark);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,165,116,0.4);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 0.9rem 2.25rem;
    font-size: 1.05rem;
}

/* ============================================================
   SECTION BASE STYLES
============================================================ */

section {
    padding: 5rem 0;
}

section.bg-white {
    background: var(--white);
}

section.bg-cream {
    background: var(--cream);
}

section.bg-green {
    background: var(--green);
    color: var(--white);
}

/* ============================================================
   MOTIVATIE SECTION
============================================================ */

#motivatie .motivatie-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

#motivatie .motivatie-text p {
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    text-align: justify;
}

.motivatie-img {
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

@media (min-width: 768px) {
    #motivatie .motivatie-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   HOE WERKT HET
============================================================ */

.steps-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(45,80,22,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.step-number span {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--green);
    font-family: 'Montserrat', sans-serif;
}

.step-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.step-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ============================================================
   STATS / KERNGEGEVENS
============================================================ */

.stats-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--gold);
    box-shadow: var(--card-shadow-hover);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brown);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--green);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

/* ============================================================
   REGLEMENT (ACCORDION)
============================================================ */

.accordion {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-item {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.accordion-item.open {
    border-color: rgba(45,80,22,0.35);
}

.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.1rem 1.4rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brown);
    transition: var(--transition);
}

.accordion-trigger:hover {
    color: var(--green);
    background: rgba(45,80,22,0.03);
}

.accordion-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(45,80,22,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.2s ease;
}

.accordion-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--green);
    stroke-width: 2.5;
    fill: none;
    transition: transform 0.3s ease;
}

.accordion-item.open .accordion-icon {
    background: var(--green);
    transform: none;
}

.accordion-item.open .accordion-icon svg {
    stroke: white;
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-item.open .accordion-body {
    max-height: 600px;
}

.accordion-content {
    padding: 0 1.4rem 1.4rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.75;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.accordion-content p + p {
    margin-top: 0.75rem;
}

.accordion-content .meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

/* ============================================================
   INSCHRIJVING & COPY BUTTON
============================================================ */

.inschrijving-card {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.inschrijving-card-header {
    background: var(--green);
    color: var(--white);
    padding: 2rem 2.5rem;
    text-align: center;
}

.inschrijving-card-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.inschrijving-card-header p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.inschrijving-card-body {
    padding: 2.5rem;
}

.steps-mini {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.step-mini {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
}

.step-mini-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(45,80,22,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--green);
}

.step-mini-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-mini-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.step-mini-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.bank-info {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    max-width: 440px;
    margin: 0 auto 2rem;
    text-align: center;
}

.bank-info strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.iban-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
}

.iban {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--green);
    letter-spacing: 0.05em;
}

.bank-info-meta {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.copy-btn {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--green);
}

.copy-btn:hover {
    background: var(--gold-light);
    border-color: var(--gold);
    color: var(--green);
}

.copy-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.copy-btn .icon-check {
    display: none;
    stroke: var(--green);
}

.copy-btn.copied {
    background: #dcfce7;
    border-color: #86efac;
    color: #166534;
}

.copy-btn.copied .icon-copy {
    display: none;
}

.copy-btn.copied .icon-check {
    display: block;
}

.cta-block {
    text-align: center;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
}

.cta-block p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.85rem;
}

/* ============================================================
   CONTACT & TRANSPARANTIE
============================================================ */

#contact h3 {
    color: var(--gold);
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin: 0 auto;
    max-width: 680px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .contact-cards-grid { grid-template-columns: 1fr 1fr; }
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.25rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;                   /* Important: stretch to full grid cell height */
    width: 100%;
    min-height: 160px;              /* Optional: ensures minimum consistent height */
    flex: 1 1 auto;
    min-width: 0;
}

.contact-item .contact-item-text {
    flex: 1;                        /* Pushes content nicely */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item-link:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(45,80,22,0.05);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.35rem;
    transition: var(--transition);
}

.contact-icon svg { width: 20px; height: 20px; stroke: var(--gold); stroke-width: 1.8; fill: none; }
.contact-item-link:hover .contact-icon { background: var(--gold); }
.contact-item-link:hover .contact-icon svg { stroke: var(--green); }

.contact-item-text p:first-child { font-weight: 600; font-size: 0.85rem; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }

.transparency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(45,80,22,0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green);
    margin: 0.5rem auto 0;
}

.transparency-badge svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; }
.transparency-text p { color: var(--text-dark); text-align: justify; margin-bottom: 1rem; }

/* ============================================================
   FOOTER REDESIGN
============================================================ */

footer {
    background: var(--green);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 2rem;
}

.footer-grid-new {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: center;
    text-align: center;
}

.footer-center {
    width: 100%;
    order: -1;
}

@media (min-width: 768px) {
    .footer-grid-new {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        text-align: left;
    }
    .footer-center {
        width: auto;
        order: 0;
    }
    .footer-left {
        justify-self: end;
    }
    .footer-center {
        justify-self: center;
    }
    .footer-right {
        justify-self: start;
    }
}

.footer-center img {
    filter: brightness(0) invert(1) opacity(0.85);
    height: auto;
    margin: 0 auto;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-socials a svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    stroke-width: 2;
    fill: none;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-socials a:hover svg {
    stroke: var(--green);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ============================================================
   SCROLL ANIMATIONS & TOAST
============================================================ */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-stagger.visible > *:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: 0.05s;
}

.fade-in-stagger.visible > *:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: 0.15s;
}

.fade-in-stagger.visible > *:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: 0.25s;
}

.fade-in-stagger.visible > *:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: 0.35s;
}

.toast {
    position: absolute;
    background: var(--green);
    color: var(--white);
    padding: 0.6rem 1rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.toast.show {
    transform: translate(-50%, -10px);
    opacity: 1;
}

.toast::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: var(--green) transparent transparent transparent;
}

/* ============================================================
   RESPONSIVE TWEAKS
============================================================ */

@media (max-width: 480px) {
    section {
        padding: 3.5rem 0;
    }
    .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    .inschrijving-card-body {
        padding: 1.5rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1.25rem 0.5rem;
    }

    .stat-label {
        font-size: 0.65rem;
        margin-bottom: 0.3rem;
    }

    .stat-value {
        font-size: 1.5rem; /* Was 2rem */
    }
    .iban-wrapper {
        flex-direction: row !important;
        justify-content: center;
        gap: 0.5rem;
        width: auto;
        padding: 0.4rem 0.75rem;
    }

    .iban {
        font-size: 0.85rem;
        letter-spacing: 0.02em;
    }

    .copy-btn {
        width: 26px;
        height: 26px;
        flex-shrink: 0;
    }

    .copy-btn svg {
        width: 13px;
        height: 13px;
    }

    footer {
        padding: 2.5rem 0 2rem;
    }

    .footer-grid-new {
        margin-bottom: 1rem;
    }

    .footer-bottom {
        padding-top: 1rem;
    }

    .footer-bottom p {
        padding-top: 0;
        font-size: 0.6rem;
    }
}

/* Mobiele aanpassingen voor de navbar */
@media (max-width: 899px) {
    .nav-brand-text .hide-mobile {
        display: none !important;
    }

    .nav-inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Logo links */
    .nav-brand {
        z-index: 2;
        margin-left: -0.5rem;
        gap: 0;
    }

    .nav-brand img {
        height: 38px;
        width: auto;
    }

    .nav-brand-text {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: auto;
        margin: 0;
        z-index: 1;
        pointer-events: none;
    }

    .nav-brand-text span {
        font-size: 1.1rem;
        display: block;
    }

    .hamburger {
        position: relative;
        z-index: 2;
    }
}