@charset "UTF-8";

/* -- LimShakei DenkTank  Custom Stylesheet -- */

:root {
  --dt-accent:        #e94560;
  --dt-dark:          #1a1a2e;
  --dt-font-heading:  'Sora', sans-serif;
  --dt-font-body:     'Inter', sans-serif;
}

.text-accent {
    color: var(--dt-accent);
}

@keyframes force-repaint {
  0% { background-color: rgba(255, 255, 255, 0.08); }
  100% { background-color: rgba(255, 255, 255, 0.081); } /* Miniem verschil dwingt repaint */
}

body { font-family: var(--dt-font-body); }
h1, h2, h3, h4, h5,
.display-1, .display-2, .display-3,
.display-4, .display-5, .display-6 {
  font-family: var(--dt-font-heading);
}
/*Voor de footer */
.text-accent {
  color: #e94560;
}

/* Eenmalig het font vastleggen voor hergebruik */
.font-sora {
  font-family: 'Sora', sans-serif;
}
.fs-tiny { font-size: 0.75rem; }

/* chevron icoon hover naar sectie */
.scroll-indicator,
.scroll-indicator i {
  opacity: 1;
  filter: none;
  text-shadow: none;
}

.scroll-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease;
}

.scroll-indicator:hover {
  color: var(--dt-accent);
  transform: translateY(4px);
}

.scroll-indicator i {
  font-size: 2rem;
  line-height: 1;
  pointer-events: none;
}

html {
  scroll-behavior: smooth;
}
/* sectie en iconen hover */
.feature-card i {
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover i {
  color: var(--dt-accent);
  transform: translateY(-4px) scale(1.12);
}

.feature-card:hover .bi-gear-wide-connected {
  transform: rotate(90deg) scale(1.08);
}

#dienst {
  position: relative;
  background: linear-gradient(
    to bottom,
    #10283f 0%,
    #0e2236 110px,
    #0b1622 220px,
    #0a0a0a 320px
  );
}

/* De basis van alle kaarten */
.pricing-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
    border: 2px solid rgba(255, 255, 255, 0.1);
    /* Zorg dat de kaart uit de achtergrond kan komen */
    position: relative; 
    display: block;
}

/* Hover effect voor ELKE kaart */
.pricing-card:hover {
    border-color: var(--bs-danger) !important;
    /* Combineer de beweging: omhoog (-10px) en een fractie groter */
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5) !important;
    z-index: 10; /* Zorgt dat de hover-kaart boven de anderen zweeft */
}

/* De 'Meest gekozen' kaart (standaard look) */
.pricing-highlight {
    border-color: var(--bs-danger) !important;
    transform: scale(1.02); /* Standaard al iets groter */
}

/* Als je over een andere kaart hovert, moet de highlight even 'zakken' */
.row:hover .pricing-highlight:not(:hover) {
    transform: translateY(0) scale(1) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* De basis animatie van Pulse Down */
.pulse-down {
  display: inline-block;
  animation: pulse 1.5s infinite ease-in-out;
  transition: color 0.3s ease; /* Zorgt voor een zachte kleurovergang */
}

/* De kleurverandering bij hover */
.pulse-down:hover {
  color: #d63651;
}

@keyframes pulse {
  0% { transform: translateY(0); }
  50% { transform: translateY(5px); }
  100% { transform: translateY(0); }
}


/* -------- button close---- */
#form-alert .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath stroke='currentColor' stroke-linecap='round' stroke-width='2' d='M4 4l8 8M12 4l-8 8'/%3e%3c/svg%3e") center/1em auto no-repeat;
  opacity: .7;
  width: 0.9rem;
  height: 0.9rem;
}
#form-alert .btn-close:hover {
  opacity: 1;
}

