@import "https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css";

/* Hero gradient */
.hero.is-kp {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #16213e 100%);
}

/* Card styling */
.kp-card {
  background-color: #16213e;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
  color: #eaeaea;
}

.kp-card:hover {
  border-color: #e94560;
  transform: translateY(-2px);
}

/* Light theme overrides */
[data-theme="light"] .hero.is-kp {
  background: linear-gradient(135deg, #3273dc 0%, #1e5bb5 50%, #2366d6 100%);
}

[data-theme="light"] {
  background-color: #f5f5f5;
  color: #2c2c2c;
}

[data-theme="light"] .kp-card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  color: #2c2c2c;
}

[data-theme="light"] .kp-card:hover {
  border-color: #e94560;
}

[data-theme="light"] .has-text-grey-light {
  color: #666 !important;
}

[data-theme="light"] .navbar.is-dark {
  background-color: #1a1a2e;
}
