/* Root Variables */
:root {
    --primary-color: #2E8B57;
    --hover-color: #3CB371;
    --text-color: #333;
    --light-bg: #F5F9F6;
    --card-bg: #ffffff;
    --border-radius: 12px;
    --box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 70px;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-logo:hover {
    color: var(--hover-color);
}

.nav-menu {
    position: relative;
}
/* Button Styles */
.button-base {
    border-radius: 25px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    display: inline-block;
}

.menu-btn {
    background: var(--primary-color);
    color: white;
    border-radius: 25px;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.menu-btn:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    right: 10px;
    top: 100%;
    background: white;
    min-width: min(250px, 95vw);
    max-width: calc(100% - 20px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 4px;
    margin-top: 0.5rem;
    z-index: 1000;
}
.dropdown-content.show {
    display: block;
    position: absolute;
    right: 10px; /* Aangepast om consistent te zijn */
    margin-top: 0.5rem;
}


.dropdown-content a {
    color: var(--text-color);
    padding: 12px 24px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 28px;
}

/* Hero Section */
/* Hero Section - terug naar origineel */
.hero {
    background-image: url('/images/header-backgrounds/home-header.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin-top: -70px;
    height: 400px;
    color: white;
    text-align: center;
    overflow: hidden;
    transform: scale(0.95); /* Voegt wat "uitzoomen" toe */
}


/* Verwijder of commentaar de main-content aanpassingen */
/* .main-content {
    background: linear-gradient(rgba(255, 255, 255, 0.97), white);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
} */
.hero-content {
    position: relative;
    z-index: 2;
    transform: translateZ(0);
}
/* Hero Variants */
.hero-vergoeding {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/images/header-backgrounds/vergoeding-header.jpg');
}

.hero-vrouwengezondheid {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/images/header-backgrounds/vrouwengezondheid-header.jpg');
}

.hero-geestelijkegezondheid {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/images/header-backgrounds/geestelijkegezondheid-header.jpg');
}
.hero-immuunsysteem {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/images/header-backgrounds/immuunsysteem-header.jpg');
}

.hero-pijnbestrijding {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/images/header-backgrounds/pijnbestrijding-header.jpg');
}

.hero-onderzoek {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/images/header-backgrounds/onderzoek-header.jpg');
}

.hero-vermoeidheid {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/images/header-backgrounds/vermoeidheid-header.jpg');
}

.hero-sporters {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/images/header-backgrounds/sporters-header.jpg');
}

.hero-contact {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/images/header-backgrounds/contact-header.jpg');
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 8px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #DAA520;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
/* Main Content */
.main-content {
    background-color: var(--light-bg);
    min-height: 100vh;
    padding: 40px 0;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-box {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

/* Grid Layouts */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

/* Card Styling */
.specialty-card, .info-card, .faq-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.specialty-card:hover, .info-card:hover, .faq-card:hover {
    transform: translateY(-5px);
}
.specialty-card a {
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.specialty-card a:hover {
    color: var(--hover-color);
    transform: translateX(5px);
}
.specialty-card h3, .info-card h3, .faq-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.info-card ul li:last-child {
    border-bottom: none;
}
/* CTA Section */
.cta-section {
    text-align: center;
    padding: 40px 0;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

/* Button Group */
.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.button {
    border-radius: 25px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 200px;
    text-align: center;
}

.button-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.button-primary:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.button-ghost {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.button-ghost:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}
/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.cookie-banner.show {
    display: flex;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    border-radius: 25px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.accept-all {
    background: var(--primary-color);
    color: white;
}

.accept-all:hover {
    background: var(--hover-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.customize {
    background: white;
    color: var(--text-color);
}

.customize:hover {
    background: var(--light-bg);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Footer */
.site-footer {
    background-color: var(--light-bg);
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.social-links {
    margin-bottom: 15px;
}

.social-links a {
    color: #666;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-link svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.social-link:hover svg {
    color: var(--primary-color);
}

.legal-links {
    margin-bottom: 10px;
}

.legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary-color);
}

.copyright {
    font-size: 0.8rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .dropdown-content, .dropdown-content.show {
        position: absolute;
        top: 100%;
        right: 4px;  /* verminderd van 100px */
        width: calc(100vw - 40px);
        max-width: 100px;
        border-radius: 20px;
        left: auto;  /* voeg dit toe */
        margin-right: 4px; /* voeg dit toe */
    }
}

    .nav-container {
        height: 60px;
        padding: 0 15px;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .menu-btn {
        padding: 8px 16px;
    }
    
    .dropdown-content {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 0;
        border-radius: 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .hero {
        margin-top: -60px;
        padding: 100px 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .content-wrapper {
        padding: 0 15px;
    }

    .content-box {
        padding: 20px;
    }

    .cards-grid, .faq-grid {
        gap: 20px;
    }

    .info-card, .faq-card {
        padding: 20px;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }
    
    .button {
        width: 100%;
        max-width: 300px;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .cookie-buttons {
        margin-top: 15px;
        justify-content: center;
    }
}