/*
Theme Name: KlikWinst Theme
Theme URI: 
Author: KlikWinst
Description: Eigen thema met KlikWinst huisstijl
Version: 1.0
*/

:root {
  --kleur-blauw: #0394f0;
  --kleur-groen: #69bf43;
  --kleur-wit: #ffffff;
  --kleur-donker: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: var(--kleur-donker);
  background-color: var(--kleur-wit);
}

a {
  color: var(--kleur-blauw);
  text-decoration: none;
}

a:hover {
  color: var(--kleur-groen);
}

/* Knoppen */
.btn-primary {
  background-color: var(--kleur-blauw);
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary:hover {
  background-color: var(--kleur-groen);
}

.btn-secondary {
  background-color: var(--kleur-groen);
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.btn-secondary:hover {
  background-color: var(--kleur-blauw);
}

header {
  background-color: #0066a6;
  padding: 6px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
}

header .logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

nav a {
  color: #fff;
  margin-left: 20px;
  font-size: 15px;
}

nav a:hover {
  color: var(--kleur-groen);
}

/* Hero sectie */
.hero {
  background: linear-gradient(135deg, var(--kleur-blauw), var(--kleur-groen));
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 32px;
}

/* Secties */
.section {
  padding: 60px 40px;
}

.section-title {
  color: var(--kleur-blauw);
  font-size: 32px;
  margin-bottom: 20px;
  border-left: 5px solid var(--kleur-groen);
  padding-left: 12px;
}

/* Footer */
footer {
  background-color: var(--kleur-donker);
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
}

footer a {
  color: var(--kleur-groen);
}
/* Navigatie menu */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
header {
  padding: 10px 40px;
  min-height: 80px;
}
/* Footer */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding: 60px 40px 40px;
  background-color: var(--kleur-donker);
  color: #ccc;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-col ul li a {
  color: #ccc;
}

.footer-col ul li a:hover {
  color: var(--kleur-groen);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-social a {
  color: #ccc;
  font-size: 14px;
}

.footer-social a:hover {
  color: var(--kleur-groen);
}

.footer-bottom {
  background-color: #111;
  text-align: center;
  padding: 16px 20px;
  font-size: 13px;
  color: #888;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  color: #888;
}

.footer-bottom a:hover {
  color: var(--kleur-groen);
}