﻿/* ============================================================
   KOKKEDAL MOTIONSKLUB â€” Shared Stylesheet
   Fonts: Oswald (headings) + Space Grotesk (body)
   ============================================================ */

/* --- Google Fonts loaded in each HTML head --- */

/* -- Variables ----------------------------------------------- */
:root {
  --primary:     #e53333;
  --secondary:   #35353e;
  --grey-light:  #f7f5f2;
  --grey-warm:   #9f9890;
  --grey-cold:   #a8a9b8;
  --black:       #1a1a1a;
  --white:       #ffffff;

  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;

  --container-max: 1172px;
  --header-h:      160px;
  --footer-h:      430px;

  /* fluid side padding: ~396px on 1920px â†’ clamp to readable minimum */
  --side-pad: clamp(1.25rem, 20.625vw, 396px);

  /* one consistent vertical gap between stacked sections */
  --sec-gap: clamp(2.75rem, 5.5vw, 104px);
}

/* -- Reset ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* -- Container ------------------------------------------------ */
.container {
  width: 100%;
  max-width: calc(var(--container-max) + var(--side-pad) * 2);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

/* -- Typography helpers --------------------------------------- */
.label-sm {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.75rem, 0.833vw, 16px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.heading-xl {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(3rem, 6.25vw, 120px);
  line-height: 1;
  text-transform: uppercase;
}

.heading-lg {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 3.75vw, 72px);
  line-height: 1.1;
  text-transform: uppercase;
}

.heading-md {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.25rem, 1.875vw, 36px);
  line-height: 1.2;
  text-transform: uppercase;
}

.heading-card {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1rem, 1.25vw, 24px);
  line-height: 1.17;
  text-transform: uppercase;
}

.text-lg {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1rem, 1.25vw, 24px);
  line-height: 1.4;
}

.text-md {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.04vw, 20px);
  line-height: 1.4;
}

.text-sm {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.8rem, 0.833vw, 16px);
  line-height: 1.25;
}

.text-xs {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.7rem, 0.625vw, 12px);
  line-height: 1.4;
}

/* -- Buttons -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  min-width: 156px;
  padding: 0 1.25rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.875rem, 0.833vw, 16px);
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.85; }

.btn--white {
  background: var(--white);
  color: var(--black);
  border: none;
}
.btn--dark {
  background: var(--secondary);
  color: var(--white);
  border: none;
}
.btn--outline {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--secondary);
}
.btn--outline-dark {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}

/* -- Site Header ---------------------------------------------- */
.site-header {
  position: relative;
  z-index: 100;
  background: var(--secondary);
  height: var(--header-h);
}

/* On homepage the header sits transparently on top of the hero */
.site-header--hero {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: transparent;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--side-pad);
  max-width: 1920px;
  margin: 0 auto;
}

.site-header__logo {
  flex-shrink: 0;
}
.site-header__logo img {
  height: 105px;
  width: auto;
  mix-blend-mode: screen;
}
/* Larger logo on homepage */
.site-header--hero .site-header__logo img {
  height: 130px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 48px);
}
.site-header__nav a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.7rem, 0.729vw, 14px);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  white-space: nowrap;
}
.site-header__nav a:hover { color: var(--primary); }
.site-header__nav a.active { color: var(--primary); }

.site-header__cta {
  flex-shrink: 0;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* -- Site Footer ---------------------------------------------- */
.site-footer {
  background: var(--secondary);
  min-height: var(--footer-h);
  padding: clamp(3rem, 5vw, 87px) 0 clamp(1.5rem, 2.5vw, 48px);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 337px 1fr;
  gap: 2rem;
  padding: 0 var(--side-pad);
  max-width: 1920px;
  margin: 0 auto;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}
.footer-brand__logo img {
  width: 80px;
  height: 80px;
  mix-blend-mode: screen;
}
.footer-brand__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.875rem, 0.833vw, 16px);
  color: var(--grey-cold);
  text-transform: uppercase;
}
.footer-brand__tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.65rem, 0.625vw, 12px);
  color: var(--white);
}
.footer-brand__desc {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.7rem, 0.729vw, 14px);
  color: var(--white);
  line-height: 1.29;
  max-width: 337px;
}

.footer-links {
  display: grid;
  grid-template-columns: 186px 281px;
  gap: 3rem;
  justify-self: end;
  padding-top: 0.75rem;
}

