/*
Theme Name: AEROS Global
Description: AEROS International — crowdfunding-kampanje (USA-fokus). Én kampanjeside + WooCommerce-kasse i USD.
Version: 1.0.0
Author: AEROS
Text Domain: aeros-global
*/

:root {
  --bg: #0B141E;
  --bg2: #102030;
  --panel: rgba(255, 255, 255, .028);
  --panel-hi: rgba(255, 255, 255, .05);
  --line: rgba(255, 251, 239, .10);
  --line-soft: rgba(255, 251, 239, .06);
  --border-subtle: rgba(255, 251, 239, .10);
  --text: #FFFBEF;
  --cream: #FFFBEF;
  --cream-soft: rgba(255, 251, 239, .78);
  --cream-faint: rgba(255, 251, 239, .5);
  --text-faint: rgba(255, 251, 239, .5);
  --gold: #C6B996;
  --gold-light: #FFF1CB;
  --gold-bright: #FFF1CB;
  --gold-dim: rgba(198, 185, 150, .4);
  --blue: #345A83;
  --ink: #14100a;
  --font-serif: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
  /* Ordmerket er Bell MT — samme som aeros.no. Faller til Libre Baskerville der
     Bell MT ikke finnes (den følger med Microsoft Office, ikke alle maskiner). */
  --font-logo: 'Bell MT', 'Libre Baskerville', Georgia, serif;
  --edge: clamp(20px, 4.5vw, 56px);
  --max-w: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(198, 185, 150, .35); color: #fff; }

img { max-width: 100%; height: auto; }

a { color: var(--gold); }
a:hover { color: var(--gold-light); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ---- enkel site-chrome for indre sider (kasse, juridisk) ---- */
.site-header {
  padding: 22px var(--edge);
  border-bottom: 1px solid var(--line-soft);
}
.site-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .42em;
  color: #fff;
  text-decoration: none;
}
.site-nav { display: flex; gap: 26px; }
.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream-soft);
  text-decoration: none;
}
.nav-link:hover { color: var(--cream); }

.site-main { min-height: 55vh; }

.site-footer { border-top: 1px solid var(--border-subtle); margin-top: 80px; }