/* ------------ Navbar ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
.navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar:not(.scrolled) {
  background-color: #fff;
}
.navbar.scrolled {
  background-color: #fff !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10) !important;
}
.navbar .nav-link {
  border-radius: 50px;
  padding: 6px 16px !important;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.navbar .nav-link:hover {
  background: rgba(233,69,96,0.08);
  border-color: rgba(233,69,96,0.25);
  color: #e94560 !important;
}
.navbar .nav-link.active {
  background: rgba(233,69,96,0.12);
  border-color: rgba(233,69,96,0.4);
  color: #e94560 !important;
  font-weight: 700;
}

/* ------------ Language toggle ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
.lang-toggle {
  display: inline-flex;
  width: fit-content;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 50px;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 700;
}
.lang-btn {
  padding: 5px 13px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: inherit;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.lang-btn.active {
  background: var(--dt-accent);
  color: #fff !important;
}

/* ------------ Theme switcher ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
#theme-switcher-btn {
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}
.theme-dropdown-menu {
  max-height: 320px;
  overflow-y: auto;
  min-width: 180px;
}
.theme-item {
  cursor: pointer;
  font-size: 0.85rem;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.theme-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* ------------ Back-to-top button ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
#back-to-top {
  position: fixed;
  bottom: 75px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e94560;
  color: #fff;
  border: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(233,69,96,0.4);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 9999;
  text-decoration: none;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
#back-to-top:hover {
  background: #d63651;
  color: #fff;
}

/* ------------ Form ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
.form-control,
.form-control::placeholder {
  font-size: 0.92rem;
  font-family: var(--dt-font-body);
}
.form-control-lg,
.form-control-lg::placeholder {
  font-size: 0.92rem !important;
}
#form-alert {
  display: none;
  border-radius: 12px;
}

/* ------------ Hero ------------------------------------*/
#hero {
  /* Fix 1: Stop met gradients. Gebruik de donkerste kleur van je site als vaste basis. */
  background-color: #10283f !important;
  background-image: none !important; 
  
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

#hero::before {
  /* Fix 2: We maken de 'lichtvlek' zo groot en zacht dat er geen randen meer kúnnen zijn */
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 50% 25%,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(16, 40, 63, 0) 40%
  );
  pointer-events: none;
  z-index: 0;
  /* Dit vlakt de pixels uit */
  filter: blur(60px); 
  transform: translateZ(0);
}
.hero-badge {
  display: inline-block;
  background: rgba(233,69,96,0.18);
  border: 1px solid rgba(233,69,96,0.4);
  color: #ff8fa3;
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

#hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

#hero h1 .accent { color: #e94560; }

#hero .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2rem;
}

.btn-hero-primary {
  background: #e94560;
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 6px 24px rgba(233,69,96,0.35);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(233,69,96,0.5);
  color: #fff;
  background: #d63651;
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  /* Backdrop-filter kan de lijn-bug triggeren op de achtergrond */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.18s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.hero-card-visual {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.5rem;
}

.brain-icon {
  font-size: 5rem;
  color: #e94560;
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.hero-stat .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--dt-font-heading);
  color: #fff;
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
  animation: bounce 1.6s infinite;
  font-size: 1.5rem;
  color: #fff;
}

/* ------------ Sections ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e94560;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* ------------ Feature cards ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
.feature-card {
  border: none;
  border-radius: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(233,69,96,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #e94560;
  margin-bottom: 1.2rem;
}

/* ------------ Process steps ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
.process-step {
  position: relative;
  padding-left: 70px;
  margin-bottom: 2.5rem;
}
.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e94560;
  color: #fff;
  font-weight: 800;
  font-family: var(--dt-font-heading);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ------------ Testimonials ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
.testimonial-card {
  border-radius: 16px;
  border: none;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e94560;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ------------ Pricing ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
.pricing-card {
  border-radius: 20px;
  overflow: hidden;
}
.pricing-highlight {
  position: relative;
  border: 2px solid #e94560 !important;
}
.pricing-badge {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: #e94560;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ------------ CTA Banner ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
.cta-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  border-radius: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(233,69,96,0.15);
}
.btn-primary-cta {
  background-color: #e94560;
  color: #fff;
  border: none;
  padding: 1rem 3rem; 
  box-shadow: 0 6px 24px rgba(233, 69, 96, 0.4);
  transition: all 0.3s ease;
}

.btn-primary-cta:hover {
  background-color: #ff4d6d; /* Iets feller/lichter rood voor actie */
  color: #fff;
  box-shadow: 0 8px 30px rgba(233, 69, 96, 0.6);
  transform: translateY(-2px);
}

