/* ==========================================================================
   STYLES.CSS
   Project: KinkyPowerPair
   Description: Centrale stylesheet voor alle pagina's
   ========================================================================== */
/* === 1. VARIABELEN & KLEUREN === */
:root {
  --bg: #050509; /* Diepe zwarte achtergrond */
  --bg-soft: #101018; /* Iets lichtere variant voor cards/boxen */
  --accent-pink: #ff3c8c; /* Hoofdkleur: heet roze */
  --accent-red: #ff3030; /* Warnings of intense elementen */
  --accent-green: #48ff7b; /* Succes/positief accent */
  --accent-blue: #2e11be; /* Link/positief accent */
  --text-main: #f5f5f5; /* Hoofdtekst: bijna wit */
  --text-muted: #c8c8d2; /* Lichtere tekst: subtitels, notes */
  --border-soft: #292936; /* Zachte border */
  --border-pink: #ff3c8c; /* Speciale borders */
}
/* === 2. RESET & BASIS === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* Voorkom 'white flash' (wordt zichtbaar via JS class 'loaded') */
html {
  background: var(--bg);
  color: var(--text-main);
  visibility: hidden;
}
html.loaded {
  visibility: visible;
}
body {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  background: radial-gradient(circle at top, #2a0f1f, var(--bg) 70%);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center; /* Zorgt dat main content gecentreerd blijft op grote schermen */
}
/* Container voor de content */
main {
  width: 100%;
  max-width: 1120px;
  padding: 60px 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.index-container {
  width: 100%;
}
/* === 3. TYPOGRAFIE & ALGEMENE ELEMENTEN === */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
/* De groene kruisjes */
.cross {
  font-size: 1.6em;
  color: var(--accent-green);
  font-weight: 800;
  vertical-align: -0.15em;
  display: inline-block;
}
/* Utility: tekst groen maken */
.text-green {
  color: var(--accent-green) !important;
}
.text-blue {
  color: var(--accent-blue) !important;
}
.text-pink {
  color: var(--accent-pink) !important;
}
/* Divider lijn */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-pink),
    transparent
  );
  margin: 40px auto;
  opacity: 0.7;
}
/* === 4. BUTTONS === */
.btn,
.btn-primary,
.btn-ghost {
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.btn:hover,
.btn-primary:hover,
.btn-ghost:hover {
  transform: scale(1.05);
}
.btn-primary {
  background: linear-gradient(135deg, #ff2b7b, #ff7b3b);
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
}
.btn-ghost {
  background: transparent;
  border: 2.5px solid var(--accent-pink);
  color: var(--text-main);
  padding: 10px 20px;
  font-size: 0.9rem;
}
.btn-ghost:hover {
  background: var(--accent-pink);
  color: #000;
}
.home-btn {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-red));
  color: #000;
  padding: 10px 20px;
  font-size: 14px;
}
/* Nieuwe: Warning / Exit Button (Oranje stijl) */
.btn-warning {
  background: transparent;
  border: 2.5px solid #ff6b00; /* Fel oranje */
  color: var(--text-main);
  padding: 14px 28px; /* Zelfde padding als primary */
  font-size: 15px;
}
.btn-warning:hover {
  background: #ff6b00;
  color: #000;
  border-color: #ff6b00;
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.4); /* Oranje gloed */
  transform: scale(1.05);
}
/* Floating Chat Button (Rechtsonder) */
.chat-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff2b7b, #ff7b3b);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(255, 107, 59, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse 2.5s infinite;
}
.chat-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(255, 107, 59, 0.6);
}
/* Specifiek voor de Chat-balk onderaan */
#input-area {
  display: flex !important;
  flex-direction: row !important; /* Altijd naast elkaar, ook op mobiel */
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(5, 5, 9, 0.95);
  border-top: 1px solid var(--border-soft);
}
#message-input {
  flex: 1; /* Neemt alle vrije ruimte in */
  min-width: 0; /* Voorkomt dat het balkje breder wordt dan het scherm */
  height: 45px;
  padding: 0 15px;
  border-radius: 25px;
  font-size: 1rem;
}
#send-btn {
  flex-shrink: 0; /* Zorgt dat de knop NIET kleiner wordt */
  width: auto;
  height: 45px;
  padding: 0 20px;
  min-width: 60px; /* Genoeg ruimte voor het bliksem-icoontje */
}
/* Mobiele optimalisatie voor de knop */
@media (max-width: 480px) {
  #send-btn .btn-text {
    display: none; /* Verbergt 'Send' tekst op kleine schermen */
  }
  #send-btn .icon {
    margin: 0; /* Centreert het icoontje in de knop */
  }
}
/* Animatie voor pulse effect */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 60, 140, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 60, 140, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 60, 140, 0);
  }
}
/* === 5. HEADER & NAVIGATIE === */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0 0 40px 0;
  margin-bottom: 32px;
}
.site-logo {
  max-width: 420px;
  width: 75vw;
  height: auto;
  display: block;
}
.tagline {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-align: right;
}
.nav-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 16px;
}
.nav-buttons a {
  background: transparent;
  border: 2.5px solid var(--accent-pink);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.nav-buttons a:hover {
  background: var(--accent-pink);
  color: #000;
  transform: scale(1.05);
}

/* === Taal Switcher – Maximaal links en maximaal omhoog, meescrollend === */
.language-switch-wrapper {
  position: absolute;
  top: 12px; /* Zo hoog mogelijk */
  left: 12px; /* Zo links mogelijk */
  z-index: 300;
  pointer-events: none;
}

.language-switch {
  pointer-events: all;
  display: inline-block;
}

#lang-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent !important;
  border: 2px solid transparent;
  color: var(--text-muted);
  padding: 7px 14px; /* Iets compacter voor maximale positie */
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

#lang-select:hover {
  background-color: var(--accent-pink) !important;
  border-color: var(--accent-pink);
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 60, 140, 0.4);
}

