/*
Theme Name: AEROS
Theme URI: https://aeros.no
Author: AEROS
Description: Custom theme for aeros.no — clean code, no builder.
Version: 1.0.0
License: Proprietary
Text Domain: aeros
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg:            #102030;
  --bg-dark:       #0d1a26;
  --bg-black:      #0a0a0a;
  --gold:          #C6B996;
  --gold-light:    #fff1cb;
  --text:          #FFFBEF;
  --text-muted:    rgba(255,251,239,0.55);
  --text-dim:      rgba(255,251,239,0.7);
  --text-faint:    rgba(255,251,239,0.25);
  --border:        rgba(198,185,150,0.2);
  --border-subtle: rgba(198,185,150,0.1);
  --font-serif:    'Libre Baskerville', Georgia, serif;
  --font-sans:     'Inter', system-ui, sans-serif;
  --font-logo:     'Bell MT', 'Libre Baskerville', Georgia, serif;
  --max-w:         1200px;
  --edge:          clamp(16px, 5vw, 72px);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* CRITICAL: inherit color so buttons never get browser-default blue */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

p {
  color: var(--text-dim);
  line-height: 1.8;
}

strong, b {
  color: var(--text);
  font-weight: 500;
}

em {
  font-style: italic;
  color: var(--gold-light);
}

ul, ol {
  padding-left: 1.25em;
}

li {
  color: var(--text-dim);
  line-height: 1.8;
}

/* WordPress content wrapper */
.entry-content {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* Push content below fixed header */
.site-main {
  padding-top: 64px;
}
