/* Bukovi Tare — design tokens (HSL) */
:root {
  --background: 210 20% 98%;
  --foreground: 215 25% 15%;
  --card: 0 0% 100%;
  --muted: 210 20% 94%;
  --muted-foreground: 215 16% 47%;
  --primary: 207 65% 31%;
  --primary-foreground: 210 40% 98%;
  --secondary: 142 40% 35%;
  --accent: 30 90% 55%;
  --accent-foreground: 215 25% 15%;
  --border: 214 32% 91%;
  --radius: 0.5rem;
}
html { scroll-behavior: smooth; }
body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  margin: 0;
}
.bg-background { background: hsl(var(--background)); }
.bg-card { background: hsl(var(--card)); }
.bg-muted { background: hsl(var(--muted)); }
.bg-primary { background: hsl(var(--primary)); }
.bg-accent { background: hsl(var(--accent)); }
.bg-foreground\/60 { background: hsl(var(--foreground) / 0.6); }
.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-primary-foreground\/80 { color: hsl(var(--primary-foreground) / 0.8); }
.text-primary-foreground\/70 { color: hsl(var(--primary-foreground) / 0.7); }
.text-primary-foreground\/50 { color: hsl(var(--primary-foreground) / 0.5); }
.text-accent { color: hsl(var(--accent)); }
.text-accent-foreground { color: hsl(var(--accent-foreground)); }
.text-secondary { color: hsl(var(--secondary)); }
.fill-accent { fill: hsl(var(--accent)); }
.border-token { border-color: hsl(var(--border)); }
.border-primary-foreground\/10 { border-color: hsl(var(--primary-foreground) / 0.1); }
.ring-accent { box-shadow: 0 0 0 2px hsl(var(--accent)); }
.gradient-overlay {
  background: linear-gradient(to top, hsl(var(--foreground) / 0.8), transparent);
}
.btn-accent {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer;
}
.btn-accent:hover { background: hsl(var(--accent) / 0.9); }
.btn-outline {
  background: transparent;
  color: hsl(var(--primary-foreground));
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--primary-foreground) / 0.3);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-outline:hover { background: hsl(var(--primary-foreground) / 0.1); }
.btn-outline-dark {
  background: transparent;
  color: hsl(var(--foreground));
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  display: inline-flex; align-items: center; gap: 0.25rem;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-outline-dark:hover { background: hsl(var(--muted)); }
.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  display: flex; flex-direction: column;
}
.input, .textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--card));
  font-size: 0.95rem;
  font-family: inherit;
}
.input:focus, .textarea:focus { outline: 2px solid hsl(var(--primary)); outline-offset: -1px; }
.label { display:block; margin-bottom: 0.35rem; font-size: 0.875rem; font-weight: 500; color: hsl(var(--foreground)); }
.icon { width: 1rem; height: 1rem; stroke-width: 2; }
.icon-lg { width: 2rem; height: 2rem; stroke-width: 2; }
.icon-md { width: 1.25rem; height: 1.25rem; stroke-width: 2; }
.nav-link.active { color: hsl(var(--accent)); }
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hover-scale { transition: transform 0.5s; }
.group:hover .hover-scale { transform: scale(1.05); }
