/* Base Styles */
:root {
    --primary-color: #000;
    --secondary-color: #f8f8f8;
    --accent-color: #555;
    --text-color: #222;
    --background-color: #fff;
    --card-background: #f5f5f5;
    --border-color: #e0e0e0;
    --highlight-color: #333;
    --hover-opacity: 0.8;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --dark-shadow: 0 8px 30px rgba(0, 0, 0,.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    opacity: var(--hover-opacity);
}

/* Header */
header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    background-color: #fff;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.logo {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

header h1 {
    font-size: 2rem;
    font-weight: normal;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
}

nav a {
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.slogan {
    font-style: italic;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background-color: #f9f9f9;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 60px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 0 auto 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--accent-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Intro Section */
.intro {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 80px;
}

.intro-card {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    border-radius: 4px;
    background-color: var(--card-background);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--dark-shadow);
}

.intro-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--accent-color);
}

.intro-card h3 {
    margin-bottom: 15px;
    font-weight: normal;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

/* Featured Post */
.featured-post {
    display: flex;
    align-items: center;
    gap: 20px;
}

.featured-post-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-post-image img {
    max-height: 100%;
    width: auto;
    object-fit: cover;
    border-radius: 6px;
}

.featured-post-content {
    flex: 1;
    padding: 40px;
}

.featured-label {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 5px;
}

.featured-post h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: normal;
}

.post-meta {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.btn-read {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    font-family: 'Georgia', serif;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-read:hover {
    opacity: var(--hover-opacity);
    color: white;
}

/* Recent Posts */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-weight: normal;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.section-divider {
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.post-card {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: white;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--dark-shadow);
}

.card-image {
    height: 180px;
    overflow: hidden;
}

.card-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 25px;
}

.post-date {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.post-card h3 {
    margin-bottom: 12px;
    font-weight: normal;
    font-size: 1.3rem;
}

.post-card p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.read-more {
    font-style: italic;
    display: inline-block;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.read-more:hover {
    border-bottom-color: var(--primary-color);
}

.center-link {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 60px;
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Newsletter */
.newsletter {
    background-color: var(--card-background);
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 80px;
    border-radius: 6px;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    margin-bottom: 15px;
    font-weight: normal;
}

.newsletter p {
    margin-bottom: 30px;
    color: var(--accent-color);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    font-family: 'Georgia', serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-dark {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-family: 'Georgia', serif;
    transition: var(--transition);
}

.btn-dark:hover {
    background-color: var(--highlight-color);
}

/* Footer */
footer {
    width: 100vw !important; /* Zorgt ervoor dat de footer echt de volledige viewportbreedte gebruikt */
    background-color: var(--secondary-color);
    padding: 40px 0;
    border-top: 2px solid var(--border-color);
    margin: 0 !important; /* Voorkomt extra witruimte rond de footer */
    justify-content: center;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 1200px; /* Zorgt ervoor dat de content gecentreerd blijft */
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid div {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-about p {
    line-height: 1.6;
    color: var(--accent-color);
    max-width: 350px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    opacity: var(--hover-opacity);
}

.footer-bottom {
    width: 100vw;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--accent-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }
}



/* Blog List and Post Styles */
.blog-list {
    max-width: 800px;
    margin: 0 auto;
}

.blog-list h1 {
    text-align: center;
    margin: 20px 0 60px;
    font-weight: normal;
    font-size: 2rem;
}

.blog-entry {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.blog-entry:last-child {
    border-bottom: none;
}

.blog-entry h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: normal;
}

.post-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.post-content a {
    color: #0073e6; /* Opvallende kleur voor links */
    text-decoration: none; /* Onderstrepen voor duidelijkheid */
    font-weight: bold; /* Extra zichtbaarheid */
}

.post-content a:hover {
    color: #005bb5; /* Donkerdere kleur bij hover */
    text-decoration: none; /* Geen onderstreping bij hover */
}

.post-content p {
    margin-bottom: 1.5em;
}

.post-content h2,
.post-content h3 {
    margin: 25px 0 5px;
    font-weight: normal;
}

.post-content blockquote {
    border-left: 3px solid var(--accent-color);
    padding: 20px 30px;
    margin: 40px 0;
    font-style: italic;
    background-color: var(--card-background);
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .featured-post, 
    .footer-container {
        flex-direction: column;
    }
    
    .intro {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .btn-dark {
        border-radius: 4px;
        padding: 12px 15px;
    }
    
    .footer-container {
        text-align: center;
        gap: 30px;
    }
}

/* Animation Effects */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.intro-card, .post-card, .featured-post {
    animation: fadeIn 0.6s ease-out forwards;
}

.intro-card:nth-child(1) { animation-delay: 0.1s; }
.intro-card:nth-child(2) { animation-delay: 0.2s; }
.intro-card:nth-child(3) { animation-delay: 0.3s; }

.post-card:nth-child(1) { animation-delay: 0.4s; }
.post-card:nth-child(2) { animation-delay: 0.5s; }