/* Main Styles */
:root {
  --bg-color-light: #ffffff;
  --bg-color-dark: #0f1218;
  --text-color-light: #333333;
  --text-color-dark: #f5f7fa;
  --primary-color: #2F4A91;
  --secondary-color: #3A67D3;
  --third-color: #4A7BE3;
  --light-gray: #F5F7FA;
  --dark-gray: #333333;
  --border-color-light: #e2e2e8;
  --border-color-dark: #2a2a36;
  --accent-gradient: linear-gradient(135deg, #2F4A91, #3A67D3);
  --accent-gradient-hover: linear-gradient(135deg, #3A67D3, #4A7BE3);
  --card-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  --hover-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  --border-radius: 8px;
}

/* Light/Dark Mode */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
  line-height: 1.6;
  font-size: 16px;
  color: var(--dark-gray);
  font-weight: 400;
}

body.light-mode {
  background-color: var(--bg-color-light);
  color: var(--text-color-light);
}

body.dark-mode {
  background-color: var(--bg-color-dark);
  color: var(--text-color-dark);
}

/* Theme toggle */
.theme-toggle {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.theme-toggle .sun-icon,
.theme-toggle .moon-icon {
  color: #fff;
  stroke-width: 2;
}

.light-mode .theme-toggle .sun-icon {
  display: none;
}

.light-mode .theme-toggle .moon-icon {
  display: block;
}

.dark-mode .theme-toggle .sun-icon {
  display: block;
}

.dark-mode .theme-toggle .moon-icon {
  display: none;
}

/* Global theme styles */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

.light-mode h1, .light-mode h2, .light-mode h3, .light-mode h4, .light-mode h5, .light-mode h6 {
  color: var(--text-color-light);
}

.dark-mode h1, .dark-mode h2, .dark-mode h3, .dark-mode h4, .dark-mode h5, .dark-mode h6 {
  color: var(--text-color-dark);
}

/* Titels in hero-secties (donkere achtergrond) */
.hero h1.title, .hero h2.title {
  color: white !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', 'Inter', sans-serif;
  letter-spacing: -0.01em;
}

/* Titels in normale secties */
.section h2.title, .section h1.title {
  color: var(--primary-color) !important;
  text-shadow: none;
  font-weight: 700;
  font-family: 'Poppins', 'Inter', sans-serif;
  letter-spacing: -0.01em;
}

.dark-mode .section h2.title, .dark-mode .section h1.title {
  color: var(--text-color-dark) !important;
}

.dark-mode .section h2.title {
  color: var(--text-color-dark) !important;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--third-color);
}

.subtitle {
  color: var(--text-color-light);
  opacity: 0.8;
  font-weight: 400;
}

.dark-mode .subtitle {
  color: var(--text-color-dark);
  opacity: 0.8;
}

p {
  margin-bottom: 1rem;
  line-height: 1.75;
  font-family: 'Poppins', 'Inter', sans-serif;
}

/* Card styles */
.card {
  transition: all 0.2s ease;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid transparent;
}

.light-mode .card {
  background-color: var(--bg-color-light);
  border-color: var(--border-color-light);
}

.dark-mode .card {
  background-color: rgba(20, 25, 35, 0.8);
  border-color: var(--border-color-dark);
}

.equal-height {
  display: flex;
  height: 100%;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--hover-shadow);
  border-color: var(--secondary-color);
}

.card-header {
  background-color: rgba(47, 74, 145, 0.05);
}

.light-mode .card-header {
  border-bottom: 1px solid var(--border-color-light);
}

.dark-mode .card-header {
  border-bottom: 1px solid var(--border-color-dark);
}

.light-mode .card-header-title {
  color: var(--text-color-light);
}

.dark-mode .card-header-title {
  color: var(--text-color-dark);
}

.card-header-title {
  font-weight: 600;
}

