/* === Kerno Consulting — Static Styles === */

:root {
  --background: #080808;
  --foreground: #F2EDE9;
  --accent: #D4556A;
  --accent-hover: #c04a5e;
  --card-bg: #151010;
  --card-border: #1a1a1a;
  --text-muted: #6B6B6B;
  --font-display: 'Clash Display', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Neue Montreal', ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #080808;
}
::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #333;
}

/* Selection */
::selection {
  background: rgba(212, 85, 106, 0.2);
  color: #F2EDE9;
}

/* Float animation for geometric shapes */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-12px) rotate(1deg);
  }
  66% {
    transform: translateY(6px) rotate(-1deg);
  }
}

.animate-float {
  animation: float 8s ease-in-out infinite;
}

/* Tailwind classes via CDN, so we just need fallbacks */
