:root {
  --custom-primary: #fec905;
  --custom-primary-dark: #d3a10c;
  --custom-secondary: #a5a5a5;
  --custom-accent: #06b6d4;
  --custom-success: #10b981;
  --custom-warning: #f59e0b;
  --custom-danger: #ef4444;
  --custom-dark: #504f4e;
  --custom-light: #f8fafc;
  --custom-gradient: linear-gradient(135deg, #f2b80a, #d3a20f);
}

/* Override Bootstrap colors */
.bg-primary {
  background-color: var(--custom-primary) !important;
}

.bg-menu {
  background-color: var(--custom-dark) !important;
}

.btn-primary {
  background: var(--custom-primary);
  border-color: var(--custom-primary);
}

.btn-primary:hover {
  background-color: var(--custom-primary-dark);
  border-color: var(--custom-primary-dark);
  transform: translateY(-1px);
  transition: all 0.3s ease;
}

.btn-secondary {
  background-color: var(--custom-secondary);
  border-color: var(--custom-secondary);
}

.btn-info {
  background-color: var(--custom-accent);
  border-color: var(--custom-accent);
}

.navbar-brand {
  background: var(--custom-primary);
  color: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

.card {
  border: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.hero-section {
  background: var(--custom-primary);
  min-height: 30vh;
  display: flex;
  align-items: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--custom-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.text-gradient {
  background: var(--custom-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.switch-lg .form-check-input {
  width: 4rem;
  height: 1.5rem;
}

.switch-lg .form-check-input:checked {
  background-size: 1.5rem 1.5rem;
}

/* Markdown tables inside article text */
.card-text table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.card-text table th,
.card-text table td {
  border: 1px solid var(--custom-secondary);
  padding: 0.5rem 0.75rem;
  vertical-align: top;
}

.card-text table thead th {
  background-color: var(--custom-light);
}