#lang-select option {
  background-color: #000;
  color: #fff;
}

/* Mobiel: nog dichter tegen de rand */
@media (max-width: 640px) {
  .language-switch-wrapper {
    top: 8px;
    left: 8px;
  }
  #lang-select {
    padding: 5px 12px;
    font-size: 0.8rem;
  }
}
/* === 6. HERO SECTIE === */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 24px;
  align-items: center;
  padding: 20px 0 40px;
  border-bottom: 1px solid var(--border-soft);
  text-align: left;
  margin-bottom: 32px;
}
.hero-main-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-green);
  margin-bottom: 8px;
}
.hero-title {
  font-size: clamp(2.3rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero-title span {
  color: var(--accent-pink);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 32rem;
}
.hero-punch {
  font-size: 1rem;
  margin-bottom: 24px;
  color: var(--text-main);
}
.hero-punch strong {
  color: var(--accent-pink);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
/* Speciale pulse op de chat knop in hero */
.hero-actions a[href="/hot-chat.html"] {
  animation: pulse 2.5s infinite;
}
.hero-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}
/* Hero Card (Rechterkant) */
.hero-card {
  background: radial-gradient(
    circle at top,
    #201323 0,
    #11111a 50%,
    #090910 100%
  );
  border-radius: 20px;
  padding: 18px 16px 16px;
  border: 1px solid #2c2235;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}
.hero-card-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(255, 60, 140, 0.16),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 0%,
      rgba(72, 255, 123, 0.12),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 100%,
      rgba(255, 48, 48, 0.16),
      transparent 55%
    );
  opacity: 0.7;
  pointer-events: none;
}
.hero-card-inner {
  position: relative;
  z-index: 1;
}
.hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.hero-line {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.hero-line .pink {
  color: var(--accent-pink);
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.pill {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #363649;
  color: var(--text-muted);
}
/* === 7. SECTIES ALGEMEEN === */
section[aria-labelledby="social-heading"],
section[aria-labelledby="about-heading"],
section[aria-labelledby="teaser-heading"],
.strapped-promo-section {
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 32px;
  margin-bottom: 32px;
}
.section,
.cta,
.about-text,
.cta-text,
.section-head,
.cta-actions {
  text-align: left;
}
.section-head {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-pink);
}
.section-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
/* === 8. SOCIAL CARDS === */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 8px;
}
.clickable-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.clickable-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}
.social-card {
  background: radial-gradient(
    circle at top,
    #201323 0,
    #11111a 50%,
    #090910 100%
  );
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid #2c2235;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(255, 60, 140, 0.16),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 0%,
      rgba(72, 255, 123, 0.12),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 100%,
      rgba(255, 48, 48, 0.16),
      transparent 55%
    );
  opacity: 0.7;
  pointer-events: none;
}
.social-card > div {
  position: relative;
  z-index: 1;
}
.social-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.social-name {
  font-size: 0.96rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--accent-green);
}
.social-btn {
  margin-top: 4px;
  font-size: 0.82rem;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid #333346;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  color: var(--text-main);
  background: transparent;
}
.social-btn:hover {
  background: var(--accent-pink);
  color: #000;
  border-color: var(--accent-pink);
}
.social-btn span.icon {
  font-size: 1rem;
}
/* === 9. ABOUT TEXT === */
.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 44rem;
}
.about-text p {
  margin-bottom: 12px;
}
.about-highlight {
  color: var(--accent-pink);
  font-weight: 700;
}
/* === 10. GALLERY / TEASERS === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 4px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(
    circle at top,
    #2b1c30 0,
    #14141f 50%,
    #08080d 100%
  );
  border: 1px solid #2d2d3f;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
  font-size: 0.8rem;
}
.gallery-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.gallery-title {
  font-size: 0.9rem;
  font-weight: 600;
}
.gallery-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #f5f5f555;
}
.gallery-badge span {
  color: var(--accent-pink);
  font-weight: 600;
}
/* === 11. STRAPPED PROMO === */
.strapped-promo-section {
  padding: 32px 0;
}
.strapped-promo {
  background: radial-gradient(
    circle at top,
    #201323 0,
    #11111a 50%,
    #090910 100%
  );
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #2c2235;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.strapped-promo-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(255, 60, 140, 0.16),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 0%,
      rgba(72, 255, 123, 0.12),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 100%,
      rgba(255, 48, 48, 0.16),
      transparent 55%
    );
  opacity: 0.7;
  pointer-events: none;
}
.strapped-promo-inner {
  position: relative;
  z-index: 1;
}
.strapped-promo-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.strapped-promo-title span {
  color: var(--accent-green);
}
.strapped-promo-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
/* === 12. CALL TO ACTION (CTA) === */
.cta {
  padding: 32px 0 24px;
}
.cta-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.cta-title span {
  color: var(--accent-pink);
}
.cta-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 44rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
/* === 13. FOOTER === */
.footer-separator {
  width: 150px;
  height: 2px;
  background: var(--border-soft);
  opacity: 0.7;
  margin: 16px auto 12px;
}
footer {
  text-align: center;
  padding: 32px 50px 32px;
  color: var(--text-muted);
  font-size: 0.8rem;
  opacity: 0.8;
  width: 100%;
  max-width: 1120px;
}
.footer-links {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  white-space: nowrap;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.footer-links::-webkit-scrollbar {
  display: none;
}
.footer-links a {
  color: var(--accent-pink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #ff7bb8;
  text-decoration: underline;
}
.footer-note {
  font-size: 0.72rem;
  opacity: 0.7;
}
.back-to-top {
  display: block;
  text-align: center;
  margin: 12px 0 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.back-to-top a {
  text-decoration: none;
  transition: color 0.2s ease;
}
.back-to-top a:hover {
  color: var(--accent-pink);
}
/* === 14. COOKIE BANNER === */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 5, 9, 0.98);
  border-top: 1px solid var(--border-soft);
  padding: 20px 30px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  z-index: 9999;
  backdrop-filter: blur(10px);
  display: none; /* Wordt 'flex' via JS class 'show' */
  line-height: 1.6;
  flex-direction: column;
  gap: 16px;
}
#cookie-banner.show {
  display: flex;
}
.cookie-text {
  max-width: 800px;
  margin: 0 auto;
}
.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}
.mobile-break {
  display: none;
}
/* === 15. SPECIFIEK: COMING SOON PAGE === */
body.coming-soon-page {
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}
.coming-soon-page main {
  max-width: 600px;
  margin: auto;
}
.simple-logo {
  width: 160px;
  height: auto;
  margin-bottom: 30px;
  opacity: 0.9;
}
/* Lijst stijlen voor coming soon */
.lang-list {
  list-style: none;
  padding: 0;
  margin: 0 0 50px 0;
  text-align: left;
}
.lang-row {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lang-row:last-child {
  border-bottom: none;
}
.lang-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lang-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}
.status-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--accent-green);
  letter-spacing: 1px;
  font-weight: 600;
  opacity: 0.9;
}
/* VOEG DIT HIER TOE: */
.status-tag.blink {
  animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.lang-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  opacity: 0.7;
}
/* === 16. MEDIA QUERIES === */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-card {
    order: -1;
  }
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  .tagline {
    text-align: left;
  }
  .nav-buttons {
    margin-top: 24px;
  }
}
@media (max-width: 640px) {
  main {
    padding: 48px 32px 40px;
  }
  .cta-actions {
    justify-content: flex-start;
  }
  .chat-btn,
  .chat-float {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }
  .chat-float {
    bottom: 20px;
    right: 20px;
  }
  footer {
    padding: 32px 32px 32px;
  }
  .footer-links {
    gap: 8px;
  }
  .footer-links a {
    font-size: 0.78rem;
  }
}
@media (max-width: 480px) .site-logo {
  max-width: 280px;
  width: 80vw;
}
.hero-title {
  font-size: clamp(2rem, 6vw, 3rem);
}
footer {
  padding: 30px 20px 20px;
}
.footer-links {
  gap: 6px;
}
.footer-links a {
  font-size: 0.75rem;
}
.footer-note {
  font-size: 0.7rem;
}
/* Cookie Banner Mobiel */
#cookie-banner {
  padding: 20px 20px;
}
.cookie-buttons {
  flex-direction: column;
}
.cookie-buttons .btn {
  width: 100%;
}
.mobile-break {
  display: block;
}
/* Kleur van de link in de cookiebanner */
#cookie-banner a {
  color: var(--accent-pink); /* Of gebruik var(--accent-green) */
  font-weight: 700; /* Dikgedrukt valt beter op */
  text-decoration: underline;
}
/* Kleur als je er met de muis overheen gaat */
#cookie-banner a:hover {
  color: var(--text-main); /* Wordt wit bij hover */
}
/* === 17. MOBIELE OPTIMALISATIE (Onderaan je bestand) === */
@media (max-width: 768px) {
  .btn,
  .btn-primary,
  .btn-ghost,
  .btn-warning,
  #cookie-banner button {
    width: 100% !important; /* Knop over de hele breedte */
    display: flex !important;
    justify-content: center;
    text-align: center;
    padding: 16px;
    box-sizing: border-box;
  }
  .profile-image,
  .site-logo {
    max-width: 100%;
    height: auto;
  }
  h1,
  .hero-title {
    font-size: 1.8rem !important;
  }
}
/* Dit blok zorgt dat de knoppen op Desktop weer normaal (smal) worden */
@media (min-width: 769px) .btn,
  .btn-primary,
  .btn-ghost,
  .btn-warning,
  #cookie-banner button {
  width: auto !important; /* Knop past zich weer aan de tekst aan */
  display: inline-flex !important;
}
/* Floating Chat Button */
.floating-chat-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff3030 0%, #ff7b3b 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(255, 48, 48, 0.3);
  z-index: 2000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.floating-chat-button:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 40px rgba(255, 48, 48, 0.5);
}
.floating-chat-button .icon {
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
/* Mobile adjustment */
@media (max-width: 768px) {
  .floating-chat-button {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
}
