/* Reset en basis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #0a1a2f; /* donkerblauw */
  color: #fff;
}

/* Header */
.site-header {
  background: #0a1a2f;
  border-bottom: 3px solid #f36f21; /* oranje accent */
  padding: 10px 20px;
  position: relative;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-block;
  position: relative;
  z-index: 2;
}

.logo-header {
  height: 70px;       /* logo iets groter */
  max-height: 80px;   /* blijft binnen de header */
  width: auto;        /* proporties behouden */
}


.main-nav {
  position: relative;
  z-index: 3;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.main-nav a.active,
.main-nav a:hover {
  color: #f36f21;
}

/* Hero */
.hero {
  background: url("images/hero-image.png") center/cover no-repeat;
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 47, 0.6);
  z-index: 1;
}

.hero-inner {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.slogan {
  font-size: 1.5rem;
  color: #f36f21;
}

/* Secties */
.section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  color: #f36f21;
  margin-bottom: 20px;
}

/* Nieuwsblokken */
.news-item {
  border: 2px solid #f36f21;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 30px;
  background-color: #0a1a2f;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  text-align: center;
}

.news-item h3 {
  color: #f36f21;
  margin-bottom: 10px;
}

.date {
  font-size: 0.9rem;
  color: #f36f21;
  font-weight: bold;
  margin-bottom: 15px;
}

.news-item img {
  max-width: 250px;
  height: auto;
  display: block;
  margin: 0 auto 15px;
  border-radius: 4px;
}

/* Klikbare link styling */
.news-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-link:hover h3 {
  color: #f36f21;
}

/* Knoppen */
.read-more {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #f36f21;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #d95f1c;
}

/* Detailpagina afbeelding */
.detail-image {
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 6px;
}

/* Contactpagina layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* drie kolommen */
  gap: 30px;
  margin-top: 30px;
}

.contact-block {
  background-color: #0a1a2f;
  border: 2px solid #f36f21;
  border-radius: 6px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.contact-block h3 {
  color: #f36f21;
  margin-bottom: 10px;
}

.contact-block p,
.contact-block address {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Contactformulier */
form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-bottom: 5px;
  font-weight: bold;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 4px;
}

form input[type="submit"] {
  background: #f36f21;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

form input[type="submit"]:hover {
  background: #d95f1c;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr; /* blokken onder elkaar */
  }
}

/* Footer */
.site-footer {
  background: #0a1a2f;
  border-top: 3px solid #f36f21;
  text-align: center;
  padding: 20px;
}

.logo-footer {
  height: 70px;      /* maak het logo groter */
  max-height: 80px;  /* optioneel: begrenzing */
  width: auto;       /* behoud verhoudingen */
  margin-bottom: 10px;

}

.contact-logo {
  display: block;
  max-width: 150px;   /* logo passend in het blok */
  height: auto;
  margin: 20px auto 0; /* centreren en ruimte boven */
}

.logo-footer {
  height: 120px !important;
  width: auto !important;
}