.logo-custom-size {
  height: 120px;
  width: auto;
}

/* Logo 50% groter op de frontpage */
body.homepage .logo-custom-size {
  height: 120px;
  width: auto;
}

/* Maak links beter zichtbaar in gewone tekst */
a {
  color: #005fcc;
  text-decoration: underline;
  font-weight: 500;
}

/* Bij hover een duidelijke verandering */
a:hover {
  color: #003e99;
  text-decoration: none;
}

.hero .hero-title,
.hero .hero-subtitle {
  color: white !important;
}

.s-fade-txt h1,
.s-fade-txt a {
  color: white !important;
}

:root {
  --primary-color: #0b5fff;
  --text-color: #0f172a;
  --text-color-light: #475569;
  --background-color: #ffffff;
  --border-color: rgba(15, 23, 42, 0.12);
  --surface-color: #f8fafc;
  --surface-2-color: #ffffff;
  --shadow-color: rgba(2, 6, 23, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --content-width: 760px;
}

html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(11, 95, 255, 0.07), transparent 55%),
    radial-gradient(900px 500px at 85% 0%, rgba(99, 102, 241, 0.06), transparent 55%),
    var(--background-color);
  color: var(--text-color);
}

.container {
  max-width: 1140px;
}

main.container {
  padding-top: 2rem;
}

.content {
  max-width: var(--content-width);
  background: var(--surface-2-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: 0 10px 30px var(--shadow-color);
}

@media (max-width: 768px) {
  .content {
    padding: 1.5rem 1.125rem;
  }
}

.content p {
  line-height: 1.8;
  font-size: 1.05rem;
  color: var(--text-color);
}

.content h1,
.content h2,
.content h3,
.content h4 {
  letter-spacing: -0.02em;
}

.content h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.content h2 {
  font-size: 1.6rem;
}

.content h3 {
  font-size: 1.25rem;
}

.content a {
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.15em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(11, 95, 255, 0.35);
  outline-offset: 2px;
  border-radius: 8px;
}

.main-nav {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--border-color);
}

.logo {
  gap: 0.75rem;
}

.menu-item {
  padding: 0.5rem 0.25rem;
}

.menu-item.active::after {
  height: 3px;
  border-radius: 999px;
}

.lang-button {
  border-radius: 999px;
  border-color: rgba(15, 23, 42, 0.16);
}

.lang-dropdown {
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 40px var(--shadow-color);
  overflow: hidden;
}

footer {
  background: transparent;
}

footer .container {
  background: rgba(248, 250, 252, 0.7);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.footer-link {
  color: var(--text-color);
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
}

.footer-link:hover {
  background: rgba(11, 95, 255, 0.08);
  text-decoration: none;
}

.card,
.podcast-episode {
  border-radius: var(--radius);
  border-color: var(--border-color);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(2, 6, 23, 0.14);
}

pre,
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

pre {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1rem;
  overflow: auto;
}

blockquote {
  margin: 2rem 0;
  padding: 0.25rem 1rem;
  border-left: 4px solid rgba(11, 95, 255, 0.35);
  color: var(--text-color-light);
}

