/******************************************************** FONTE: DESKTOP, LAPTOP, TABLET & MOBILE ********************************************************/

/* HelveticaNow Medium */
@font-face {
    font-family: 'HelveticaNow';
    src: url('../fonts/HelveticaNowTextMedium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

/* HelveticaNow Regular */
@font-face {
    font-family: 'HelveticaNow';
    src: url('../fonts/HelveticaNowTextRegular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
 
/* Grundlæggende reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Rød prik der er tilføjet cursor */
.cursor-dot {
    width: 23px;
    height: 23px;
    background-color: #212121;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

/* Baggrundsfarve  */
body, header, footer {
    background-color: #f3f3ef;
}
 
/* Basis typografi for websitet */
body {
    font-family: 'HelveticaNow', Arial, sans-serif;
    font-weight: 400;
    color: #212121;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Overskrifter */
h1, h2, h3, h4, h5, h6 {
    font-family: 'HelveticaNow', Arial, sans-serif;
    font-weight: 500;
    color: #212121;
}

/* Links */
a {
    color: #212121;
    text-decoration: none;
}

a:hover {
    color: #212121;
    text-decoration: none;
}

/******************************************************** HEADER: DESKTOP, LAPTOP, TABLET & MOBILE ********************************************************/

/* Header (fixed) */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
  }
  
  /* Skjul headeren når 'header-hidden' klassen er aktiv */
  header.header-hidden {
    transform: translateY(-100%);
  }
  
  .header-content {
    display: flex;
    align-items: center;
    padding: 25px 0;
  }
  
  .header-logo {
    font-family: 'HelveticaNow', Arial, sans-serif;
    font-weight: 500;
    color: #212121;
    display: flex;
    align-items: baseline;
    position: relative;
    z-index: 1002;
  }
  
  /* Selve (R) symbolet */
  .logo-reg {
    font-size: 0.45em;
    font-style: normal;
    line-height: 0;
    margin-left: 2px;
    position: relative;
    top: -0.5em;
  }

  /********************************************************
    DESKTOP/LAPTOP TOP MENU (visible)
  ********************************************************/
  
  /* Skjul desktop-nav som default (mobile/tablet) */
  .header-nav {
    display: none;
  }
  
  .header-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
  }
  
  .header-nav a {
    color: #212121;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 0px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.25s ease;
  }
  
  .header-nav a:hover {
    border-bottom-color: transparent;
  }
  
  /* Fra laptop og op: vis menuen oppe til højre */
  @media screen and (min-width: 768px) {
    .header-content {
      justify-content: space-between;
    }
  
    .header-nav {
      display: flex;
      margin-left: auto;
      justify-content: flex-end;
    }
  
    /* Skjul DK/EN knappen på laptop+ */
    .header-buttons {
      display: none !important;
    }
  
    /* Skjul burger på laptop+ */
    .burger-menu-wrapper {
      display: none !important;
    }
  
    /* Skjul overlay menu på laptop+ */
    .mobile-menu {
      display: none !important;
    }
  }
    /* Streg under menupunkter */
  .header-nav a.active {
    border-bottom-color: transparent;
  }
  
/* Streg under menupunkter 
  .header-nav a {
    padding-bottom: 2px !important;
  }
    */

    .header-nav a.header-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 500;
        line-height: 1;
        border-radius: 50%;
        border: 1px solid #212121;
        background: transparent;
        cursor: pointer;
        color: #212121 !important;
        text-decoration: none;
        isolation: isolate;
        z-index: 0;
        transition: transform .15s ease;
    }
    
    .header-nav a.header-cta:hover {
        transform: translateY(0px);
        color: #f3f3ef !important;
        background-color: #212121;
    }
    
    .header-nav a.header-cta:visited,
    .header-nav a.header-cta:focus,
    .header-nav a.header-cta:active {
        color: #f3f3ef !important;
    }
    
    body.scrolled-bottom .header-nav a.header-cta {
        background: transparent;
        color: #f3f3ef !important;
        border: 1px solid #f3f3ef;
    }

/********************************************************
  BURGER + MOBILE MENU OVERLAY (DESKTOP FADE ANIMATION)
********************************************************/

/* 1. LOGO & BURGER FARVE + STØRRELSE */
.header-content:has(.mobile-menu.active) a .header-logo {
    color: #b9b2fd !important;
    z-index: 2001; /* Sikrer logoet er øverst */
}

.burger-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    z-index: 2000;
    cursor: pointer;
    position: relative;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 12px;
    transition: transform 0.3s ease;
}

.burger-icon {
    width: 100%;
    height: 2px;
    background-color: #212121; /* Sort streg når menu er lukket */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Gør krydset lysegråt når menuen er åben */
.burger-menu.active .burger-icon {
    background-color: #b9b2fd !important;
}

.burger-menu.active .burger-icon:first-child {
    transform: rotate(45deg) translate(4px, 3px);
}

.burger-menu.active .burger-icon:last-child {
    transform: rotate(-45deg) translate(4px, -3px);
}

/* 2. SELVE MENU OVERLAYET (Nu med Fade-effekt ligesom desktop) */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    padding: 80px 25px 40px 25px; 
    background-color: #212121;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;    
    justify-content: flex-start; 
    
    /* Animation: Fade ind i stedet for rulle ned */
    opacity: 0;
    visibility: hidden;
    transition: opacity 420ms cubic-bezier(0.25, 1, 0.5, 1), visibility 420ms;
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

/* 3. NAVIGATION LINKS (Snappy & Smooth fade) */
.mobile-nav {
    width: 100%;
    margin-bottom: 40px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.mobile-nav ul li {
    opacity: 0;
    transform: translateY(12px);
    transition: 
      opacity 420ms cubic-bezier(0.25, 1, 0.5, 1),
      transform 450ms cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-menu.active .mobile-nav ul li {
    opacity: 1;
    transform: translateY(0);
}

/* Forsinkelse (Stagger) - gør at de popper ind én efter én */
.mobile-menu.active .mobile-nav ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav ul li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav ul li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav ul li:nth-child(4) { transition-delay: 0.4s; }

.mobile-nav ul li a {
    font-size: 32px;
    font-weight: 500;
    color: #b9b2fd !important;
    background: none !important;
    -webkit-text-fill-color: currentcolor !important;
}

/* 4. KONTAKT INFO (Matcher animationen) */
.mobile-contact-info {
    display: flex;
    flex-wrap: wrap; 
    width: 100%;
    color: #b9b2fd;
    margin-top: 10px;
}

.mobile-contact-info .column {
    width: 50%; 
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(12px);
    transition: 
      opacity 420ms cubic-bezier(0.25, 1, 0.5, 1),
      transform 450ms cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-contact-info .column:nth-child(3) {
    width: 100%;
}

.mobile-menu.active .mobile-contact-info .column {
    opacity: 1;
    transform: translateY(0);
}

/* Kontakt stagger (kommer lige efter links) */
.mobile-menu.active .mobile-contact-info .column:nth-child(1) { transition-delay: 0.5s; }
.mobile-menu.active .mobile-contact-info .column:nth-child(2) { transition-delay: 0.6s; }
.mobile-menu.active .mobile-contact-info .column:nth-child(3) { transition-delay: 0.7s; }

.mobile-contact-info p {
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
}

.mobile-contact-info .column p:first-of-type {
    font-weight: 500;
    margin-bottom: 6px;
    color: #b9b2fd;
}

.contact-details a {
    color: #b9b2fd;
    border-bottom: 1px solid #b9b2fd;
}

  /********************************************************
    TABLET + MOBILE tweaks
  ********************************************************/
  
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .burger-menu {
      width: 20px;
      height: 10px;
    }
  
    .burger-icon {
      height: 2px;
    }
  
    .mobile-menu {
      padding: 0 30px;
    }
  }
  
  @media (max-width: 768px) {
    .burger-menu {
      width: 25px;
      height: 13px;
    }
  
    .burger-icon {
      height: 3px;
    }
  
    .mobile-menu .mobile-nav ul li a {
      font-weight: 400;
    }
  }
  
/* FIX: sørg for at header-elementer ikke overlapper på mobile/tablet */
.header-content{
    display: flex;
    align-items: center;
    justify-content: space-between; 
  }
  
  /* Logo skal ikke skrumpe og skal holde sin plads */
  .header-content > a{
    flex: 0 0 auto;
  }
  
  /* Skub knapper/burger helt til højre */
  .header-buttons{
    margin-left: auto;
    margin-right: 16px;
  }
  
  /* Burger wrapper må ikke ryge ned oven i logoet */
  .burger-menu-wrapper{
    flex: 0 0 auto;
  }

/******************************************************** YDELSER: DESKTOP, LAPTOP, TABLET & MOBILE ********************************************************/

/* Tekst der ligger under slider overskrift på desktop, laptop og tablet */
.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.stats-box {
    display: flex;
    align-items: flex-end;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat p {
    font-weight: 400; 
    margin: 0px 0 0 0;
    display: flex;
    align-items: flex-end;
}

.description {
    text-align: left;
    display: flex;
    align-items: flex-end;
}

.description p {
    font-weight: 400; 
    margin: 0;
}

/* Tekst der ligger under slider overskrift på mobile */
@media screen and (max-width: 480px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .stats-box {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 30px;
    }

    .stats-box .stat:first-child {
        width: 40%;
    }

    .stats-box .stat:last-child {
        width: 60%;
    }

    .stats-box .stat {
        box-sizing: border-box;
        margin-bottom: 15px;
        display: block;
    }

    .description {
        width: 100%;               
    }
}

/* Tekst sektion: Desktop, laptop og tablet */
.ydelser-section {
    display: flex;
    justify-content: space-between;
    color: #212121;
}

.ydelser-right-column p {
    font-weight: 400; 
}

/* Arch billede */
.arch-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
}

/* Arch billede overlay */
.arch-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.0);
    pointer-events: none; 
    z-index: 2;
}

/* Arch billede under selve overlay */
.arch-container img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
  
/* Photo gallery 3 images in bottom */
.photo-gallery {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

/* Mobile: 3 billeder under hinanden */
@media screen and (max-width: 767px) {
    .photo-gallery {
        flex-direction: column;
        align-items: center;
    }
}

/* iPad i portrætvisning: override grid til enkelt billede */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .photo-gallery {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .photo-frame:nth-child(2) {
        width: 100%;
        margin-top: 0;
    }

    .photo-frame:nth-child(2) img {
        height: 450px !important;
        width: 100%;
        display: block;
        object-fit: cover;
    }
}

/* Animation keyframes */
@keyframes float-up-down {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.photo-frame {
    position: relative; 
    display: block;
    width: 100%;
    text-decoration: none;
    border: none;
    padding: 0;
    margin: 0;
}

/* Første billede - kortere højde, langsommere animation */
.photo-frame:nth-child(1) {
    margin-top: -30px;
    animation: float-up-down 8s ease-in-out infinite;
}

.photo-frame:nth-child(1) img {
    height: 350px;
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Andet billede - højere højde, medium hastighed animation */
.photo-frame:nth-child(2) {
    margin-top: 20px;
    animation: float-up-down 6s ease-in-out infinite;
    animation-delay: 1s; 
}

.photo-frame:nth-child(2) img {
    height: 500px;
    width: 100%;
    display: block;
    object-fit: cover;
}

/* T#212121je billede - medium højde, hurtigere animation */
.photo-frame:nth-child(3) {
    margin-top: -10px;
    animation: float-up-down 4s ease-in-out infinite;
    animation-delay: 2s;
}

.photo-frame:nth-child(3) img {
    height: 350px;
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Fix for responsivt design - bevar animation men juster spacing på mobil */
@media screen and (max-width: 767px) {
    .photo-frame {
        margin-bottom: 0px;
    }
    
    .photo-frame:last-child {
        margin-bottom: 0;
    }
}

/* Skjuler 1 og 3 billede på mobile OG tablet */
@media screen and (max-width: 1024px) {
    .photo-gallery .photo-frame:nth-child(1),
    .photo-gallery .photo-frame:nth-child(3) {
        display: none;
    }

    .photo-frame:nth-child(2) img {
        height: 300px;
        width: 100%;
        display: block;
        object-fit: cover;
    }
}

/* —————————————————————————————————————————— */
/* Overlay på photo‑frame uden at røre højde/b#212121de */
/* —————————————————————————————————————————— */

.photo-frame {
    position: relative;
}
  
.photo-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.0);
    pointer-events: none;
    z-index: 2;
}
  
.photo-frame img {
    position: relative;
    z-index: 1;
}

body.services-page {
    overflow-x: clip;
}

html:has(body.services-page) {
    overflow-x: clip;
}

/* Ret dette i din eksisterende .arch-container: */
.arch-container {
    position: relative;
    overflow: visible; 
    margin-bottom: 5px;
}

/* Runde hjørmer ved mouse over på billeder */
.arch-container img,
.photo-frame img {
    border-radius: .3rem;
    transition: border-radius 0.3s ease;
}

.arch-container:hover img,
.photo-frame:hover img {
    border-radius: 2.1rem;
}

/******************************************************** OM OS: DESKTOP, LAPTOP, TABLET & MOBILE ********************************************************/

/* =========================================================
   INTERACTIVE GRADIENT HERO
   ========================================================= */
   :root {
    --color-bg1: #f3f3ef;
    --color-bg2: #f3f3ef;
    --color1: 200, 220, 255;
    --color2: 220, 200, 255;
    --color3: 200, 230, 255;
    --color4: 180, 230, 220;
    --color5: 230, 200, 240;
    --color-interactive: 210, 200, 255;
    --circle-size: 80%;
    --blending: normal;
}

.bg-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: transparent;
    display: flex;
    flex-direction: column;
}

.bg-hero header {
    background-color: transparent;
    flex: 0 0 auto;
}

/* Content fylder resten af viewport */
.bg-hero .main-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
}

.bg-hero .main-content .container {
    flex: 1;
    position: relative;
    width: 100%;
}

/* SVG noise overlay */
.bg-hero .noiseBg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    mix-blend-mode: soft-light;
    opacity: 0.3;
}

.bg-hero .svgBlur {
    display: none;
}

/* Gradient blobs container */
.bg-hero .gradients-container {
    filter: url(#goo) blur(40px);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Individual gradient blobs */
.bg-hero .g1 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    transform-origin: center center;
    animation: moveVertical 30s ease infinite;
    opacity: 1;
}

.bg-hero .g2 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    transform-origin: calc(50% - 400px);
    animation: moveInCircle 20s reverse infinite;
    opacity: 1;
}

.bg-hero .g3 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2 + 200px);
    left: calc(50% - var(--circle-size) / 2 - 500px);
    transform-origin: calc(50% + 400px);
    animation: moveInCircle 40s linear infinite;
    opacity: 1;
}

