/* Skills Audit — design tokens + base styles
 * To rebrand: edit the :root variables below. That's it.
 */

:root {
  /* Brand */
  --color-primary: #D97757;          /* warm terracotta */
  --color-primary-dark: #B85F43;
  --color-accent: #7A9B8E;           /* soft sage */

  /* Surfaces */
  --color-bg: #FAF6F0;               /* warm cream */
  --color-bg-card: #FFFFFF;
  --color-bg-subtle: #F2EBE0;

  /* Ink */
  --color-text: #2C2825;
  --color-text-muted: #6B6560;
  --color-text-soft: #94897F;

  /* Lines */
  --color-border: #E5DDD3;
  --color-border-strong: #D4C9B8;

  /* States */
  --color-success: #5A8266;
  --color-error: #C4524C;
  --color-warning: #D4A056;
}

html { scroll-behavior: smooth; }
body { background: var(--color-bg); }

/* Typography */
.font-display { font-family: 'Fraunces', Georgia, serif; font-feature-settings: 'ss01' 1; }

/* Buttons */
.btn-primary {
  background: var(--color-primary);
  color: white;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary:hover:not(:disabled) {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-strong);
  border-radius: 0.75rem;
  font-weight: 500;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-secondary:hover:not(:disabled) {
  background: var(--color-bg-subtle);
}

/* Door select cards */
.door-btn {
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  transition: all 0.18s ease;
}
.door-btn:hover {
  border-color: var(--color-primary);
  box-shadow: 0 6px 24px -8px rgba(217, 119, 87, 0.18);
  transform: translateY(-1px);
}

/* Inputs */
input[type="email"],
input[type="text"],
input[type="number"],
textarea,
select {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  font-family: inherit;
  transition: border-color 0.15s ease;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(217, 119, 87, 0.12);
}

/* Container */
.container-narrow { max-width: 42rem; margin-left: auto; margin-right: auto; }

/* Subtle animations */
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.4s ease-out; }
