/* Super Elegant & Vrouwelijk Theme met Olijfgroen */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@400;700&display=swap');

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

/* Algemene body styling en flex-layout */
body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  font-family: 'Lato', Arial, sans-serif;
  line-height: 1.6;
  background: #fdf6f9; /* Zachte, lichte achtergrond */
  color: #4a4a4a;
}

/* Header en navigatie */
#header {
  background-color: #fefbf6; /* Lichte, warme achtergrond voor de header */
  color: #4a4a4a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  flex-wrap: wrap;
  flex: 0 0 auto;
  border-bottom: 1px solid #dfe6d0;
}

#logo img {
  max-width: 100%;
  height: auto;
}

/* Navigatie menu */
nav#menu ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

nav#menu ul li {
  margin: 0 15px;
}

nav#menu ul li a {
  color: #4a4a4a;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 15px;
  border-radius: 30px;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: 'Lato', sans-serif;
}

nav#menu ul li a:hover {
  background-color: #e2ebd6;
  color: #556b2f; /* Olijfgroen */
}

/* Content container */
.content {
  height: calc(100vh - 320px); /* Houdt rekening met header en footer */
  overflow-y: auto;
  max-width: 1200px;
  margin: 30px auto 0 auto;
  padding: 30px 40px;
  padding-bottom: 80px;
  background: #fdf6f9;
  box-shadow: 0 0px 0px rgba(0,0,0,0.0);
  border-radius: 0px;
}

/* Secties binnen de content */
.section {
  margin-bottom: 40px;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  color: #556b2f; /* Olijfgroen */
  margin-bottom: 15px;
  font-size: 2rem;
}

.content ul {
  margin-left: 40px;
}

/* Footer styling */
footer {
  position: fixed;
  bottom: 5px;
  left: 0;
  right: 0;
  background-color: #369e82; /* Donkere olijfgroen */
  color: #fff;
  text-align: center;
  padding: 20px 30px;
  font-size: 0.9rem;
  z-index: 1000;
}

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

/* Styling voor profielfoto */
.profile-photo {
  float: right;
  max-width: 100%;
  width: 300px;
  margin: 15px 30px 15px 15px;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive design voor tablets en kleinere apparaten */
@media (max-width: 768px) {
  #header {
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
  }

  nav#menu ul {
    flex-direction: column;
    margin-top: 10px;
  }

  nav#menu ul li {
    margin: 8px 0;
  }

  .content {
    margin: 20px;
    padding: 20px;
    height: calc(100vh - 240px);
    padding-bottom: 80px;
  }

  .profile-photo {
    float: none;
    display: block;
    margin: 15px auto;
    width: 80%;
  }
}

@media (max-width: 480px) {
  nav#menu ul li a {
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .content {
    padding: 15px;
    height: calc(100vh - 240px);
    padding-bottom: 80px;
  }
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 20px;
  z-index: 2000;
  display: none; /* Banner wordt pas getoond als er geen keuze is opgeslagen */
}

.cookie-consent .cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cookie-consent p {
  margin: 0 0 10px;
  text-align: center;
}

.cookie-consent a {
  color: #a8e6cf;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  background: #a8e6cf;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-buttons button:hover {
  background: #94d8be;
}

.right-stripes {
  position: fixed;
  top: 0;
  right: 0;
  width: 0.7cm;
  height: 100vh;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    #369e82,
    #369e82 1px,
    transparent 1px,
    transparent 4px
  );
  /* Subtiele verticale beweging: de achtergrond verschuift in de Y-as */
  animation: slide 10s linear infinite;
}

/* Deze keyframes zorgen voor een vloeiende verschuiving van de achtergrond */
@keyframes slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 100px;
  }
}

/* Voor Chrome en Safari */
.content::-webkit-scrollbar {
  width: 3px; /* minimale breedte */
}

.content::-webkit-scrollbar-track {
  background: transparent; /* of een lichte kleur als achtergrond */
}

.content::-webkit-scrollbar-thumb {
  background-color: #369e82; /* pas de kleur aan naar wens */
  border-radius: 3px; /* zorgt voor subtiele afronding */
}

/* Voor Firefox */
.content {
  scrollbar-width: thin; /* maakt de balk dunner */
  scrollbar-color: #aaa transparent; /* eerst de kleur van de thumb, dan de track */
}

/* Header als flex-container */
#header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo links, menu rechts */
  max-width: 1200px;
  margin: 0 auto;      /* centreer binnen viewport */
  padding: 20px 0;     /* verticaal wat ruimte */
  background-color: #fefbf6;
  border-bottom: 1px solid #dfe6d0;
}

