/* =========================================================
   Venner af Gl. Kongevej - fælles stylesheet
   ========================================================= */

:root {
  --text: #1f2937;
  --muted: #6b7280;
  --card: rgba(255,255,255,0.85);
  --blue: #2563eb;
  --pink: #ec4899;
}

/* =========================================================
   RESET / BASE
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);

  background:
    radial-gradient(circle at top left, #dbeafe 0, transparent 35%),
    radial-gradient(circle at top right, #fce7f3 0, transparent 35%),
    linear-gradient(135deg, #f8fafc, #eef2ff);
}

/* =========================================================
   LAYOUT
   ========================================================= */

main,
.site-header {
  width: min(1120px, 92%);
  margin: 0 auto;
}

main {
  padding: 48px 0;
}

/* =========================================================
   HEADER / MENU
   ========================================================= */

.site-header {
  padding: 22px 0 0;

  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.logo {
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
}

nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

nav a {
  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(255,255,255,0.75);

  color: var(--text);
  text-decoration: none;
  font-weight: 700;

  box-shadow: 0 8px 22px rgba(0,0,0,0.06);

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

nav a:hover {
  background: white;
  color: var(--blue);
  transform: translateY(-1px);
}

nav a.active {
  background: linear-gradient(135deg, var(--blue), var(--pink));
  color: white;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.badge {
  display: inline-block;

  padding: 8px 14px;
  border-radius: 999px;

  background: white;

  color: var(--blue);
  font-weight: 700;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

h1 {
  margin: 22px 0 18px;

  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.lead {
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.7;
}

/* =========================================================
   IMAGES
   ========================================================= */

.image-frame {
  padding: 10px;

  border-radius: 34px;

  background:
    linear-gradient(
      135deg,
      red,
      orange,
      yellow,
      green,
      blue,
      purple
    );

  box-shadow: 0 25px 70px rgba(37,99,235,0.22);
}

.image-frame img {
  width: 100%;
  display: block;

  border-radius: 26px;
}

.graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.graphic img {
  width: 100%;
  max-width: 720px;
  height: auto;
}

/* =========================================================
   CARDS
   ========================================================= */

.cards {
  margin-top: 40px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: var(--card);

  backdrop-filter: blur(18px);

  border-radius: 28px;

  padding: 30px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.card h2 {
  margin-top: 0;
  margin-bottom: 14px;

  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.card p {
  margin: 0;
  line-height: 1.8;
}

/* =========================================================
   PEOPLE / BESTYRELSE
   ========================================================= */

.people {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.person {
  padding: 14px 16px;

  border-radius: 16px;

  background: #f8fafc;

  font-weight: 600;
}

/* =========================================================
   INFO BOXES
   ========================================================= */

.info-box,
.highlight {
  margin-top: 18px;

  padding: 18px;

  border-radius: 18px;

  background: #eff6ff;

  color: #1e3a8a;
  font-weight: 700;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  display: inline-block;

  margin-top: 18px;
  padding: 14px 22px;

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      var(--blue),
      var(--pink)
    );

  color: white;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 12px 28px rgba(37,99,235,0.25);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 18px 36px rgba(37,99,235,0.3);
}

/* =========================================================
   LISTS
   ========================================================= */

ul,
ol {
  line-height: 1.8;
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
  margin-top: 50px;

  padding: 20px;

  text-align: center;

  color: var(--muted);
}

footer a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

  .hero,
  .cards {
    grid-template-columns: 1fr;
  }

  .graphic {
    order: -1;
  }

  h1 {
    font-size: 3rem;
  }
}

@media (max-width: 600px) {

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .card {
    padding: 22px;
  }
}

/* =========================================================
   VEDTÆGTER / CONTENT
   ========================================================= */

.content {
  margin-top: 36px;

  background: var(--card);

  backdrop-filter: blur(18px);

  border-radius: 28px;

  padding: 40px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.08);

  line-height: 1.8;
}

.content h2 {
  margin-top: 56px;
  margin-bottom: 18px;

  font-size: 2rem;
  letter-spacing: -0.03em;
}

.content h2:first-child {
  margin-top: 0;
}

.content h3 {
  margin-top: 34px;
  margin-bottom: 14px;

  font-size: 1.3rem;
}

.content p {
  margin-bottom: 18px;
}

.content ol,
.content ul {
  margin-top: 14px;
  margin-bottom: 24px;
}