/* ki-kurs custom styles — Tailwind handles most */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,600;0,9..144,700;1,9..144,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --color-navy: #1a2744;
  --color-gold: #c9a84c;
  --color-teal: #2a9d8f;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
}

h1, h2.hero-heading {
  font-family: 'Fraunces', Georgia, serif;
}

/* Cookie-Notice */
#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e293b;
  border-top: 1px solid #334155;
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  font-size: 0.8125rem;
  color: #94a3b8;
}

#cookie-notice a {
  color: #c9a84c;
  text-decoration: underline;
}

#cookie-notice button {
  background: #c9a84c;
  color: #1a2744;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.8125rem;
  white-space: nowrap;
}

#cookie-notice button:hover {
  background: #b8962e;
}