/* Logo */
#logo img {
  max-height: 60px;    /* pas naar wens */
  height: auto;
}

/* Nav-actions naast elkaar */
nav#menu .nav-actions {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;           /* ruimte tussen telefoon en knop */
}

/* Telefoon-link */
.phone-link {
  display: flex;
  align-items: center;
  color: #4a4a4a;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
}
.phone-link .icon {
  margin-right: 6px;
  font-size: 1.1em;
}

/* “Neem contact op” knop */
.btn-contact {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #556b2f, #a8e6cf);
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.btn-contact:hover {
  opacity: 0.9;
}

/* ============================================================
   EXTRA STYLING: Cyber & Compliance pagina (zonder iets te breken)
   ============================================================ */

/* Zorg dat de H1 ook in je huisstijl valt (Playfair + olijfgroen) */
.content h1 {
  font-family: 'Playfair Display', serif;
  color: #556b2f; /* Olijfgroen */
  font-size: 2.6rem;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

/* Intro tekst wat rustiger, met ruimte na titel */
.content .intro {
  margin: 0 0 18px 0;
  max-width: 900px;
}

/* SecurityScorecard blok: ruimte + kaart-look */
.security-scorecard {
  margin: 22px 0 34px 0;         /* ruimte boven en onder */
  padding: 18px 18px 14px 18px;  /* interne ruimte */
  background: #f6fbf9;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  text-align: left;
  max-width: 520px;              /* netjes, niet te breed */
}

/* Center de iframe in de kaart, maar laat tekst links */
.security-scorecard iframe {
  display: block;
  border: 0;
  width: 260px;
  height: 100px;
  background: #fff;
  border-radius: 10px;
  margin: 6px 0 10px 0;          /* ruimte rond banner */
}

/* Note onder de banner */
.security-scorecard-note {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7f78;
  line-height: 1.45;
}

/* Op mobiele schermen: kaart full width + banner centreren */
@media (max-width: 768px) {
  .security-scorecard {
    max-width: 100%;
    text-align: center;
  }
  .security-scorecard iframe {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Kleine extra: secties op cyber pagina iets meer ademruimte boven h2 */
.section h2 {
  margin-top: 10px;
}


.compliance-hero{
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin: 20px 0 34px 0;
  padding: 18px;
  background: #f6fbf9;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
}

.compliance-hero-left{
  flex: 1 1 auto;
  min-width: 260px;
}

.compliance-hero-right{
  flex: 0 0 auto;
}

.compliance-hero-title{
  font-family: 'Playfair Display', serif;
  color: #556b2f;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.compliance-hero-text{
  margin-bottom: 8px;
  max-width: 750px;
}

.compliance-hero-note{
  font-size: 0.82rem;
  color: #6b7f78;
  margin: 0;
}

.compliance-hero iframe{
  display: block;
  border: 0;
  width: 260px;
  height: 100px;
  background: #fff;
  border-radius: 10px;
}

@media (max-width: 768px){
  .compliance-hero{
    flex-direction: column;
    text-align: left;
  }
}
/* =========================
   Cyber & compliance layout
   ========================= */

.cyber-page h1{
  font-family: 'Playfair Display', serif;
  color: #556b2f;
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.cyber-top{
  display: flex;
  gap: 26px;
  align-items: flex-start;
  margin-top: 10px;
  margin-bottom: 26px;
  padding: 18px;
  background: #f6fbf9;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
}

.cyber-top-left{
  flex: 1 1 auto;
  min-width: 260px;
}

.cyber-lead{
  margin: 0 0 10px 0;
  max-width: 820px;
}

.cyber-micro{
  margin: 0;
  font-size: 0.85rem;
  color: #6b7f78;
}

.cyber-top-right{
  flex: 0 0 auto;
}

.cyber-top-right iframe{
  display: block;
  border: 0;
  width: 260px;
  height: 100px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

/* Cards */
.cyber-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.cyber-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.04);
}

.cyber-card h2{
  font-family: 'Playfair Display', serif;
  color: #556b2f;
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.cyber-card p{
  margin: 0;
}

/* Responsive */
@media (max-width: 900px){
  .cyber-grid{
    grid-template-columns: 1fr;
  }
  .cyber-top{
    flex-direction: column;
  }
  .cyber-top-right iframe{
    margin-top: 6px;
  }
}