.footer-col__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.75rem, 0.833vw, 16px);
  color: var(--grey-cold);
  text-transform: uppercase;
  margin-bottom: clamp(0.75rem, 1vw, 8px);
}
.footer-col__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col__list a,
.footer-col__list p,
.footer-col__list span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.65rem, 0.625vw, 12px);
  color: var(--white);
  line-height: 1.67;
}
.footer-col__list a:hover { color: var(--primary); }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.5rem, 2.5vw, 48px) var(--side-pad) 0;
  max-width: 1920px;
  margin: 0 auto;
}

.footer-copy {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.65rem, 0.625vw, 12px);
  color: var(--white);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-social a { display: block; }
.footer-social img {
  width: 32px;
  height: 32px;
}

/* -- Page Banner (inner pages) -------------------------------- */
.page-banner {
  background: var(--grey-light);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.page-banner .container {
  padding: 0 var(--side-pad);
  max-width: 1920px;
  margin: 0 auto;
}
.page-banner__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 3.75vw, 72px);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--black);
}

/* -- Page Intro (subtitle under banner) ----------------------- */
.page-intro {
  padding: 60px 0;
}
.page-intro + * {
  padding-top: 0 !important;
}
.page-intro .container {
  max-width: 1920px;
  padding: 0 var(--side-pad);
  margin: 0 auto;
}
.page-intro__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1.25rem, 2.56vw, 30px);
  line-height: calc(38 / 30);
  color: var(--grey-warm);
  max-width: 780px;
}

/* -- CTA Section (shared "Har du spÃ¸rgsmÃ¥l" / "Klar til at komme igang?") -- */
.cta-section {
  padding: var(--sec-gap) 0;
  text-align: center;
}
.cta-section__eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.833vw, 16px);
  color: var(--grey-cold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.cta-section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 3.75vw, 72px);
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.cta-section__btn {
  margin-top: clamp(1rem, 2.5vw, 48px);
}

/* ============================================================
   HOMEPAGE (index.html)
   ============================================================ */

/* -- Hero ------------------------------------------------------ */
.hero {
  position: relative;
  min-height: clamp(600px, 53.75vw, 1032px);
  background: url('../img/hero-bg.png') center top / cover no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(3rem, 5.625vw, 108px);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 110% 80% at 50% 50%,
    rgba(53,53,62,0.45) 0%,
    rgba(53,53,62,0.70) 60%,
    rgba(53,53,62,0.88) 100%
  );
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 var(--side-pad);
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}

.hero__content { flex: 1; }

.hero__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.75rem, 0.833vw, 16px);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(4rem, 8.125vw, 156px);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: clamp(1rem, 2.5vw, 48px);
  margin-left: -10px;
}

.hero__sub {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1rem, 1.04vw, 20px);
  line-height: 1.4;
  color: var(--white);
  max-width: 479px;
}

.hero__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  flex-shrink: 0;
  align-items: center;
}

/* -- Activity Cards (homepage) -------------------------------- */
.activity-cards {
  padding: var(--sec-gap) 0;
}
.activity-cards .container {
  max-width: 1920px;
  padding: 0 var(--side-pad);
  margin: 0 auto;
}
.activity-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 48px);
}

.act-card {
  background: var(--grey-light);
  position: relative;
  display: flex;
  flex-direction: column;
}
.act-card__img {
  width: 100%;
  aspect-ratio: 352 / 259;
  overflow: hidden;
  position: relative;
}
.act-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.act-card:hover .act-card__img img { transform: scale(1.04); }

.act-card__body {
  padding: clamp(1rem, 1.25vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}
.act-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 1.5625vw, 30px);
  text-transform: uppercase;
  color: var(--secondary);
}
.act-card__schedule {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.75rem, 0.729vw, 14px);
  color: var(--primary);
  text-transform: uppercase;
}
.act-card__more {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(0.75rem, 0.729vw, 14px);
  color: var(--grey-warm);
  text-transform: uppercase;
  margin-top: auto;
}

/* -- Nature / "" section ----------------------------- */
.nature-section {
  position: relative;
  min-height: clamp(400px, 32vw, 615px);
  background: url('../img/image-walkers.png') center -20em / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.nature-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}
