/* Hero Herald - Global Styles */

:root {
  /* Hero Huisstijl Kleuren */
  --hero-blue: #073889;
  --hero-blue-bold: #0065cc;
  --hero-blue-medium: #4197cb;
  --hero-blue-soft: #d3e6f0;
  --hero-blue-hairline: #e9f3f8;
  --hero-orange: #f46015;
  --hero-orange-medium: #c85800;
  --hero-orange-thin: #fde1b6;
  --hero-grijs-black: #242629;
  --hero-grijs-bold: #4f5259;
  --hero-grijs-medium: #9496a1;
  --hero-groen: #38bd47;
  --hero-rood: #b71525;
  
  /* Semantic colors */
  --background: #ffffff;
  --foreground: var(--hero-grijs-black);
  --card: #ffffff;
  --card-foreground: var(--hero-grijs-black);
  --popover: #ffffff;
  --popover-foreground: var(--hero-grijs-black);
  --primary: var(--hero-blue);
  --primary-foreground: #ffffff;
  --secondary: var(--hero-blue-soft);
  --secondary-foreground: var(--hero-blue);
  --muted: var(--hero-blue-hairline);
  --muted-foreground: var(--hero-grijs-bold);
  --accent: var(--hero-orange);
  --accent-foreground: #ffffff;
  --destructive: var(--hero-rood);
  --destructive-foreground: #ffffff;
  --border: var(--hero-blue-soft);
  --input: var(--hero-blue-soft);
  --ring: var(--hero-blue);
  --radius: 0.5rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Exo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
}

/* Button base styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background-color: var(--hero-blue);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #052a66;
}

.btn-primary:disabled {
  background-color: var(--hero-grijs-medium);
  cursor: not-allowed;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--muted);
}

/* Input base styles */
.input {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--background);
  color: var(--foreground);
  transition: border-color 0.2s ease;
}

.input:focus {
  outline: none;
  border-color: var(--hero-blue);
  box-shadow: 0 0 0 2px rgba(7, 56, 137, 0.1);
}

.input:disabled {
  background-color: var(--muted);
  cursor: not-allowed;
}

/* Card styles */
.card {
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
}

/* Label styles */
.label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

/* Utility classes */
.text-muted {
  color: var(--muted-foreground);
}

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

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}
