/* K2 Baltic Hub Theme */

:root {
  --background: oklch(0.98 0.01 240);
  --foreground: oklch(0.2 0.02 240);
  --primary: oklch(0.35 0.08 240);
  --accent: oklch(0.75 0.15 75);
}

body {
  background-color: var(--background) !important;
  color: var(--foreground) !important;
  font-family: 'Inter', sans-serif !important;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

.hero-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
}

.transition-all-300 {
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-scale:hover {
  transform: scale(1.02);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: oklch(0.28 0.07 240);
}
