/* ==============
   BUTTONS
   ============== */

.df-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--df-transition-fast),
    border-color var(--df-transition-fast),
    transform var(--df-transition-fast),
    box-shadow var(--df-transition-fast),
    color var(--df-transition-fast);
}

.df-btn-primary {
  background: linear-gradient(135deg, var(--df-accent), #fbbf24);
  color: #020617;
  box-shadow: 0 15px 40px rgba(250, 204, 21, 0.35);
}

.df-btn-primary:hover,
.df-btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(250, 204, 21, 0.45);
}

.df-btn-outline {
  border-color: rgba(148, 163, 184, 0.65);
  background: transparent;
  color: var(--df-text);
}

.df-btn-outline:hover,
.df-btn-outline:focus-visible {
  background: rgba(15, 23, 42, 0.9);
}

.df-btn-full {
  width: 100%;
}

/* compactere knop in de header */

.df-btn-nav {
  font-size: 0.8rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border-color: rgba(148, 163, 184, 0.7);
}

.df-btn-nav:hover,
.df-btn-nav:focus-visible {
  border-color: var(--df-accent);
  background: rgba(15, 23, 42, 0.85);
}

/* ==============
   INPUTS
   ============== */

.df-input-label {
  display: block;
  font-size: 0.8rem;
  color: var(--df-text-muted);
  margin-bottom: 0.25rem;
}

.df-input {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.85);
  color: var(--df-text);
  font-size: 1rem;
  outline: none;
  transition:
    border-color var(--df-transition-fast),
    box-shadow var(--df-transition-fast),
    background var(--df-transition-fast);
}

.df-input::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

.df-input:focus {
  border-color: var(--df-accent);
  box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.4);
  background: rgba(15, 23, 42, 0.95);
}

/* ==============
   GENERIC INFO CARD
   ============== */

.df-info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
  color: #0b1225;
}

.df-info-card h3 {
  margin: 0 0 0.8rem;
  color: #0b1225;
}

.df-info-card p,
.df-info-card li {
  color: #4b5563;
  line-height: 1.55;
}

/* =========================================================
   FOOTER
   ========================================================= */

/* =========================================================
   FOOTER
   ========================================================= */

.df-footer {
  background: radial-gradient(circle at 0% 0%, #0b1120 0, #020617 55%);
  color: #e5e7eb;
  padding-block: 2rem 1.5rem;
  border-top: 2px solid #facc15;
}

.df-footer .df-container {
  max-width: 1120px;
}

.df-footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: flex-start;
}

.df-footer-col {
  position: relative;
}

/* Verticale scheidingslijnen tussen kolommen */

.df-footer-col + .df-footer-col::before {
  content: "";
  position: absolute;
  left: -1.4rem;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(30, 64, 175, 0.7),
    transparent
  );
  opacity: 0.8;
}

/* Brand / left */

.df-footer-brand {
  padding-right: 1rem;
}

/* top glow voor brand kolom */

.df-footer-badge-row {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.3rem;
}

.df-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.26rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(250, 204, 21, 0.8);
  color: #facc15;
  position: relative;
}

.df-footer-changelog {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.1rem;
  margin-left: 0.2rem;
  font-size: 0.75rem;
  text-decoration: none;
  color: rgba(191, 219, 254, 0.9);
  opacity: 0.85;
  text-transform: none;
  letter-spacing: 0.04em;
  padding-bottom: 0.05rem;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.7);
  transition: color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.df-footer-changelog::after {
  content: "↗";
  font-size: 0.78rem;
}

.df-footer-changelog:hover {
  color: #facc15;
  border-color: rgba(250, 204, 21, 0.9);
  opacity: 1;
}

.df-footer-logo {
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.3rem;
}

.df-footer-tagline {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  color: rgba(209, 213, 219, 0.9);
}

.df-footer-subtagline {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  color: rgba(148, 163, 184, 0.95);
}

.df-footer-mail {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: #e5e7eb;
  opacity: 0.9;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.7);
  padding-bottom: 0.06rem;
  transition: color 160ms ease, opacity 160ms ease, border-color 160ms ease;
}

.df-footer-mail:hover {
  color: #facc15;
  border-color: rgba(250, 204, 21, 0.9);
  opacity: 1;
}

.df-footer-madeby {
  margin: 0.25rem 0 0.4rem;
  font-size: 0.82rem;
  color: rgba(148, 163, 184, 0.95);
}

.df-footer-madeby-link {
  color: #e5e7eb;
  text-decoration: none;
  padding: 0.08rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-left: 0.25rem;
  background: rgba(15, 23, 42, 0.9);
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease,
    transform 160ms ease;
}

.df-footer-madeby-link:hover {
  border-color: #facc15;
  color: #facc15;
  background: rgba(15, 23, 42, 1);
  transform: translateY(-1px);
}