.bg-hero .g4 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    top: calc(50% - var(--circle-size) / 2);
    left: calc(50% - var(--circle-size) / 2);
    transform-origin: calc(50% - 200px);
    animation: moveHorizontal 40s ease infinite;
    opacity: 0.7;
}

.bg-hero .g5 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: calc(var(--circle-size) * 2);
    height: calc(var(--circle-size) * 2);
    top: calc(50% - var(--circle-size));
    left: calc(50% - var(--circle-size));
    transform-origin: calc(50% - 800px) calc(50% + 200px);
    animation: moveInCircle 20s ease infinite;
    opacity: 1;
}

.bg-hero .interactive {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
    mix-blend-mode: var(--blending);
    width: 100%;
    height: 100%;
    top: -50%;
    left: -50%;
    opacity: 0.7;
}

/* Blob animations */
@keyframes moveInCircle {
    0%   { transform: rotate(0deg); }
    50%  { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}

@keyframes moveVertical {
    0%   { transform: translateY(-50%); }
    50%  { transform: translateY(50%); }
    100% { transform: translateY(-50%); }
}

@keyframes moveHorizontal {
    0%   { transform: translateX(-50%) translateY(-10%); }
    50%  { transform: translateX(50%) translateY(10%); }
    100% { transform: translateX(-50%) translateY(-10%); }
}

@media (prefers-reduced-motion: reduce) {
    .bg-hero .g1, .bg-hero .g2, .bg-hero .g3,
    .bg-hero .g4, .bg-hero .g5 {
        animation: none !important;
    }
}

/* 4 personer pr. række på desktop og laptop */
@media screen and (min-width: 768px) {
    .booking-gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }
  
    .booking-frame {
      max-width: 100%;
    }
  
    .circle-image {
      width: 100%;
      height: auto;
      display: block;
    }
}