.nature-section__inner {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 6.25vw, 120px) var(--side-pad);
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}
.nature-section__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.75rem, 0.833vw, 16px);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.nature-section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 3.75vw, 72px);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: clamp(1.5rem, 3vw, 57px);
}

/* -- News / Updates Section ----------------------------------- */
.news-section {
  padding: var(--sec-gap) 0;
}
.news-section .container {
  max-width: 1920px;
  padding: 0 var(--side-pad);
  margin: 0 auto;
}
.news-section__header {
  margin-bottom: clamp(1.5rem, 3.125vw, 60px);
}
.news-section__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.75rem, 0.833vw, 16px);
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.news-section__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.news-section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 3.75vw, 72px);
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
}
.news-section__all {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.75rem, 0.833vw, 16px);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.news-section__all:hover { opacity: 0.75; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 48px);
}

.news-card {
  background: var(--grey-light);
  padding: clamp(1rem, 0.833vw, 16px);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 0.833vw, 16px);
  height: 196px;
}
.news-card__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.7rem, 0.729vw, 14px);
  color: var(--primary);
  text-transform: uppercase;
}
.news-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1rem, 1.25vw, 24px);
  line-height: 1.17;
  text-transform: uppercase;
  color: var(--secondary);
  flex: 1;
}
.news-card__date {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(0.7rem, 0.729vw, 14px);
  color: var(--grey-warm);
  line-height: 1.14;
}
.news-card__more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.news-card__more span {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(0.7rem, 0.729vw, 14px);
  color: var(--primary);
  text-transform: uppercase;
}
.news-card__more img { width: 10px; height: 10px; }

/* ============================================================
   JURA PAGE (jura.html)
   ============================================================ */
.doc-cards-section {
  padding: var(--sec-gap) 0 0;
}
.doc-cards-section .container {
  max-width: 1920px;
  padding: 0 var(--side-pad);
  margin: 0 auto;
}
.doc-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 48px) clamp(1rem, 2.708vw, 52px);
}

.doc-card {
  background: var(--grey-light);
  display: flex;
  gap: 1rem;
  padding: 1rem;
  min-height: 176px;
}
.doc-card__icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 0.5rem;
}
.doc-card__icon {
  background: var(--primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.doc-card__icon img { width: 16px; height: 20px; filter: brightness(0) invert(1); }

.doc-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
  padding: 0.75rem 0;
}
.doc-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1rem, 1.25vw, 24px);
  line-height: 1.17;
  text-transform: uppercase;
  color: var(--secondary);
}
.doc-card__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.8rem, 0.833vw, 16px);
  color: var(--grey-warm);
  line-height: 1.25;
  flex: 1;
}
.doc-card__download {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.8rem, 0.833vw, 16px);
  color: var(--primary);
  text-transform: uppercase;
  margin-top: auto;
  padding-top: clamp(0.75rem, 2vw, 1.25rem);
}
.doc-card__download:hover { opacity: 0.75; }

/* ============================================================
   TRÃ†NING PAGE (traening.html)
   ============================================================ */
.schedule-section {
  padding: var(--sec-gap) 0 0;
}
.schedule-section .container {
  max-width: 1920px;
  padding: 0 var(--side-pad);
  margin: 0 auto;
}
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2.5vw, 48px);
}

.schedule-row {
  background: var(--grey-light);
  display: flex;
  align-items: center;
  min-height: 116px;
  padding: 0.5rem 1rem;
}
.schedule-row__inner {
  display: grid;
  grid-template-columns: minmax(60px, auto) auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.75rem, 1.8vw, 40px);
  width: 100%;
  padding: 0.75rem 0;
}
.schedule-row__day {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1rem, 1.25vw, 24px);
  color: var(--primary);
  text-transform: uppercase;
  min-width: clamp(60px, 6vw, 92px);
}
.schedule-row__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.schedule-row__meta img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.schedule-row__meta span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.04vw, 20px);
  color: var(--secondary);
  white-space: nowrap;
}
.schedule-row__type {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.9rem, 1.04vw, 20px);
  color: var(--secondary);
  text-transform: uppercase;
  margin-left: auto;
  white-space: nowrap;
}

/* ============================================================
   BESTYRELSE PAGE (bestyrelse.html)
   ============================================================ */
