/* ===== BASIS ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f6f7fb;
  color: #222;
  line-height: 1.6;
}

/* ===== HEADER ===== */
header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.banner {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  display: block;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  background: #1C54A5;
  padding: 14px 12px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

nav a:hover,
nav a.active {
  background: rgba(255, 255, 255, 0.16);
}

/* ===== MAIN ===== */
main {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 20px;
}

section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 28px;
  margin-bottom: 24px;
}

/* ===== INTRO ===== */
.intro {
  text-align: left;
}

.logo-small {
  display: block;
  max-width: 130px;
  margin: 0 auto 20px auto;
}

h1,
h2,
h3 {
  color: #1C54A5;
  margin-top: 0;
}

.intro h1 {
  text-align: center;
  margin-bottom: 20px;
}

.intro p {
  margin-bottom: 18px;
  font-size: 17px;
}

/* ===== BUTTONS ===== */
.button,
button,
.btn {
  display: inline-block;
  background: #1C54A5;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  padding: 13px 22px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.button:hover,
button:hover,
.btn:hover {
  opacity: 0.92;
}

.cta {
  text-align: center;
}

/* ===== FORMULIEREN ===== */
form {
  display: grid;
  gap: 14px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="file"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cfd7e3;
  border-radius: 8px;
  font-size: 15px;
  background: #fff;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

input[type="range"] {
  width: 100%;
}

/* ===== INFO BLOKKEN ===== */
.info-box,
.upload-note,
.highlight-box {
  background: #EDF3FF;
  border-left: 4px solid #1C54A5;
  padding: 14px;
  border-radius: 8px;
}

.message,
.msg {
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 18px;
}

.message.error,
.msg.error {
  background: #ffe7e7;
  color: #8f1f1f;
  border: 1px solid #f0b2b2;
}

.message.success,
.msg.success {
  background: #e8f6e8;
  color: #236323;
  border: 1px solid #b9e0b9;
}

/* ===== HOME FOTO BLOKKEN ===== */
.home-photos {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 25px 0;
  flex-wrap: nowrap;
}

.photo-box {
  width: 160px;
  height: 110px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  flex: 0 0 160px;
  background: #eee;
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== PROGRESS BAR ===== */
.progress-container {
  background: #e6e6e6;
  border-radius: 10px;
  overflow: hidden;
  height: 28px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #1C54A5;
  color: #fff;
  text-align: center;
  line-height: 28px;
  font-weight: bold;
  transition: width 0.4s ease;
}

/* ===== GALERIJ ALGEMEEN ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.card,
.photo,
.tile {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.photo img,
.tile img {
  width: 100%;
  display: block;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  color: #666;
  font-size: 14px;
  padding: 24px 20px 36px 20px;
}

/* ===== MOBIEL ===== */
@media (max-width: 700px) {
  main {
    margin: 16px auto;
    padding: 0 14px;
  }

  section {
    padding: 20px;
  }

  .intro p {
    font-size: 16px;
  }

  .home-photos {
    gap: 10px;
  }

  .photo-box {
    width: 140px;
    height: 95px;
    flex: 0 0 140px;
  }

  nav {
    gap: 8px;
  }

  nav a {
    padding: 8px 12px;
    font-size: 14px;
  }
}
.featured-blog{
  text-align:center;
  margin:20px 0 30px 0;
}

.featured-button{
  display:inline-block;
  background:linear-gradient(135deg, #1C54A5, #2F8F46);
  color:#fff;
  text-decoration:none;
  padding:16px 28px;
  border-radius:12px;
  font-size:18px;
  font-weight:bold;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
  transition:all 0.25s ease;
}

.featured-button:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 18px rgba(0,0,0,0.2);
}