/* 3 personer pr. række på tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .booking-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px !important;
    }
  
    .booking-frame {
      max-width: 100%;
    }
  
    .circle-image {
      width: 100%;
      height: auto;
      display: block;
    }
}

/* 2 personer pr. række på mobile */
@media screen and (max-width: 767px) {
    .booking-gallery {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 25px;
    }
  
    .booking-frame {
      max-width: 100%;
    }
  
    .circle-image {
      width: 100%;
      height: auto;
      display: block;
    }

    .team-img {
        width: 91%;
    }
}

/* Teksten under billedet, venstrestillet med 60px luft */
.booking-text {
    text-align: left;
}

/* Specifikt for overskrifter i .booking-text */
.booking-frame .booking-text h3 {
    font-family: 'HelveticaNow', Arial, sans-serif;
    font-weight: 500; 
    color: #212121;
}

/* Specifikt for paragraf-tekst i .booking-text */
.booking-frame .booking-text p {
    font-family: 'HelveticaNow', Arial, sans-serif;
    font-weight: 400; 
    color: #212121;
    margin: 0;
}

/* Responsiv til smallere skærme */
@media screen and (max-width: 767px) {
    .booking-gallery {
        flex-direction: column;
        align-items: left;
    }
}

.team-img {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.team-img > img {
    display: block;
    width: 100%;
    height: auto;
    transform: translateZ(0);
    scale: 1.12;
}

.team-img::before,
.team-img::after {
    display: none;
}

/* Person 1 — tung og langsom */
.booking-frame:nth-child(1) .team-img {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blob1 11s ease-in-out infinite alternate;
}

@keyframes blob1 {
    0%   { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    20%  { border-radius: 58% 42% 32% 68% / 68% 32% 68% 32%; }
    40%  { border-radius: 42% 58% 68% 32% / 42% 68% 32% 58%; }
    60%  { border-radius: 68% 32% 42% 58% / 30% 58% 42% 70%; }
    80%  { border-radius: 32% 68% 58% 42% / 58% 42% 70% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* Person 2 — hurtigere, starter anderledes */
.booking-frame:nth-child(2) .team-img {
    border-radius: 62% 48% 55% 42% / 44% 58% 46% 62%;
    animation: blob2 8s ease-in-out infinite alternate;
    animation-delay: -3s;
}

@keyframes blob2 {
    0%   { border-radius: 62% 48% 55% 42% / 44% 58% 46% 62%; }
    25%  { border-radius: 44% 62% 42% 58% / 60% 44% 62% 42%; }
    50%  { border-radius: 58% 44% 62% 48% / 42% 62% 44% 58%; }
    75%  { border-radius: 42% 58% 48% 62% / 62% 42% 58% 44%; }
    100% { border-radius: 62% 48% 55% 42% / 44% 58% 46% 62%; }
}

/* Person 3 — medium tempo, helt sit eget mønster */
.booking-frame:nth-child(3) .team-img {
    border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%;
    animation: blob3 13s ease-in-out infinite alternate;
    animation-delay: -7s;
}

@keyframes blob3 {
    0%   { border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%; }
    30%  { border-radius: 65% 35% 55% 45% / 55% 45% 65% 35%; }
    60%  { border-radius: 35% 65% 40% 60% / 30% 70% 55% 45%; }
    100% { border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%; }
}

/* Person 4 — langsom og drømmende */
.booking-frame:nth-child(4) .team-img {
    border-radius: 70% 30% 50% 50% / 55% 45% 55% 45%;
    animation: blob4 15s ease-in-out infinite alternate;
    animation-delay: -5s;
}

@keyframes blob4 {
    0%   { border-radius: 70% 30% 50% 50% / 55% 45% 55% 45%; }
    20%  { border-radius: 45% 55% 65% 35% / 40% 60% 35% 65%; }
    50%  { border-radius: 55% 45% 35% 65% / 65% 35% 60% 40%; }
    80%  { border-radius: 30% 70% 55% 45% / 50% 50% 45% 55%; }
    100% { border-radius: 70% 30% 50% 50% / 55% 45% 55% 45%; }
}

/* Person 5 — løs og organisk */
.booking-frame:nth-child(5) .team-img {
    border-radius: 45% 55% 60% 40% / 60% 40% 55% 45%;
    animation: blob5 10s ease-in-out infinite alternate;
    animation-delay: -2s;
}

@keyframes blob5 {
    0%   { border-radius: 45% 55% 60% 40% / 60% 40% 55% 45%; }
    25%  { border-radius: 60% 40% 45% 55% / 45% 55% 40% 60%; }
    50%  { border-radius: 38% 62% 55% 45% / 55% 45% 62% 38%; }
    75%  { border-radius: 62% 38% 40% 60% / 40% 60% 38% 62%; }
    100% { border-radius: 45% 55% 60% 40% / 60% 40% 55% 45%; }
}



/******************************************************** FOOTER: DESKTOP, LAPTOP, TABLET & MOBILE ********************************************************/

/* Footer grundlæggende indstillinger */
footer {
    color: #212121;
}

.footer-container {
    display: flex;
    justify-content: flex-start;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-heading {
    color: #212121;
    font-weight: 500;
}

.footer-container > div {
    flex: 1;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-title {
    font-weight: 500;
    color: #212121;
}

/* Footer links med hvid understregning */
.footer-column ul li a {
    color: #212121;
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid #212121;
    padding-bottom: 2px;
    transition: border-color 0.3s;
}

.footer-column ul li a:hover {
    color: #212121;
    font-weight: 400;
}    

/* Footer Bottom Grundlæggende Indstillinger */
.footer-bottom {
    border-top: 1px solid #212121;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-left {
    color: #212121;
    font-weight: 400;
}

.footer-bottom-right {
    display: flex;
}

.footer-bottom-right a {
    color: #212121;
    text-decoration: none;
    font-weight: 400;
}

.footer-bottom-right a:hover {
    color: #212121;
}

/* Footer indstillinger på tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .footer-column:nth-child(4) {
        display: none;
    }
}

/* Footer indstillinger på mobile */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-container > div {
        margin: 10px 0;
        min-width: calc(50% - 20px);
        text-align: left;
    }

    /* Specifik højremargin for København kolonnen */
    .footer-column:nth-child(2) {
        margin-left: 40px;
    }

    /* Specifik højremargin for København kolonnen */
    .footer-column:nth-child(4) {
        margin-left: 40px;
    }

    .footer-bottom {
        flex-direction: column; /* Stabler footer bottom-indhold */
        align-items: flex-start;
        margin-top: 75px;
    }

     /* Skjuler footer-bottom-right sektionen på mobile enheder */
     .footer-bottom-right {
        display: none;
    }
}

/******************************************************** FADE ANIMATION PÅ HELE SIDEN ********************************************************/

/* Fade animation */
   .fade {
    opacity: 0;
    transform: translateY(12px);
    
    transition:
      opacity 420ms cubic-bezier(0.25, 1, 0.5, 1),
      transform 450ms cubic-bezier(0.25, 1, 0.5, 1);
    
    will-change: opacity, transform;
}

.fade.is-in {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fade {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
}

/******************************************************** CUSTOM BUND FARVESKIFT ********************************************************/

/* Baggrund skifter til sort */
body.scrolled-bottom,
body.scrolled-bottom header,
body.scrolled-bottom footer {
    background-color: #212121;
}

/* Header logo og nav */
body.scrolled-bottom .header-logo {
    color: #f3f3ef;
}

body.scrolled-bottom .header-nav a {
    color: #f3f3ef;
}

body.scrolled-bottom .header-nav a.active {
    border-bottom-color: #f3f3ef;
}

body.scrolled-bottom .header-nav a:hover {
    border-bottom-color: #f3f3ef;
}

/* Burger ikon */
body.scrolled-bottom .burger-icon {
    background-color: #f3f3ef;
}

/* Cursor dot */
body.scrolled-bottom .cursor-dot {
    background-color: #f3f3ef;
}

/* Om os*/
body.scrolled-bottom .booking-text h3 {
    color: #f3f3ef;
}

body.scrolled-bottom .booking-text p {
    color: #f3f3ef;
}

/* Footer */
body.scrolled-bottom .footer-heading {
    color: #f3f3ef;
}

body.scrolled-bottom .footer-title {
    color: #f3f3ef;
}

body.scrolled-bottom .footer-column ul li {
    color: #f3f3ef;
}

body.scrolled-bottom .footer-column ul li a {
    color: #f3f3ef;
    border-bottom-color: #f3f3ef;
}

body.scrolled-bottom .footer-column address {
    color: #f3f3ef;
}

body.scrolled-bottom .footer-bottom {
    border-top-color: #f3f3ef;
}

body.scrolled-bottom .footer-bottom-left {
    color: #f3f3ef;
}

body.scrolled-bottom .footer-bottom-right a {
    color: #f3f3ef;
}

/******************************************************** MERGTON COOKIES ********************************************************/

:root{
    --mc-green:   #f3f3ef;
    --mc-cream:   #212121;
    --mc-green-60:#f3f3ef;
    --mc-green-15:#f3f3ef;
    --mc-green-08:#f3f3ef;
    --mc-sand:    #f3f3ef;
    --mc-ease:    cubic-bezier(0.25, 1, 0.5, 1);
}

.mc-consent,
.mc-consent *{box-sizing:border-box;}

/* Overlay (kun synligt når indstillinger er åbne) */
.mc-overlay{
    position:fixed;
    inset:0;
    z-index:99998;
    background:rgba(10,28,25,0.55);
    backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px);
    opacity:0;visibility:hidden;
    transition:opacity 380ms var(--mc-ease),visibility 380ms;
}
.mc-overlay.is-open{opacity:1;visibility:visible;}

/* Selve boksen */
.mc-consent{
    position:fixed;
    z-index:99999;
    left:50px;
    bottom:50px;
    width:600px;
    max-width:calc(100vw - 56px);
    background:var(--mc-cream);
    color:var(--mc-green);
    border-radius: .3rem;
    padding:30px 30px 26px;
    font-family:'HelveticaNow',Arial,sans-serif;
    opacity:0;transform:translateY(16px);
    transition:opacity 420ms var(--mc-ease),transform 450ms var(--mc-ease);
    will-change:opacity,transform;
    border:none;
    box-shadow:none;
}

@media screen and (min-width: 768px) and (max-width: 1599px){
    /* Selve boksen */
    .mc-consent{
        left:40px;
        bottom:40px;
        width:530px;
        max-width:calc(100vw - 56px);
    }
}

.mc-consent.is-in{opacity:1;transform:translateY(0);}
.mc-consent[hidden]{display:none;}

/* Når indstillinger er åbne: centrér og gør lidt bredere */
.mc-consent.is-settings{
    left:50%;
    bottom:auto;
    top:50%;
    transform:translate(-50%,-50%) scale(0.98);
    width:570px;
    max-height:93vh;
    overflow-y:auto;
}
.mc-consent.is-settings.is-in{transform:translate(-50%,-50%) scale(1);}

.mc-title{
    color:var(--mc-green);
    font-weight:500;
    margin:0 0 12px;
}

.mc-title .mc-accent{
    font-family:'HelveticaNow',Arial,sans-serif;
    font-weight:500;
    font-style:normal;
    color:var(--mc-sand);
}

.mc-text{margin:0 0 22px;color:var(--mc-green);}
.mc-text a{color:var(--mc-green);text-decoration:none;border-bottom:1px solid var(--mc-green-60);padding-bottom:1px;}
.mc-text a:hover{border-bottom-color:var(--mc-green);}

/* Knapper */
.mc-actions{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    width:100%;
}

.mc-btn{
    flex: 0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-family:inherit;
    font-weight:500;
    padding:18px 26px;
    border-radius: 50%;
    cursor:pointer;
    border:1px solid var(--mc-green);
    transition:transform .18s var(--mc-ease),background-color .25s ease,color .25s ease,opacity .25s ease;
}
.mc-btn--solid{background:var(--mc-green);color:var(--mc-cream);}
.mc-btn--ghost{background:transparent;color:var(--mc-green);}
.mc-btn--ghost:hover{background:rgba(23,61,54,0.06);}
.mc-btn:focus{outline:none;}


/* "Tilpas" link under hovedknapperne */
.mc-customize{
    display:block;
    width:100%;
    margin-top:16px;
    text-align:center;
    background:none;
    border:none;
    cursor:pointer;
    font-family:inherit;
    color:var(--mc-green-60);
    text-decoration:underline;
    text-underline-offset:3px;padding:4px;
}
.mc-customize:hover{color:var(--mc-green);}

/* ---- Indstillingspanel ---- */
.mc-categories{margin:4px 0 24px;}
.mc-cat{
    border-top:1px solid var(--mc-green-08);
    padding:18px 0;
}
.mc-cat:last-child{border-bottom:1px solid var(--mc-green-08);}
.mc-cat-head{display:flex;align-items:center;justify-content:space-between;gap:16px;}
.mc-cat-name{
    color:var(--mc-green);
    font-weight:500;
}

.mc-cat-desc{
    margin:8px 0 0;
    line-height:1.55;
    color:var(--mc-green-60);
}
.mc-locked{
    color:var(--mc-sand);
    font-weight:500;
    white-space:nowrap;
}

/* Toggle-switch */
.mc-switch{position:relative;width:48px;height:27px;flex:0 0 auto;}
.mc-switch input{position:absolute;opacity:0;width:100%;height:100%;margin:0;cursor:pointer;}
.mc-track{
    position:absolute;inset:0;border-radius:999px;
    background:#212121;
    border:1px solid var(--mc-green-15);
    transition:background-color .25s ease;
}
.mc-track::after{
    content:"";position:absolute;top:3px;left:3px;width:19px;height:19px;
    border-radius:50%;background:var(--mc-green);
    transition:transform .25s var(--mc-ease);
}
.mc-switch input:checked + .mc-track{background:var(--mc-sand);}
.mc-switch input:checked + .mc-track::after{transform:translateX(21px);background:var(--mc-cream);}
.mc-switch input:disabled + .mc-track{opacity:0.55;cursor:not-allowed;}
.mc-switch input:focus-visible + .mc-track{outline:2px solid var(--mc-green);outline-offset:2px;}

.mc-settings-foot{
    line-height:1.55;
    color:var(--mc-green-60);
    margin:0 0 20px;
}
.mc-settings-foot a{color:var(--mc-green);border-bottom:1px solid var(--mc-green-60);text-decoration:none;}

/* Mobil */
@media (max-width:520px){
    .mc-consent{
        left:14px;
        right:14px;
        bottom:14px;
        width:auto;
        max-width:none;
        padding:26px 22px 22px;
        border-radius: .3rem;
    }
    .mc-consent.is-settings{
        left:14px;
        right:14px;
        top:auto;
        bottom:14px;
        transform:translateY(16px);
        width:auto;
    }
    .mc-consent.is-settings.is-in{
        transform:translateY(0);
    }
    .mc-actions{
        flex-direction:row;
        justify-content:center;
        flex-wrap:wrap; /* så de ikke knækker grimt hvis der ikke er plads */
        align-items:center;
    }
    .mc-btn {
        width:auto;
    }
}

@media (prefers-reduced-motion:reduce){
    .mc-consent,.mc-overlay,.mc-track::after,.mc-btn{transition:none !important;}
    .mc-consent{transform:none !important;}
    .mc-consent.is-settings{transform:translate(-50%,-50%) !important;}
}

/* Cookie-boks: farveskift når man er i bunden af siden */
body.scrolled-bottom .mc-consent{
    --mc-green:    #f3f3ef;
    --mc-green-60: #f3f3ef;
    --mc-green-15: #f3f3ef;
    --mc-green-08: #f3f3ef;
    --mc-sand:     #f3f3ef;
}