/* Stil for SEO-kategorisider på velen.no – matcher forsidens merkevare. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #C0D3D7;
  --tan: #B89A72;
  --tan-dark: #9a7e5a;
  --text: #1a1a1a;
  --muted: #888;
  --bg: #ffffff;
}

html, body { height: 100%; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.6;
}

.site-header {
  display: flex;
  justify-content: center;
  padding: 24px;
  border-bottom: 1px solid #f1f1f1;
}
.site-header a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.site-header img { width: 36px; height: auto; mix-blend-mode: multiply; }
.site-header .wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.16em;
}

main {
  flex: 1;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 56px;
}

.breadcrumb {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--tan-dark); }

.cat-icon {
  font-size: 44px;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(30px, 8vw, 46px);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.lead {
  font-size: clamp(15px, 4vw, 17px);
  font-weight: 300;
  color: #444;
  margin-bottom: 8px;
}

/* Hidden SEO text: not shown to users, still in the DOM for search engines.
   The keywords also appear visibly in the <h1> and .lead, so this only
   reinforces existing on-page content. */
.body-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--blue);
  margin: 32px 0;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
  margin: 28px 0;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 20px;
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-app {
  background: var(--tan);
  color: #fff;
  box-shadow: 0 2px 12px rgba(184,154,114,0.25);
}
.btn-app:hover { box-shadow: 0 6px 20px rgba(184,154,114,0.35); }

.btn-store {
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.btn-store:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.btn-store svg { flex-shrink: 0; }

.other-cats { margin-top: 48px; }
.other-cats h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.other-cats .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 600px) {
  .other-cats .grid { grid-template-columns: repeat(3, 1fr); }
}
.other-cats a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 13px;
  border: 1.5px solid #ececec;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
  transition: border-color 0.15s, transform 0.15s;
}
.other-cats a:hover { border-color: var(--tan); transform: translateY(-2px); }
.other-cats .emoji { font-size: 15px; line-height: 1; }

footer {
  padding: 28px 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #f1f1f1;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--tan-dark); }
.footer-copy { font-size: 11px; color: #ccc; letter-spacing: 0.04em; }
