* { box-sizing: border-box; }

:root{
  --bg: #f2f7fb;
  --card: #ffffff;
  --text: #1e2a35;
  --muted: #6c7a89;
  --blue: #6bb6ff;
  --shadow: 0 10px 25px rgba(0,0,0,0.06);
}

body{
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.site-header{
  position: sticky;
  top: 0;
  background: rgba(242, 247, 251, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo{
  height: 44px;
  width: auto;
}

/* MAIN */
.site-main{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

/* HERO (forsiden) */
.hero{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo{
  width: 800px;     /* større logo */
  max-width: 100%;   /* mobilvenlig */
  height: auto;
  filter: drop-shadow(0 14px 35px rgba(60,120,255,0.25));
}

/* FOOTER */
.site-footer{
  border-top: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.45);
}

.footer-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}