/* Base styles */
:root {
    --primary-color: #0066cc;
    --text-color: #093046;
    --text-color-light: #666666;
    --background-color: #ffffff;
    --border-color: #e5e5e5;
    --font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
}

/* Base styles */
html {
    font-family: var(--font-family);
    line-height: 1.5;
    color: var(--text-color);
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Content styles */
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Lists in content */
.content ul,
.content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content li {
    margin-bottom: 0.5rem;
}

/* Headings in content */
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #FAB613;
}

.content h2:first-child,
.content h3:first-child,
.content h4:first-child,
.content h5:first-child,
.content h6:first-child {
    margin-top: 0;
}

/* Images in content */
.content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Navigation styles */
.main-nav {
    background-color: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
}

.logo-custom-size {
    max-height: 60px;
    width: auto;
}

.site-logo {
    height: 40px;
    width: auto;
}

.menu {
    display: flex;
    gap: 1.5rem;
}


.menu-item {
    color: #093046 !important;   /* blauw */
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.menu-item:hover,
.menu-item.active {
    color: #FAB613 !important;   /* oranje */
	text-decoration: none;

}

.menu-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Mobile menu */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
}
/* Normale kleur van menu-items */
.mobile-menu a,
.mobile-menu li a {
    color: #093046 !important;   /* Geel */
    text-decoration: none;       /* Optioneel: geen onderstreping */
}

/* Hoverkleur van menu-items */
.mobile-menu a:hover,
.mobile-menu li a:hover {
    color: #FAB613 !important;   /* Donkerblauw */
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.mobile-menu-item {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
}

.mobile-menu-item:hover,
.mobile-menu-item.active {
    color:	#FAB613 !important;
}

@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-menu {
        display: flex;
    }

    .mobile-menu.hidden {
        display: none;
    }
}

/* Footer styles */
footer {
    background-color: var(--background-color);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--text-color-light);
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
}

.footer-nav a {
    color: var(--text-color);
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-color);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Cards */
.card {
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Podcast specific styles */
.podcast-player {
    width: 100%;
    margin: 1rem 0;
}

.podcast-episode {
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.podcast-episode h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.podcast-episode audio {
    width: 100%;
    margin: 1rem 0;
}

.podcast-meta {
    color: var(--text-color-light);
    font-size: 0.875rem;
}

/* Video player */
.video-player {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    max-width: 100%;
    height: auto;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.pagination a {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    text-decoration: none;
    color: var(--text-color);
}

.pagination a:hover {
    background-color: var(--border-color);
    text-decoration: none;
}

.pagination a.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination .prev,
.pagination .next {
    font-weight: bold;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #e5e5e5;
        --text-color-light: #a0a0a0;
        --background-color: #1a1a1a;
        --border-color: #333;
    }
}
