/* ============================================
   BUREAL - Base (variabler, reset, typografi)
   Färger:
   #2769A6 - Primär (mörkblå)
   #2EA8DD - Sekundär (mellanblå)
   #8DC8E4 - Accent (ljusblå)
   ============================================ */

:root {
  --primary: #2769A6;
  --secondary: #2EA8DD;
  --accent: #8DC8E4;
  --primary-dark: #1d4f7d;
  --primary-darker: #163c5f;
  --text-dark: #1a2b3c;
  --text-muted: #5a6b7a;
  --bg-light: #f4f8fb;
  --bg-white: #ffffff;
  --border: #e2ecf3;
  --shadow-sm: 0 2px 8px rgba(39, 105, 166, 0.08);
  --shadow-md: 0 8px 24px rgba(39, 105, 166, 0.12);
  --shadow-lg: 0 16px 40px rgba(39, 105, 166, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--bg-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", "Inter", "Segoe UI", sans-serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-dark);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ ANIMATIONER ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}