:root {
    --dutch-red: #AE1C28;
    --dutch-blue: #21468B;
    --indo-red: #FF0000;
    --dutch-orange: #FF8200;
    --navy: #0A1128; /* Deep Rich Navy */
    --crimson: #B22222; /* Sophisticated Crimson */
    --accent-orange: #FF8C00; /* Sharp Orange Accent */
    --off-white: #F8F9FA; /* Sophisticated Off-White */
    --white: #FFFFFF;
    --dark-grey: #1A1A1A; /* Off-black */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--off-white);
    color: var(--navy);
    transition: all 0.3s ease;
    line-height: 1.6;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

#mainNav .container {
    /* Garandeert dat de container nooit de viewport breedte overschrijdt */
    max-width: 100vw; 
    padding-left: 15px;
    padding-right: 15px;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--navy);
}
/* Forceer de cropper container op een fatsoenlijk formaat */
.img-container {
    width: 100% !important;
    background-color: #333; /* Zodat je ziet waar het vlak stopt */
}

.img-container img {
    max-width: 100% !important;
    display: block;
}
.modal-title.fw-bold
{
 color:#fff;   
}
#image-to-crop {
    image-orientation: from-image;
    width: 100%; /* of de breedte die je nodig hebt */
    height: auto;
}
.text-navy { color: var(--navy); }
.bg-navy { background-color: var(--navy); }

/* Buttons */
.btn-dutch {
    background-color: var(--crimson);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-dutch:hover {
    background-color: #8B0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(178, 34, 34, 0.3);
}

.btn-outline-navy {
    border: 2px solid var(--navy);
    color: var(--navy);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-navy:hover {
    background-color: var(--navy);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 17, 40, 0.2);
}

.btn-navy {
    background-color: var(--navy);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-navy:hover {
    background-color: #050816;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 17, 40, 0.3);
}

.btn-crimson {
    background-color: #AE1C28;
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-crimson:hover {
    background-color: #8b1620;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(174, 28, 40, 0.3);
}

/* Solid Navbar Styling */
.navbar {
    background-color: #0a1128 !important;
    padding: 15px 0;
    transition: none;
}

.brand-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: -1px;
}

.brand-text span { color: var(--crimson); }

.desktop-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin-left: 20px;
    opacity: 1;
    transition: color 0.3s ease;
}

.desktop-nav .nav-link:hover {
    color: #b22222 !important;
}

/* Refined Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.85) 0%, rgba(178, 34, 34, 0.4) 100%), 
                url('../images/header.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-overlay-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-accent-line {
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    margin-bottom: 25px;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-tagline {
    font-size: 1.25rem;
    font-weight: 400;
    /* max-width: 600px; */
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Modernized Buttons */
.btn-modern-primary {
    background-color: var(--crimson);
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 12px; /* Sharp modern corners */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-modern-primary:hover {
    background-color: #8B0000;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(178, 34, 34, 0.4);
}

.btn-modern-outline {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-modern-outline:hover {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-3px);
}

/* Professional Card Styles */
.card {
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
}

.member-img-wrapper {
    height: 280px;
    position: relative;
}

.member-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verified-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: var(--navy);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Special Access Badge (Glassmorphic) */
.special-access-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
}

.access-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.access-badge-id {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.access-badge-nl {
    background: rgba(10, 17, 40, 0.05);
    color: var(--navy);
}

/* Footer */
footer {
    background-color: var(--dark-grey);
    color: rgba(255, 255, 255, 0.7);
}

footer h5 {
    color: var(--white) !important;
    font-weight: 700;
    margin-bottom: 25px;
}

footer a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

footer a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

/* Language Switcher Pill - Updated for Solid Nav */
.lang-switcher-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 6px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 15px;
}

.lang-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
}

.lang-link.active, .lang-link:hover {
    opacity: 1;
    color: #b22222 !important;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Bottom Tab Bar */
.bottom-tab-bar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 65px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    display: none;
    justify-content: space-around;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
}

@media (max-width: 767.98px) {
    .bottom-tab-bar { display: flex; }

    body { padding-bottom: 100px; }
    
    .hero-title {font-size: 27px!important}
}

.tab-item {
    text-align: center;
    color: #A0AEC0;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
}

.tab-item i {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.tab-item.active {
    color: var(--navy);
}

/* Language Switcher Transition Overlay */
.lang-switching-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    filter: blur(10px);
    transition: all 0.5s ease;
}

.lang-switching-overlay.active {
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    filter: blur(0);
}
