/* =========================================
   1. Basis & Reset
========================================= */

html {
  font-size: 20px;
  line-height: 1.6;
}

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

body {
  font-family: "Inter", sans-serif;
  color: #000;
}

/* =========================================
   2. Typografie
========================================= */

h1, h2, h3 {
  margin-top: 16px;
  margin-bottom: 32px;
}

p, ul {
  margin-bottom: 24px;
}

.bold {
  font-weight: 700;
}

.title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0;
}

.subtitle {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 32px;
  color: #000;
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

body.home main h1 {
  font-size: 1px;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

main h2, main h3 {
  font-size: 24px;
  margin-top: 48px;
  margin-bottom: 16px;
}

a {
  color: #993366;
  text-decoration: none;
}

ul li {
  margin-left: 20px;
}

main .bold {
  margin-top: 24px;
  margin-bottom: 16px;
}

main .prefix-text {
  margin-top: 16px;
  margin-bottom: 4px;
}

/* =========================================
   3. Header
========================================= */

.header {
  width: 100%;
  padding: 20px 32px 0;
  display: block;
  margin-bottom: 48px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .header {
    padding: 20px 20px 0;
  }
}

.header img {
  max-width: 400px;
  width: 100%;
  height: auto;
  min-width: 200px;
}

/* 1. Verberg menu op kleine schermen (iPhones) */
@media (max-width: 600px) {
  .header nav {
    display: none;
  }
}

/* 2. Toon menu op iPads (portret én landscape) */
@media (min-width: 600px) and (max-width: 1024px) and (hover: none) and (pointer: coarse) {
  .header nav {
    display: block;
  }
}

.header nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.header nav ul li {
  font-size: 14px;
  line-height: 1.5;
}

/* =========================================
   4. Service Buttons
========================================= */

.service-button {
  display: inline-block;
  padding: 4px 10px;
  margin-right: 8px;
  background-color: #993366;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: background-color 0.3s, transform 0.2s;
  font-size: 0.95em;
}

.service-button:hover {
  background-color: #b34d7a;
  transform: translateY(-1px);
}

/* =========================================
   5. Contact Info
========================================= */

.contact-info {
  margin-top: 64px;
  margin-bottom: 32px;
  padding: 0 40px 16px;
  background-color: #f8f4f6;
  border-left: 4px solid #993366;
}

.contact-info-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.contact-info p {
  margin-bottom: 0;
  color: #993366;
}

.contact-info-left {
  font-size: 32px;
  margin: 32px 0;
  line-height: 1.6;
}

.contact-info-right p {
  font-size: 28px;
  margin: 32px 0;
  line-height: 1.4;
  font-weight: 600;
}

.contact-info-bottom p {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 768px) {
  .contact-info-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .contact-info-left,
  .contact-info-right p,
  .contact-info-bottom p {
    margin: 16px 0 8px;
  }
}

/* =========================================
   6. Speurneus Link
========================================= */

.speurneus-link {
  color: #993366;
  opacity: 0.4;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.2s;
}

.speurneus-link:hover {
  opacity: 1;
}

/* =========================================
   7. Footer
========================================= */

footer {
  width: 100%;
  background-color: #af1e59;
}

.footer-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 48px;
  color: #fff;
  margin-top: 64px;
}

footer ul li {
  list-style: none;
  margin-right: 20px;
  font-size: 16px;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer img {
  display: block;
  max-width: 400px;
  width: 100%;
  height: auto;
  margin: 0 0 24px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: top;
  flex-wrap: wrap;
  font-size: 18px;
}

.footer-text {
  text-align: center;
  margin-top: 64px;
  margin-bottom: 0;
  font-size: 16px;
}

@media (max-width: 768px) {
  .footer-container {
    padding: 48px 20px;
  }
}
/* =========================================
   8. Nuttige Links – aanvullende styling
========================================= */

/* Compactere lijstregels voor rust */
main ul li {
  margin-bottom: 6px;
}

/* Subtiele meta-informatie */
.last-updated {
  margin-top: 40px;
  font-size: 16px;
  opacity: 0.7;
}

/* Iets meer ademruimte boven sectietitels */
main h2 {
  margin-top: 48px;
}
.slogan {
  text-align: center;
  margin: 3rem 0;
}

.slogan-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3em;
}

.slogan-subtitle {
  color: #777;
  font-size: 1rem;
  font-weight: 400;
}

.lead {
  font-size: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.section-title {
  font-size: 1.6rem;       /* iets groter dan normale h2 */
  margin-top: 3rem;        /* extra ademruimte erboven */
  margin-bottom: 1rem;     /* rustige ruimte eronder */
  line-height: 1.3;
}
.footer-logo-link {
  display: inline-block;
}
