/* Root variables voor branding */
:root {
    --primary-color: #ff3c6e;    /* Felle fuchsia voor CTA */
    --primary-hover: #ff1a57;    /* Donkerder fuchsia voor hover */
    --secondary-color-start: #ffe6f0; /* Gradient startkleur */
    --secondary-color-end: #ffd9ec;   /* Gradient eindkleur */
    --accent-color: #ffd700;      /* Eventuele highlights */
    --font-family: 'Arial', sans-serif;
}

/* Body styling */
body {
    font-family: var(--font-family);
    background: linear-gradient(135deg, var(--secondary-color-start), var(--secondary-color-end));
    color: #1a1a1a; /* Donkergrijs voor leesbaarheid */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.1); /* transparant, laat gradient zien */
}

/* Logo */
header img {
    height: 50px;
}

/* Navigation links */
header nav a {
    color: #1a1a1a;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

/* CTA button */
a.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

a.cta-button:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05); /* lichte animatie voor hover */
}

/* Main content */
main {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #666;
    background-color: rgba(255,255,255,0.05);
}

/* Blog post titles */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
}

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

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