/* Algemene instellingen */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
    color: #222;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Header / Hero */
.hero {
    background-image: url('images/header-bg.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 20px;
    color: white;
    width: 100%;
}

.hero-overlay h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 1.25em;
    margin-bottom: 20px;
}

.button {
    background-color: #0074A4;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.button:hover {
    background-color: #005f86;
}

/* Secties */
section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

section p {
    font-size: 1.4em;
    margin-bottom: 20px;
}

.link {
    color: #0074A4;
    text-decoration: none;
    font-weight: bold;
}

.link:hover {
    text-decoration: underline;
}

/* Pakket-sectie */
.pakket {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.pakket h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
}

.pakket-box {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 6px solid #0074A4;
}

.prijsblok {
    font-size: 1.4em;
    margin-bottom: 25px;
    color: #0074A4;
    font-weight: bold;
}

.pakket-inhoud, .pakket-extra {
    margin-bottom: 30px;
}

.pakket-inhoud h3,
.pakket-extra h3 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 15px;
}

.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.checklist li::before {
    content: ".";
    color: #0074A4;
    position: absolute;
    left: 0;
    font-size: 1.4em;
    line-height: 1;
}

.sierlijn {
  width: 90%;
  max-width: 600px;
  height: 60px;
  margin: 2em auto;
  background-image: url('images/sierlijn.png'); /* pad naar jouw afbeelding */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  opacity: 0.2;
  filter: blur(0.6px);
}
/* CTA */
.cta {
    background: #e6f4fa;
    border-top: 2px solid #0074A4;
    border-bottom: 2px solid #0074A4;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    background: #f1f1f1;
    color: #555;
}

.quote {
  font-style: italic;
  font-size: 1.05em;
  line-height: 1.6;
  max-width: 700px;
  margin: 1.5em auto;
  padding: 0.5em 1em;
  border-left: 3px solid #ccc;
  color: #444;
  background-color: #f9f9f9;
  quotes: "❝" "❞";
}

.quote::before {
  content: open-quote;
  display: inline-block;
  font-size: 1.5em;
  vertical-align: -0.2em;
  color: #888;
  margin-right: 0.25em;
  line-height: 0;
}

.quote::after {
  content: close-quote;
  display: inline-block;
  font-size: 1.5em;
  vertical-align: -0.2em;
  color: #888;
  margin-left: 0.25em;
  line-height: 0;
}

.subtekst {
    font-size: 0.95em;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 10px;
}

.extra-space {
    margin-bottom: 30px;
}

.foto-omvloeiing {
  max-width: 300px;
  margin: 0 auto 1.5em auto;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.foto-omvloeiing img {
  width: 100%;
  display: block;
  filter: brightness(1.05);
}

.contactformulier {
    max-width: 600px;
    margin: 0 auto;
}

.contactformulier label {
    display: block;
    margin-top: 2em;
    font-weight: bold;
}

.contactformulier input,
.contactformulier textarea {
    width: 100%;
    padding: 0.5em;
    margin-top: 0.2em;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

.contactformulier textarea {
    height: 100px;
    resize: vertical;
}

.contactformulier button {
    margin-top: 1.5em;
    padding: 0.7em 1.5em;
    font-size: 1em;
    border: none;
    border-radius: 4px;
    background: #444;
    color: white;
    cursor: pointer;
}

.contactformulier button:hover {
    background: #222;
}

.fout {
    color: red;
    font-size: 0.9em;
    margin-top: 0.2em;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f9f9f9;
    color: #333;
    padding: 1em;
    text-align: center;
    font-size: 0.9em;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner p {
    display: inline;
    margin: 0;
    padding-right: 1em;
}

.cookie-banner button {
    background-color: #0074a4;
    color: #fff;
    border: none;
    padding: 0.5em 1em;
    font-size: 0.9em;
    cursor: pointer;
    border-radius: 4px;
}



/* Responsive aanpassingen */
@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2em;
    }

    .hero-overlay p {
        font-size: 1em;
    }

    .button {
        padding: 12px 20px;
    }

    .pakket {
        padding: 40px 15px;
    }

    .pakket-box {
        padding: 20px;
    }

    section {
        padding: 40px 15px;
    }
}
