/* Algemene stijl */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #111;
    /* donkergrijs/zwart achtergrond */
    color: #f5f5f5;
    /* lichtgrijze tekst voor contrast */
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Header */

.header {
  display: flex;
  justify-content: space-between;
  align-items: right;
  padding: 20px 40px;
  background-color: #000;
  flex-wrap: wrap;
}


.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff2e2e;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav {
  display: flex;
  gap: 20px;
  flex-grow: 1;
  justify-content: center;
}


.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.nav a:hover {
  color: #ff2e2e;
}

/* Hero */
.hero {
    background: url('../assets/images/hero.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.6);
    /* donkere overlay voor tekstcontrast */
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ff2e2e;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 5px;
    background-color: #ff2e2e;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #e42222;
}

.btn.secondary {
    background-color: #333;
}

.btn.secondary:hover {
    background-color: #555;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #888;
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
}

.blog-post {
    background-color: #1c1c1c;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #ff2e2e;
    border-radius: 5px;
}

.blog-post h3 {
    margin-top: 0;
    color: #ff2e2e;
}

.blog-post .date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.blog-post p {
    color: #ddd;
}

.btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
  align-items: center;
}

.about-text {
  flex: 1 1 50%;
  color: #ddd;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 46, 46, 0.4);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2.2rem;
    font-weight: bold;
    color: #ff2e2e;
}

.logo img {
    height: 50px;
    width: auto;
}