.board-section {
  padding: var(--sec-gap) 0 0;
}
.board-section .container {
  max-width: 1920px;
  padding: 0 var(--side-pad);
  margin: 0 auto;
}
.board-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 48px) clamp(1rem, 2.708vw, 52px);
}

.board-card {
  background: var(--grey-light);
  padding: 1rem;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  justify-content: center;
}
.board-card__role {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.8rem, 0.833vw, 16px);
  color: var(--primary);
  text-transform: uppercase;
}
.board-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1rem, 1.25vw, 24px);
  line-height: 1.17;
  text-transform: uppercase;
  color: var(--secondary);
}
.board-card__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.25rem;
}
.board-card__contact img { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }
.board-card__contact span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.8rem, 0.833vw, 16px);
  color: var(--grey-warm);
}

/* ============================================================
   AKTIVITETER PAGE (aktiviteter.html)
   ============================================================ */
.act-detail-section {
  padding: var(--sec-gap) 0 0;
}
.act-detail-section .container {
  max-width: 1920px;
  padding: 0 var(--side-pad);
  margin: 0 auto;
}
.act-detail-list {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 2.708vw, 52px);
}

.act-detail {
  display: flex;
  align-items: flex-start;
  gap: clamp(2rem, 3.75vw, 72px);
  padding: 1rem;
  background: var(--white);
}
.act-detail--reverse { flex-direction: row-reverse; }

.act-detail__img {
  flex-shrink: 0;
  width: clamp(200px, 27.5vw, 352px);
  height: clamp(180px, 20.25vw, 259px);
  overflow: hidden;
  position: relative;
}
.act-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.act-detail__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 0.75rem 0;
  align-self: stretch;
  justify-content: flex-start;
}
.act-detail__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 3.75vw, 72px);
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
}
.act-detail__schedule {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.75rem, 0.833vw, 16px);
  color: var(--primary);
  text-transform: uppercase;
  padding: 1rem 0;
}
.act-detail__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.04vw, 20px);
  color: var(--grey-warm);
  line-height: 1.4;
}
.act-detail__more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-top: 0.75rem;
}
.act-detail__more span {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(0.7rem, 0.729vw, 14px);
  color: var(--primary);
  text-transform: uppercase;
}
.act-detail__more img { width: 10px; height: 10px; }

/* Events / Arrangementer */
.events-section {
  padding: var(--sec-gap) 0;
}
.events-section .container {
  max-width: 1920px;
  padding: 0 var(--side-pad);
  margin: 0 auto;
}
.events-section__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.75rem, 0.833vw, 16px);
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.events-section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 3.75vw, 72px);
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: clamp(1.5rem, 3.125vw, 60px);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.667vw, 32px);
}
.event-row {
  background: var(--grey-light);
  display: flex;
  align-items: center;
  min-height: 116px;
  padding: 0.5rem 1rem;
}
.event-row__inner {
  display: grid;
  grid-template-columns: minmax(60px, auto) auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.75rem, 1.8vw, 40px);
  width: 100%;
  padding: 0.75rem 0;
}
.event-row__day {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1rem, 1.25vw, 24px);
  color: var(--primary);
  text-transform: uppercase;
  min-width: clamp(60px, 6vw, 92px);
}
.event-row__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.event-row__meta img { width: 22px; height: 22px; object-fit: contain; }
.event-row__meta span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.04vw, 20px);
  color: var(--secondary);
  white-space: nowrap;
}
.event-row__type {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.9rem, 1.04vw, 20px);
  color: var(--secondary);
  text-transform: uppercase;
  margin-left: auto;
  white-space: nowrap;
  text-align: right;
}

/* Last meta (location) truncates instead of wrapping the row */
.schedule-row__meta:last-of-type,
.event-row__meta:last-of-type { min-width: 0; flex-shrink: 1; }
.schedule-row__meta:last-of-type img,
.event-row__meta:last-of-type img { flex-shrink: 0; }
.schedule-row__meta:last-of-type span,
.event-row__meta:last-of-type span { min-width: 0; overflow: hidden; text-overflow: ellipsis; }

/* -- Social band (FÃ¸lg os) ------------------------------------ */
.social-section {
  position: relative;
  min-height: clamp(380px, 30vw, 560px);
  background: url('../img/image-runners.png') center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.social-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}
