:root {
  --color-gold: #B89659;
  --color-dark-blue: #173440;
  --color-ivory: #FAF4EB;
  --color-white: #FFFFFF;
  --color-gray: #7A7A7A;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-ivory);
  color: var(--color-dark-blue);
  line-height: 1.6;
}

/* NAVIGATIE */
nav {
  background-color: var(--color-white);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
}

nav a {
  color: var(--color-dark-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

nav img {
  height: 36px;
}

nav div {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* HEADER */
header {
  background-color: var(--color-dark-blue);
  color: var(--color-gold);
  padding: 4rem 1rem 3rem;
  text-align: center;
}

header h1 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-gold);
}

header p {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  color: var(--color-ivory);
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.container.narrow {
  max-width: 900px;
}

/* TITELS EN TEKST */
.section-title {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--color-dark-blue);
}

.page-title {
  color: var(--color-gold);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

main p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--color-dark-blue);
}

/* LIJSTEN */
main ul {
  margin-left: 1.5rem;
  margin-bottom: 2rem;
  list-style: disc;
  color: var(--color-dark-blue);
}

main ul li {
  margin-bottom: 0.75rem;
}

/* LINKS */
main a {
  color: var(--color-dark-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

main a:hover {
  color: var(--color-gold);
}

/* GRIDS EN KAARTEN */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.card i {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-dark-blue);
}

.card p {
  font-size: 0.95rem;
  color: var(--color-gray);
}

.text-center {
  text-align: center;
}

/* SECTIES */
.section-alt {
  background-color: var(--color-white);
}

.section-light {
  background-color: var(--color-ivory);
}

.section-dark {
  background-color: var(--color-dark-blue);
  color: var(--color-ivory);
}

.section-dark h2,
.section-dark p {
  color: var(--color-ivory);
}

.section-dark .cta-button {
  background-color: var(--color-gold);
  color: white;
}

/* CTA BUTTON */
.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: var(--color-gold);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.cta-button:hover {
  background-color: #a17f44;
}

/* FORMULIEREN */
form {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  background-color: #fff;
  color: var(--color-dark-blue);
  font-family: 'Inter', sans-serif;
}

button {
  background-color: var(--color-gold);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #a17f44;
}

button:disabled {
  background-color: #ccc;
  color: #666;
  border: 1px solid #aaa;
  cursor: not-allowed;
  opacity: 0.6;
  transition: all 0.3s ease;
  }

/* INFO BOX */
.info-box {
  text-align: center;
  margin-bottom: 3rem;
}

.info-box p {
  color: var(--color-dark-blue);
  max-width: 700px;
  margin: 0 auto;
}

/* FOOTER */
footer {
  background-color: var(--color-dark-blue);
  color: var(--color-ivory);
  padding: 1rem;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer a {
  color: var(--color-ivory);
  text-decoration: none;
  margin-bottom: 0.25rem;
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--color-gold);
}
.cookie-hover-banner {
  position: fixed;
  bottom: 20px; /* dus NIET tegen onderrand geplakt */
  left: 50%;
  transform: translateX(-50%);
  background: #1e1e1e;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.85rem;
  display: none;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  gap: 1rem;
  align-items: center;
}

.cookie-hover-banner p {
  margin: 0;
}

.cookie-hover-banner a {
  color: #f0c040;
  text-decoration: underline;
}

.cookie-hover-banner button {
  background: #f0c040;
  border: none;
  padding: 0.4rem 0.8rem;
  color: #000;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}