/** Shopify CDN: Minification failed

Line 64:12 Expected identifier but found whitespace
Line 64:13 Unexpected "1200px"

**/
/* =========================
   HERO BASE
========================= */
.video-hero {
  position: relative;
  height: var(--hero-height-desktop, 70vh);
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

/* Media (video/billede) */
.video-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Video + billede */
.video-hero__video,
.video-hero__image,
.video-hero__picture {
  width: 100%;
  height: 100%;
  display: block;
}

.video-hero__video,
.video-hero__image {
  object-fit: cover;
}

/* Overlay */
.video-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

/* Content */
.video-hero__content {
  position: relative;
  z-index: 3;
  color: #fff;

  max-width: 1200px;
  margin: 0;
  padding-left: 6rem;
  padding-right: 2rem;

  transform: translateY(-10%);
}

  /* NYT */
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 6rem;
  padding-right: 2rem;

  /* Ryk op */
  transform: translateY(-10%);
}

/* Typography */
.video-hero__heading {
  margin: 0 0 1.2rem;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 820px;
  position: relative;
  margin-bottom: 2.5rem;
}

/* Stregen */
.video-hero__heading::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  margin-top: 1.2rem;
}

.video-hero__text {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.35vw, 1.5rem);
  line-height: 1.45;
  margin-bottom: 1.4rem;
}

.video-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   RESPONSIVE
========================= */

/* Desktop */
@media screen and (min-width: 750px) {
  .video-hero__video {
    display: block;
  }

  .video-hero__picture {
    display: none !important;
  }
}

/* Mobil */
@media screen and (max-width: 749px) {
  .video-hero {
    height: var(--hero-height-mobile, 60vh);
    min-height: 360px;
  }

  .video-hero__video {
    display: none !important;
  }

  .video-hero__picture {
    display: block !important;
  }

  .video-hero__overlay {
    background: rgba(0, 0, 0, 0.5);
  }

  .video-hero__heading {
    font-size: clamp(2.4rem, 8vw, 4rem);
  }

  .video-hero__text {
    font-size: 1.6rem;
  }

  .video-hero__button {
    width: 100%;
    min-height: 48px;
  }
}

/* =========================
   FIX OVERLAP (VIGTIG)
========================= */

/* Sørger for næste section ikke ryger op under hero */
.video-hero + .shopify-section {
  position: relative;
  z-index: 5;
}

/* =========================
   HEADER (HORIZON)
========================= */

/* Sørg for header altid ligger øverst */
.header {
  z-index: 50;
}

/* Når header bliver sticky (scroll) */
.header[data-sticky-state="active"] {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);

  --color-foreground: 0 0 0;
}

/* =========================
   MENU ACTIVE STATE
========================= */

/* Desktop */
.header__menu-item[aria-current="page"],
.list-menu__item--active {
  background: #5fc7cf;
  color: #ffffff !important;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
}

/* Mobil menu */
.menu-drawer__menu-item[aria-current="page"] {
  background: #5fc7cf;
  color: #ffffff !important;
  border-radius: 8px;
  padding: 0.8rem 1rem;
}