:root {
  --accent: #ffc107;          /* geel */
  --bg-dark: #000;            /* diep zwart */
  --bg-section: #0b0b0b;      /* donkergrijs */
  --text-light: #f1f1f1;
  --text-muted: #bcbcbc;
}

/* ALGEMEEN -------------------------------------------------- */
body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  transition: all 0.2s ease;
}

/* HERO ------------------------------------------------------ */
.hero {
  position: relative;
  background: url("../img/hero.jpg") center center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.9));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: "Orbitron", sans-serif;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(255,193,7,0.6);
  letter-spacing: 2px;
}

.hero p.lead {
  color: #ddd;
}

/* LOGO ------------------------------------------------------ */
.logo {
  filter: drop-shadow(0 0 14px rgba(255,193,7,0.35));
  max-height: 120px;
}

/* BUTTONS --------------------------------------------------- */
.btn-warning {
  background-color: var(--accent);
  color: #000;
  font-weight: 600;
  border: none;
}
.btn-warning:hover {
  background-color: #ffda47;
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 1px solid #fff;
  color: #fff;
}
.btn-outline-light:hover {
  background-color: #fff;
  color: #000;
}

/* INFO BLOKKEN ---------------------------------------------- */
section.bg-dark {
  background-color: var(--bg-section) !important;
  border-top: 1px solid rgba(255, 193, 7, 0.25);
  border-bottom: 1px solid rgba(255, 193, 7, 0.25);
  padding: 60px 0;
}

section.bg-dark h3 {
  margin-top: 10px;
  margin-bottom: 6px;
}

section.bg-dark p {
  max-width: 320px;
  margin: 0 auto;
  color: var(--text-muted);
}

section.bg-dark img {
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease;
}
section.bg-dark img:hover {
  transform: scale(1.03);
}

/* CONTACT --------------------------------------------------- */
section.bg-black {
  background-color: #000 !important;
  padding: 70px 0;
  border-top: 1px solid rgba(255, 193, 7, 0.25);
}

section.bg-black h2 {
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 25px;
}

section.bg-black a {
  color: var(--text-light);
  text-decoration: none;
}
section.bg-black a:hover {
  color: var(--accent);
}

/* FOOTER ---------------------------------------------------- */
footer {
  background-color: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 25px;
  padding-bottom: 20px;
}
footer .container {
  color: #9a9a9a;
  font-size: 14px;
}
footer a {
  color: var(--accent);
  text-decoration: none;
}
footer a:hover {
  color: #fff;
}
footer p {
  margin-bottom: 4px;
}