/* ------------ Footer ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
footer a {
  text-decoration: none;
  transition: opacity 0.15s;
}
footer a:hover { opacity: 0.75; }

/* ------------ Spinner ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: 8px;
}
/* ------------ Animations ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.65s ease both; }
.delay-1 { animation-delay: 0.10s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== COOKIE BANNER ===== 
#cookie-banner {
  display: block !important;
  visibility: visible !important;
  z-index: 99999 !important;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a2e;
  color: #fff;
  padding: 1rem 1.5rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}


#cookie-banner strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

#cookie-banner p {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

#cookie-banner .cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.5rem;
}

#cookie-accept {
  background-color: #e63946;
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

#cookie-decline {
  background-color: transparent;
  color: #ccc;
  border: 1px solid #555;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
}
#cookie-banner.cookie-hidden {
  display: none !important;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.cookie-modal {
  background: #0f172a;
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 540px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hergebruik je hiding-class */
.cookie-modal-overlay.cookie-hidden {
  display: none !important;
}
.cookie-more-badge {
  background-color: #17a2b8;   /* of bijv. dezelfde roodtint als btn-danger */
  color: #ffffff;
}

.cookie-more-badge:hover,
.cookie-more-badge:focus {
  background-color: #138496;
  color: #ffffff;
  text-decoration: none;
}
.cookie-modal h2 {
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #e63946;
  font-size: 1.4rem;
  font-weight: 700;
}
/*
@media (max-width: 576px) {
  #cookie-banner {
    padding: 0.75rem 1rem;
  }

  #cookie-banner p.cookie-text {
    display: none;
  }

  #cookie-banner strong {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  #cookie-banner .cookie-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  #cookie-accept,
  #cookie-decline {
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .cookie-more-badge {
    text-align: center;
  }
}

@media (max-width: 768px) {
  #cookie-banner p.cookie-text {
    display: none;
  }

  #cookie-banner {
    padding: 0.75rem 1rem;
  }

  #cookie-banner strong {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  #cookie-banner .cookie-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  #cookie-accept,
  #cookie-decline {
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .cookie-more-badge {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .cookie-modal-overlay {
    align-items: flex-start; /* modal bovenaan plaatsen ipv gecentreerd 
    padding: 1rem;
  }

  .cookie-modal {
    max-height: 80vh;        /* niet hoger dan 80% van het scherm 
    overflow-y: auto;        /* scrollbaar maken binnen de modal 
    width: 100%;
    margin-top: 1rem;
  }
}
*/
/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a2e;
  color: #fff;
  padding: 1rem 1.5rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  z-index: 99999;
}

#cookie-banner.cookie-hidden {
  display: none !important;
}

#cookie-banner .cookie-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

#cookie-banner p {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

#cookie-banner .cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.5rem;
}

#cookie-accept {
  background-color: #e63946;
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

#cookie-accept:hover {
  background-color: #c1121f;
}

#cookie-decline {
  background-color: transparent;
  color: #ccc;
  border: 1px solid #555;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

#cookie-decline:hover {
  border-color: #aaa;
  color: #fff;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}

.cookie-modal-overlay.cookie-hidden {
  display: none !important;
}

.cookie-modal {
  background: #0f172a;
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 540px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

.cookie-modal h2 {
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #e63946;
  font-size: 1.4rem;
  font-weight: 700;
}

.cookie-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.cookie-modal-close:hover {
  color: #e63946;
}

/* ===== COOKIE MORE BADGE ===== */
.cookie-more-badge {
  background-color: #17a2b8;
  color: #ffffff;
}

.cookie-more-badge:hover,
.cookie-more-badge:focus {
  background-color: #138496;
  color: #ffffff;
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  #cookie-banner {
    padding: 0.75rem 1rem;
  }

  #cookie-banner p.cookie-text {
    display: none;
  }

  #cookie-banner .cookie-title {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  #cookie-banner .cookie-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  #cookie-accept,
  #cookie-decline {
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .cookie-more-badge {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .cookie-modal-overlay {
    align-items: flex-start;
    padding: 1rem;
  }

  .cookie-modal {
    max-height: 80vh;
    overflow-y: auto;
    width: 100%;
    margin-top: 1rem;
  }
}
/* =====================
   PRIVACY MODAL
   ===================== */

.privacy-modal-header {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  padding: 28px 32px;
}

#privacyModal .modal-header .btn-close {
  background-color: transparent !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") !important;
  filter: none !important;
  opacity: 0.75;
}

#privacyModal .modal-header .btn-close:hover {
  opacity: 1;
}

.privacy-modal-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
}

.text-brand {
  color: #e94560;
}
.privacy-modal-meta {
  font-size: 0.82rem;
  opacity: 0.55; /* in plaats van text-white-50 */
  color: #fff;
}
.privacy-modal-body {
  padding: 32px;
  line-height: 1.8;
}

.alert-brand {
  background: rgba(233, 69, 96, 0.28);
  border: none;
  border-left: 4px solid #e94560;
}