.social-section__inner {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 6.25vw, 120px) var(--side-pad);
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}
.social-section__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.75rem, 0.833vw, 16px);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.social-section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 3.75vw, 72px);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.social-section__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.04vw, 20px);
  color: var(--white);
  line-height: 1.5;
  max-width: 560px;
  margin-bottom: clamp(1.5rem, 3vw, 48px);
}
.social-section__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  height: 56px;
  padding: 0 1.5rem;
  border-radius: 8px;
  border: 1.5px solid var(--white);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.875rem, 0.833vw, 16px);
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.social-link img { width: 22px; height: 22px; }
.social-link:hover { opacity: 0.8; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  :root { --side-pad: clamp(1.25rem, 5vw, 60px); }
}

.nav-contact-link { display: none; }

@media (max-width: 1024px) {
  .site-header__nav { gap: 1.25rem; }
  .doc-cards-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr; }
  .act-detail { flex-direction: column !important; }
  .act-detail__img { width: 100%; max-width: 100%; height: auto; aspect-ratio: 352/259; }
}

@media (max-width: 900px) {
  .activity-cards__grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { height: auto; min-height: 0; }
  .news-card__title { flex: 0 0 auto; }
  .schedule-row__inner { gap: 1rem; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; margin-top: 1rem; }
}

@media (max-width: 768px) {
  :root { --side-pad: 1.25rem; --header-h: 72px; }

  /* Header grows to fit the logo instead of clipping it against a fixed box */
  .site-header { height: auto; min-height: var(--header-h); padding: 1.25rem 0; }
  .site-header__inner { height: auto; align-items: flex-start; }
  .hamburger { margin-top: 0.6rem; }

  /* Nav collapse */
  .site-header__nav { display: none; flex-direction: column; align-items: flex-start; }
  .site-header__nav.open { display: flex; }
  .site-header__cta { display: none; }
  .hamburger { display: flex; }

  /* Mobile nav overlay â€” full viewport */
  .site-header--mobile-open .site-header__inner { flex-wrap: wrap; }
  .site-header--mobile-open .site-header__nav {
    display: flex;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--secondary);
    padding: calc(130px + 2.75rem) var(--side-pad) 2rem;
    gap: 0;
    z-index: 200;
    justify-content: flex-start;
    overflow-y: auto;
  }
  .site-header--mobile-open .site-header__nav a {
    width: 100%;
    padding: 1.1rem 0;
    font-size: clamp(1.5rem, 6vw, 28px);
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .site-header--mobile-open .site-header__nav .nav-contact-link { display: block; }
  .site-header--mobile-open .hamburger { position: relative; z-index: 201; }
  .site-header--mobile-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header--mobile-open .hamburger span:nth-child(2) { opacity: 0; }
  .site-header--mobile-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero */
  .hero { min-height: 125vw; }
  .hero__inner { flex-direction: column; align-items: flex-start; gap: 1.75rem; }
  .hero__actions { flex-wrap: nowrap; gap: 0.75rem; width: auto; }
  .hero__actions .btn { flex: 0 0 auto; min-width: 0; padding: 0 1.25rem; }
  .hero__title { font-size: clamp(2.5rem, 11vw, 80px); }
  .hero__label { font-size: clamp(0.75rem, 2.2vw, 16px); }
  .hero__sub { font-size: clamp(0.9375rem, 2.4vw, 20px); }

  /* Activity cards” never 2-up (avoids a dangling 3rd card) */
  .activity-cards__grid { grid-template-columns: 1fr; }

  /* Schedule & event rows: day header time/date/place ’ category, each on its own line */
  .schedule-row__inner,
  .event-row__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1.25rem;
  }
  .schedule-row__day,
  .event-row__day { width: 100%; min-width: 0; margin-bottom: 0.25rem; }
  .schedule-row__type,
  .event-row__type { width: 100%; text-align: left; margin-left: 0; margin-top: 0.25rem; }

  /* Doc cards */
  .doc-cards-grid { grid-template-columns: 1fr; }

  /* Board */
  .board-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-links { grid-template-columns: 1fr; gap: 1.5rem; }
  .site-footer__bottom { flex-direction: column; gap: 1rem; align-items: flex-start; }
}

@media (max-width: 480px) {
  .activity-cards__grid { grid-template-columns: 1fr; }
}