/* App kolom */

.df-footer-appcol {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* Trust badges – één regel op desktop */

.df-footer-trust {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem;
  white-space: nowrap;
}

.df-footer-trust-pill {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.9);
  color: rgba(209, 213, 219, 0.95);
}

/* App Store / Google Play badges */

/* App Store / Google Play badges – cleaner look */
/* App badges – naast elkaar + iets kleiner */
.df-footer-appbadges {
  display: flex;
  align-items: center;
  gap: 0.55rem;        /* minder ruimte tussen badges */
  flex-wrap: nowrap;   /* nooit onder elkaar */
}

.df-appbadge-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
  font-size: 0;
}

.df-appbadge-img img {
  height: 32px;        /* kleiner dan 40px → perfect */
  max-width: 100%;
  display: block;
  border-radius: 0;
  box-shadow: none;
  transition:
    transform 150ms ease,
    opacity 150ms ease;
  opacity: 0.95;
}

.df-appbadge-img:hover img {
  transform: translateY(-1px);
  opacity: 1;
}

/* Extra: op mobiel kleine wrap als nodig */
@media (max-width: 640px) {
  .df-footer-appbadges {
    flex-wrap: wrap;
  }
}



.df-appbadge-img:hover img {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.9);
  opacity: 1;
}

/* Social */

.df-footer-social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.df-footer-social-link {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  text-decoration: none;
  color: rgba(226, 232, 240, 0.85);
  opacity: 0.85;
  transition: border-color 160ms ease, color 160ms ease,
    opacity 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.df-footer-social-link:hover {
  border-color: #facc15;
  color: #facc15;
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.6);
}

/* Headings + accent */

.df-footer-heading {
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.df-footer-heading-accent {
  display: inline-block;
  width: 2.4rem;
  height: 2px;
  background: #facc15;
  border-radius: 999px;
}

/* Links + arrow animatie */

.df-footer-links {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.df-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.92rem;
  text-decoration: none;
  color: rgba(226, 232, 240, 0.9);
  opacity: 0.9;
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.df-footer-link-icon {
  font-size: 0.86rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.df-footer-link:hover {
  color: #facc15;
  opacity: 1;
  transform: translateX(2px);
}

.df-footer-link:hover .df-footer-link-icon {
  opacity: 1;
  transform: translateX(0);
}

/* Bottom bar + glass pill */

.df-footer-bottom {
  margin-top: 1.7rem;
  padding-top: 0.6rem;
  position: relative;
}

.df-footer-bottom::before {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 0.7rem;
  background: linear-gradient(
    to right,
    transparent,
    rgba(59, 130, 246, 0.9),
    transparent
  );
  opacity: 0.9;
}

.df-footer-copy {
  display: inline-block;
  margin: 0;
  font-size: 0.78rem;
  color: rgba(191, 219, 254, 0.98);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(30, 64, 175, 0.9);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
}

/* Responsive */

@media (max-width: 900px) {
  .df-footer-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .df-footer-brand {
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .df-footer {
    padding-block: 1.5rem 1.2rem;
  }

  .df-footer-top {
    gap: 1.5rem;
    text-align: center;
  }

  /* Verberg Navigation en More kolommen op mobiel */
  .df-footer-col:nth-child(2),
  .df-footer-col:nth-child(3) {
    display: none;
  }

  .df-footer-col + .df-footer-col::before {
    display: none;
  }

  /* Brand kolom vereenvoudigen */
  .df-footer-brand {
    padding-right: 0;
  }

  .df-footer-badge-row,
  .df-footer-changelog,
  .df-footer-subtagline {
    display: none;
  }

  .df-footer-logo {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }

  .df-footer-tagline {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .df-footer-madeby {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }

  /* App kolom centreren */
  .df-footer-appcol {
    align-items: center;
  }

  .df-footer-heading {
    font-size: 0.75rem;
  }

  .df-footer-trust {
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
  }

  .df-footer-trust-pill {
    font-size: 0.6rem;
    padding: 0.15rem 0.4rem;
  }

  .df-footer-appbadges {
    justify-content: center;
  }

  .df-appbadge-img img {
    height: 32px;
  }

  .df-footer-social {
    justify-content: center;
  }

  .df-footer-bottom {
    text-align: center;
    margin-top: 1rem;
  }

  .df-footer-copy {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
  }
}

/* =========================================================
   SCROLL TO TOP BUTTON
   ========================================================= */

.df-scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(250, 204, 21, 0.5);
  background: rgba(2, 6, 23, 0.95);
  color: #facc15;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 90;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.df-scroll-top:hover {
  background: rgba(250, 204, 21, 0.15);
  border-color: #facc15;
}

.df-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .df-scroll-top {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