.has-height-100 {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-content {
  flex-grow: 1;
  padding: 1.5rem;
}

.card-footer {
  background-color: transparent;
}

.light-mode .card-footer {
  border-top: 1px solid var(--border-color-light);
}

.dark-mode .card-footer {
  border-top: 1px solid var(--border-color-dark);
}

.card-footer-item {
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.light-mode .card-footer-item {
  color: var(--secondary-color);
}

.dark-mode .card-footer-item {
  color: var(--third-color);
}

.card-footer-item:hover {
  background-color: rgba(47, 74, 145, 0.05);
}

.light-mode .card-footer-item:hover {
  color: var(--primary-color);
}

.dark-mode .card-footer-item:hover {
  color: var(--secondary-color);
}

.card-footer-item.is-success {
  background-color: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}

.is-text {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

/* Sticky sidebar */
.sticky-sidebar {
  position: sticky;
  top: 2rem;
}

.tips-list li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
  border-left: 2px solid var(--primary-color);
}

.has-text-primary {
  color: var(--primary-color) !important;
}

.copy-prompt {
  border: 1px solid var(--secondary-color);
  background-color: transparent;
}

/* Category cards */
.category-card {
  text-align: center;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
  border-radius: var(--border-radius);
}

.light-mode .category-card {
  background: linear-gradient(145deg, #ffffff, var(--light-gray));
  box-shadow: var(--card-shadow);
}

.dark-mode .category-card {
  background: linear-gradient(145deg, #141923, #0a0d12);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.category-card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
  padding: 1rem;
}

/* Base style for category icons */
.category-card .icon {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.category-card .icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2;
  transition: all 0.3s ease;
}

/* Categorie 1: Coaching - Blauw met hartelijkheid */
.category-icon-1 {
  background-color: rgba(58, 103, 211, 0.15);
  border: 2px solid rgba(58, 103, 211, 0.3);
}

.category-icon-1 svg {
  stroke: #3A67D3;
  filter: drop-shadow(0 2px 3px rgba(58, 103, 211, 0.3));
}

/* Categorie 2: DevOps - Techno groen */
.category-icon-2 {
  background-color: rgba(46, 204, 113, 0.15);
  border: 2px solid rgba(46, 204, 113, 0.3);
}

.category-icon-2 svg {
  stroke: #2ecc71;
  filter: drop-shadow(0 2px 3px rgba(46, 204, 113, 0.3));
}

/* Categorie 3: Ondernemerschap - Ambitieus oranje */
.category-icon-3 {
  background-color: rgba(230, 126, 34, 0.15);
  border: 2px solid rgba(230, 126, 34, 0.3);
}

.category-icon-3 svg {
  stroke: #e67e22;
  filter: drop-shadow(0 2px 3px rgba(230, 126, 34, 0.3));
}

/* Categorie 4: Productiviteit - Paars (focus) */
.category-icon-4 {
  background-color: rgba(142, 68, 173, 0.15);
  border: 2px solid rgba(142, 68, 173, 0.3);
}

.category-icon-4 svg {
  stroke: #8e44ad;
  filter: drop-shadow(0 2px 3px rgba(142, 68, 173, 0.3));
}

/* Categorie 5: Schrijven - Turquoise (creativiteit) */
.category-icon-5 {
  background-color: rgba(26, 188, 156, 0.15);
  border: 2px solid rgba(26, 188, 156, 0.3);
}

.category-icon-5 svg {
  stroke: #1abc9c;
  filter: drop-shadow(0 2px 3px rgba(26, 188, 156, 0.3));
}

/* Categorie 6: Leren - Rood (energie) */
.category-icon-6 {
  background-color: rgba(231, 76, 60, 0.15);
  border: 2px solid rgba(231, 76, 60, 0.3);
}

.category-icon-6 svg {
  stroke: #e74c3c;
  filter: drop-shadow(0 2px 3px rgba(231, 76, 60, 0.3));
}

/* Fallback voor andere categorieën */
.category-card .icon:not([class*="category-icon-"]) {
  background-color: rgba(58, 103, 211, 0.15);
  border: 2px solid rgba(58, 103, 211, 0.3);
}

.category-card .icon:not([class*="category-icon-"]) svg {
  stroke: var(--secondary-color);
}

/* Hover effecten voor alle categorieën */
.category-card:hover .icon {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Extra animatie voor iconen */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.category-card:hover .icon svg {
  animation: pulse 1.5s ease-in-out infinite;
}

/* Dark mode aanpassingen */
.dark-mode .category-icon-1 {
  background-color: rgba(58, 103, 211, 0.25);
}

.dark-mode .category-icon-2 {
  background-color: rgba(46, 204, 113, 0.25);
}

.dark-mode .category-icon-3 {
  background-color: rgba(230, 126, 34, 0.25);
}

.dark-mode .category-icon-4 {
  background-color: rgba(142, 68, 173, 0.25);
}

.dark-mode .category-icon-5 {
  background-color: rgba(26, 188, 156, 0.25);
}

.dark-mode .category-icon-6 {
  background-color: rgba(231, 76, 60, 0.25);
}

/* Prompt box */
.prompt-box {
  border-radius: var(--border-radius);
  padding: 1.5rem;
  border-left: 3px solid var(--secondary-color);
  font-family: 'SF Mono', 'JetBrains Mono', 'IBM Plex Mono', 'Courier New', monospace;
  white-space: pre-wrap;
  word-break: break-word;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
  margin: 1rem 0;
  overflow-x: auto;
  position: relative;
  min-height: 100px;
  font-size: 14px;
  line-height: 1.5;
}

.light-mode .prompt-box {
  background-color: var(--light-gray);
  color: var(--text-color-light);
}

.dark-mode .prompt-box {
  background-color: rgba(20, 25, 35, 0.5);
  color: var(--text-color-dark);
}

.prompt-card {
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.light-mode .prompt-card {
  border-color: var(--border-color-light);
}

.dark-mode .prompt-card {
  border-color: var(--border-color-dark);
}

.prompt-card:hover {
  border-color: var(--secondary-color);
  box-shadow: var(--hover-shadow);
}

.prompt-variation {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.light-mode .prompt-variation {
  border-bottom: 1px solid var(--border-color-light);
}

.dark-mode .prompt-variation {
  border-bottom: 1px solid var(--border-color-dark);
}

.prompt-variation:last-child {
  border-bottom: none;
}

/* Section styling */
.section {
  padding: 4rem 1.5rem;
}

/* Functionele iconen in feature sectie */
.section .icon.is-large {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.column:nth-child(1) .icon.is-large {
  background-color: rgba(58, 103, 211, 0.15);
  border: 2px solid rgba(58, 103, 211, 0.3);
}

.column:nth-child(1) .icon.is-large svg {
  stroke: #3A67D3;
  filter: drop-shadow(0 2px 3px rgba(58, 103, 211, 0.3));
}

.column:nth-child(2) .icon.is-large {
  background-color: rgba(46, 204, 113, 0.15);
  border: 2px solid rgba(46, 204, 113, 0.3);
}

.column:nth-child(2) .icon.is-large svg {
  stroke: #2ecc71;
  filter: drop-shadow(0 2px 3px rgba(46, 204, 113, 0.3));
}

.column:nth-child(3) .icon.is-large {
  background-color: rgba(230, 126, 34, 0.15);
  border: 2px solid rgba(230, 126, 34, 0.3);
}

.column:nth-child(3) .icon.is-large svg {
  stroke: #e67e22;
  filter: drop-shadow(0 2px 3px rgba(230, 126, 34, 0.3));
}

.section .icon.is-large svg {
  width: 36px;
  height: 36px;
  stroke-width: 2;
}

.dark-mode .column:nth-child(1) .icon.is-large {
  background-color: rgba(58, 103, 211, 0.25);
}

.dark-mode .column:nth-child(2) .icon.is-large {
  background-color: rgba(46, 204, 113, 0.25);
}

.dark-mode .column:nth-child(3) .icon.is-large {
  background-color: rgba(230, 126, 34, 0.25);
}

.light-mode .section.has-background-light {
  background-color: var(--light-gray) !important;
}

.dark-mode .section.has-background-light {
  background-color: rgba(15, 20, 30, 0.5) !important;
}

.hero {
  margin-bottom: 3rem;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 1rem;
}

.light-mode .hero {
  background: var(--bg-color-light) !important;
}

.dark-mode .hero {
  background: var(--bg-color-dark) !important;
}

.hero.is-info, .hero.is-primary, .hero.is-danger {
  background: var(--accent-gradient) !important;
}

.hero.is-bold .hero-body {
  padding: 5rem 1.5rem;
}

/* Buttons */
.button {
  font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: all 0.2s ease;
  letter-spacing: 0;
  height: auto;
  padding: 0.5rem 1.25rem;
}

.button.is-small {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
}

.button.is-medium {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
}

.button.is-large {
  padding: 1rem 2rem;
  font-size: 1.25rem;
}

.light-mode .button.is-primary {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: white;
}

.dark-mode .button.is-primary {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: white;
}

.button.is-primary:hover {
  background-color: var(--third-color);
  border-color: var(--third-color);
  color: white;
  box-shadow: 0 4px 8px rgba(47, 74, 145, 0.25);
}

.button.is-primary.is-success {
  background-color: #2cb67d;
  border-color: #2cb67d;
  color: white;
  transition: all 0.2s ease;
}

.button.is-primary.is-success:hover {
  background-color: #28a571;
  border-color: #28a571;
  box-shadow: 0 4px 8px rgba(44, 182, 125, 0.25);
}

.light-mode .button.is-info {
  background-color: #38bdf8;
  border: 1px solid #38bdf8;
  color: white;
}

.dark-mode .button.is-info {
  background-color: #38bdf8;
  border: 1px solid #38bdf8;
  color: white;
}

.button.is-info:hover {
  background-color: #0ea5e9;
  border-color: #0ea5e9;
  box-shadow: 0 4px 8px rgba(56, 189, 248, 0.25);
}

.button.is-outlined {
  background-color: transparent;
}

.button.is-primary.is-outlined {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.button.is-primary.is-outlined:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  .columns {
    margin-left: 0;
    margin-right: 0;
  }
  
  .column {
    padding: 0.75rem;
  }
  
  .section {
    padding: 3rem 1rem;
  }
  
  .card {
    margin-bottom: 1.25rem;
  }
  
  .hero.is-bold .hero-body {
    padding: 3rem 1.5rem;
  }
  
  .title.is-2 {
    font-size: 2rem;
  }
  
  .buttons.has-addons {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  
  .prompt-box {
    padding: 1rem;
  }
}

/* Footer */
.footer {
  margin-top: 3rem;
  padding: 3rem 1.5rem 2rem;
}

.footer a {
  color: var(--secondary-color);
  font-weight: 500;
  transition: all 0.2s ease;
}

.footer a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.light-mode .footer {
  background-color: var(--light-gray);
  border-top: 1px solid var(--border-color-light);
}

.dark-mode .footer {
  background-color: rgba(15, 20, 30, 0.7);
  border-top: 1px solid var(--border-color-dark);
}

/* Navbar */
.navbar {
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.light-mode .navbar {
  background-color: var(--primary-color);
}

.dark-mode .navbar {
  background-color: var(--primary-color);
}

.light-mode .navbar.is-primary {
  background: var(--primary-color);
}

.dark-mode .navbar.is-primary {
  background: var(--primary-color);
}

.navbar-brand a.navbar-item {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1.25rem;
  color: white !important;
}

.light-mode .navbar-menu {
  background-color: var(--primary-color);
}

.dark-mode .navbar-menu {
  background-color: var(--primary-color);
}

.navbar-item {
  font-weight: 500;
  color: white !important;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.navbar-link {
  color: white !important;
}

.navbar-item:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.navbar-link:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.navbar-item.has-dropdown:hover .navbar-link {
  background-color: rgba(255, 255, 255, 0.15) !important;
}

.navbar-dropdown {
  border-radius: var(--border-radius);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.light-mode .navbar-dropdown {
  background-color: var(--bg-color-light);
  border: 1px solid var(--border-color-light);
}

.dark-mode .navbar-dropdown {
  background-color: #141923;
  border: 1px solid var(--border-color-dark);
}

.navbar-dropdown .navbar-item {
  color: var(--text-color-light) !important;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
}

.dark-mode .navbar-dropdown .navbar-item {
  color: var(--text-color-dark) !important;
}

.navbar-dropdown .navbar-item:hover {
  background-color: rgba(47, 74, 145, 0.05) !important;
}

/* Search input */
.navbar-item .field {
  margin-bottom: 0;
}

.navbar-item form {
  width: 100%;
}

.field.has-addons {
  min-width: 280px;
}

.field.has-addons .control.is-expanded {
  flex-grow: 1;
}

.input {
  border-radius: var(--border-radius);
  font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 0.95rem;
  height: auto;
  padding: 0.5rem 0.75rem;
}

/* Search in navbar */
.navbar .input {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: var(--border-radius);
}

.navbar .input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.navbar .input:focus {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
  color: white;
}

/* Regular inputs outside navbar */
.light-mode .section .input {
  background-color: var(--bg-color-light);
  border: 1px solid var(--border-color-light);
  color: var(--text-color-light);
}

.dark-mode .section .input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color-dark);
  color: white;
}

.light-mode .section .input::placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

.dark-mode .section .input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.section .input:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 1px var(--secondary-color);
}

.light-mode .section .input:focus {
  background-color: var(--bg-color-light);
}

.dark-mode .section .input:focus {
  background-color: rgba(255, 255, 255, 0.08);
}

.field.has-addons .button {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

.field.has-addons .button:hover {
  background-color: var(--third-color);
  border-color: var(--third-color);
  color: white;
}

/* Menu styling */
.menu-label {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.light-mode .menu-label {
  color: #666;
}

.dark-mode .menu-label {
  color: #aaa;
}

/* Zoekresultaten styling */
.search-term {
  color: var(--secondary-color);
  font-weight: 700;
}

.menu-list a {
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  margin-bottom: 0.25rem;
}

.light-mode .menu-list a {
  color: var(--text-color-light);
}

.dark-mode .menu-list a {
  color: var(--text-color-dark);
}

.menu-list a:hover {
  background-color: rgba(47, 74, 145, 0.05);
}

.menu-list a.is-active {
  background-color: var(--secondary-color);
  box-shadow: 0 2px 5px rgba(47, 74, 145, 0.2);
  color: white;
}

/* Notification */
.notification {
  border-radius: var(--border-radius);
}

.light-mode .notification {
  background-color: var(--light-gray);
  border: 1px solid var(--border-color-light);
}

.dark-mode .notification {
  background-color: rgba(20, 25, 35, 0.8);
  border: 1px solid var(--border-color-dark);
}

.notification.is-warning {
  border-color: #fbbf24;
}

.light-mode .notification.is-warning {
  background-color: rgba(251, 191, 36, 0.1);
  color: var(--text-color-light);
}

.dark-mode .notification.is-warning {
  background-color: rgba(251, 191, 36, 0.1);
  color: var(--text-color-dark);
}

/* Content */
.light-mode .content {
  color: #444;
}

.dark-mode .content {
  color: #ccc;
}

.content p, .content li {
  line-height: 1.75;
}

.content ul {
  margin-left: 1rem;
}

/* Title */
.title, .subtitle {
  letter-spacing: -0.01em;
}

.title.is-1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.title.is-2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.title.is-4 {
  font-size: 1.5rem;
}

.title.is-5 {
  font-size: 1.25rem;
}

.category-card .subtitle.is-6 {
  font-size: 1rem;
  max-height: 3.2em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Breadcrumb styling */
.breadcrumb {
  margin-bottom: 2rem;
  font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
}

.light-mode .breadcrumb ul {
  background-color: var(--light-gray);
  border: 1px solid var(--border-color-light);
}

.dark-mode .breadcrumb ul {
  background-color: rgba(20, 25, 35, 0.5);
  border: 1px solid var(--border-color-dark);
}

.breadcrumb li+li::before {
  color: #888;
}

.breadcrumb a {
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  align-items: center;
  display: flex;
}

.light-mode .breadcrumb a {
  color: #555;
}

.dark-mode .breadcrumb a {
  color: #aaa;
}

.breadcrumb a:hover {
  background-color: rgba(47, 74, 145, 0.05);
}

.light-mode .breadcrumb a:hover {
  color: var(--text-color-light);
}

.dark-mode .breadcrumb a:hover {
  color: var(--text-color-dark);
}

.breadcrumb li.is-active a {
  color: var(--secondary-color);
  font-weight: 600;
}

.breadcrumb .icon {
  margin-right: 0.5rem;
}

@media screen and (max-width: 768px) {
  .breadcrumb ul {
    flex-direction: column;
    padding: 0.5rem;
  }
  
  .breadcrumb li {
    margin-bottom: 0.5rem;
  }
  
  .breadcrumb li+li::before {
    content: '';
    margin: 0;
  }
}

/* Spacing utilities */
.mt-5 {
  margin-top: 3rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mt-6 {
  margin-top: 4rem !important;
}

/* Hero text color in light/dark mode */
.light-mode .hero.is-info .title,
.light-mode .hero.is-primary .title,
.light-mode .hero.is-info .subtitle,
.light-mode .hero.is-primary .subtitle {
  color: white !important;
}

.dark-mode .hero.is-info .title,
.dark-mode .hero.is-primary .title,
.dark-mode .hero.is-info .subtitle,
.dark-mode .hero.is-primary .subtitle {
  color: white !important;
}

/* Text highlight voor AI */
.text-highlight {
  color: var(--secondary-color) !important;
  font-weight: 700;
  letter-spacing: -0.01em;
}