@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Manrope:wght@400;500;700&display=swap");

:root {
  --ww-bg-950: #0a0d12;
  --ww-bg-900: #11161f;
  --ww-bg-850: #171e29;
  --ww-surface: #1b2432;
  --ww-surface-alt: #222d3d;
  --ww-ink: #e7ecf4;
  --ww-muted: #adb8ca;
  --ww-accent: #d9a25d;
  --ww-accent-soft: #b3884f;
  --ww-line: rgba(231, 236, 244, 0.14);
  --ww-line-strong: rgba(231, 236, 244, 0.2);
  --ww-radius: 16px;
  --ww-shadow: 0 14px 38px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ww-ink);
  background:
    radial-gradient(70rem 32rem at 15% -12%, rgba(217, 162, 93, 0.13), transparent 62%),
    radial-gradient(62rem 30rem at 90% 0%, rgba(93, 124, 165, 0.14), transparent 66%),
    linear-gradient(180deg, var(--ww-bg-950), var(--ww-bg-900) 45%, var(--ww-bg-850));
  background-attachment: fixed;
  font-family: Manrope, "Trebuchet MS", sans-serif;
  line-height: 1.64;
  letter-spacing: 0.01em;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
.ww-brand {
  font-family: "Barlow Condensed", Manrope, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
}

h1,
h2 {
  text-wrap: balance;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

p,
li,
label,
input,
textarea,
select {
  color: inherit;
}

.ww-shell {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.ww-site-header .ww-shell {
  width: min(1120px, 90vw);
  padding-inline: 0;
}

.ww-site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(10, 13, 18, 0.92), rgba(17, 22, 31, 0.82));
  border-bottom: 1px solid var(--ww-line);
}

.ww-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 4.8rem;
  padding: 0.95rem 0;
  gap: 1rem;
}

.ww-brand {
  text-decoration: none;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  color: #f4f7fc;
}

.ww-brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.ww-brand .custom-logo {
  width: auto;
  max-width: 220px;
  max-height: 56px;
}

.ww-brand-text {
  display: inline-flex;
  align-items: center;
}

.ww-menu-toggle {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  border: 1px solid var(--ww-line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
}

.ww-menu-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.ww-header-nav-wrap {
  display: contents;
}

.ww-nav {
  list-style: none;
  display: flex;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

.ww-nav a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #d8deea;
  font-weight: 500;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.ww-nav a:hover,
.ww-nav a:focus-visible {
  border-color: var(--ww-line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.ww-nav .current-menu-item > a,
.ww-nav .current-menu-ancestor > a,
.ww-nav .current_page_item > a,
.ww-nav .current_page_parent > a {
  border-color: rgba(217, 162, 93, 0.7);
  background: rgba(217, 162, 93, 0.12);
  color: #ffffff;
}

/* main.ww-shell {
  padding: 2.25rem 0 3.2rem;
} */

.ww-page-title {
  margin: 0 0 1.6rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  color: #ffffff;
}

.ww-grid {
  display: grid;
  gap: 1.2rem;
}

.ww-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ww-card,
.ww-block {
  background: linear-gradient(165deg, rgba(34, 45, 61, 0.7), rgba(27, 36, 50, 0.9));
  border: 1px solid var(--ww-line);
  border-radius: var(--ww-radius);
  padding: 1.15rem;
  box-shadow: var(--ww-shadow);
  display: flex;
  flex-direction: column;
}

.ww-card > p:last-of-type,
.ww-card > a:last-child,
.ww-card > a:last-of-type {
  margin-top: auto;
}

.ww-block {
  margin-bottom: 1.4rem;
}

.ww-editor-placeholder {
  margin-bottom: 1.4rem;
  padding: 1rem 1.1rem;
  border: 1px dashed rgba(217, 162, 93, 0.55);
  border-radius: var(--ww-radius);
  background: rgba(15, 20, 25, 0.32);
  color: #d9e1ef;
}

.ww-editor-placeholder strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #ffffff;
}

.ww-editor-placeholder p {
  margin: 0;
}

.ww-block-plain {
  margin-bottom: 1.4rem;
}

.ww-block-plain.ww-upcoming {
  border-top: 1px solid rgba(217, 162, 93, 0.45);
  padding-top: 0.9rem;
}

.ww-upcoming {
  border-color: rgba(217, 162, 93, 0.35);
}

.ww-upcoming h2 {
  margin-top: 0;
  color: #f8e3c8;
}

.ww-card h3,
.ww-card h2,
.ww-block h2 {
  margin-top: 0;
  color: #ffffff;
}

.ww-content {
  color: #d9e1ef;
}

.ww-content a {
  color: #f0c489;
}

.ww-content a:hover,
.ww-content a:focus-visible {
  color: #ffe4bf;
}

.ww-button {
  display: inline-block;
  padding: 0.7rem 1.08rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 162, 93, 0.55);
  text-decoration: none;
  color: #fff8ef;
  background: linear-gradient(135deg, #8f673d, #b1834b);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease, background-color 180ms ease;
}

.ww-button:hover,
.ww-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.07);
}

.ww-price {
  font-family: "Barlow Condensed", Manrope, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #f2cb99;
  letter-spacing: 0.03em;
  margin: 0.2rem 0 0.7rem;
}

.ww-status {
  display: inline-block;
  padding: 0.23rem 0.72rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ww-status-i_salg {
  color: #daf8ea;
  background: rgba(49, 123, 96, 0.72);
}

.ww-status-faa_tilbage {
  color: #fff3d9;
  background: rgba(148, 112, 52, 0.78);
}

.ww-status-udsolgt {
  color: #ffe7ea;
  background: rgba(130, 56, 68, 0.78);
}

.ww-status-ikke_i_salg {
  color: #d1d8e3;
  background: rgba(88, 102, 124, 0.65);
}

.ww-schedule {
  border: 1px solid var(--ww-line);
  border-radius: calc(var(--ww-radius) - 2px);
  padding: 0.4rem 0.9rem;
  background: rgba(12, 17, 25, 0.52);
}

.ww-schedule-row {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 1rem;
  border-bottom: 1px solid rgba(231, 236, 244, 0.12);
  padding: 0.75rem 0;
}

.ww-schedule-row:last-child {
  border-bottom: 0;
}

.ww-schedule-row > :first-child {
  font-family: "Barlow Condensed", Manrope, sans-serif;
  color: #f1d4ac;
  letter-spacing: 0.03em;
}

.ww-hero-image {
  margin-bottom: 1.25rem;
  border-radius: var(--ww-radius);
  overflow: hidden;
  border: 1px solid var(--ww-line);
}

.ww-hero-image img,
.ww-card > a > img,
.ww-media img,
.ww-media video {
  width: 100%;
  object-fit: cover;
}

.ww-kicker {
  margin-top: -0.35rem;
  font-weight: 700;
  color: #c8d2e0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ww-meta-grid {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--ww-muted);
}

.ww-hidden-artist {
  border-radius: calc(var(--ww-radius) - 4px);
  border: 1px dashed rgba(217, 162, 93, 0.45);
  padding: 1rem;
  background: rgba(217, 162, 93, 0.08);
}

.ww-hidden-artist h3 {
  font-size: 0.94rem;
  color: #f4ddbe;
  margin: 0 0 0.5rem;
}

[data-ww-countdown] {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-family: "Barlow Condensed", Manrope, sans-serif;
  color: #f3d1a0;
}

.ww-next-event-countdown {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ww-countdown-boxes {
  display: grid;
  grid-template-columns: repeat(4, minmax(78px, 1fr));
  gap: 0.7rem;
  width: min(100%, 540px);
  margin: 0;
}

.ww-countdown-box {
  border: 1px solid rgba(217, 162, 93, 0.38);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(217, 162, 93, 0.18), rgba(217, 162, 93, 0.06));
  display: grid;
  place-items: center;
  gap: 0.22rem;
  padding: 0.65rem 0.5rem;
  min-height: 86px;
  box-shadow: inset 0 0 0 1px rgba(255, 241, 218, 0.08);
}

.ww-countdown-box strong {
  font-size: clamp(1.45rem, 3.6vw, 2rem);
  line-height: 1;
  color: #ffe3bf;
  letter-spacing: 0.02em;
}

.ww-countdown-box small {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #d9b07f;
}

.ww-countdown-boxes.is-expired {
  display: block;
  text-align: center;
  font-size: 1.1rem;
}

.ww-media {
  padding: 0;
  border-color: var(--ww-line);
}

.ww-gallery-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  width: 100%;
  display: block;
  cursor: zoom-in;
}

.ww-event-gallery-grid .ww-media {
  overflow: hidden;
}

.ww-event-gallery-grid .ww-gallery-trigger img {
  transition: transform 260ms ease;
}

.ww-event-gallery-grid .ww-gallery-trigger:hover img,
.ww-event-gallery-grid .ww-gallery-trigger:focus-visible img {
  transform: scale(1.03);
}

.ww-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.ww-gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.ww-gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 9, 0.86);
  backdrop-filter: blur(4px);
}

.ww-gallery-lightbox-dialog {
  position: relative;
  width: min(92vw, 1200px);
  height: min(86vh, 820px);
  margin: max(4vh, 24px) auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.ww-gallery-lightbox-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
}

.ww-gallery-lightbox-image {
  max-width: 100%;
  max-height: min(76vh, 760px);
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.45);
}

.ww-gallery-lightbox-counter {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(8, 11, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f5d9b5;
  font-size: 0.86rem;
}

.ww-gallery-lightbox-close,
.ww-gallery-lightbox-nav {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 19, 27, 0.8);
  color: #f5e2c8;
  border-radius: 999px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.5rem;
}

.ww-gallery-lightbox-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
}

.ww-lightbox-open {
  overflow: hidden;
}

.ww-media img,
.ww-media video {
  border-radius: inherit;
}

ul {
  padding-left: 1.1rem;
}

li::marker {
  color: rgba(217, 162, 93, 0.9);
}

.ww-site-footer {
  border-top: 1px solid var(--ww-line);
  background: rgba(10, 13, 18, 0.66);
  padding: 1.7rem 0;
  color: var(--ww-muted);
}

.ww-footer-inner {
  width: 100%;
}

.ww-footer-grid {
  display: grid;
  gap: 1rem;
  width: 100%;
  justify-items: center;
  text-align: center;
}

.ww-footer-top,
.ww-footer-bottom {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  width: 100%;
}

.ww-footer-meta {
  display: grid;
  gap: 0.35rem;
  color: var(--ww-muted);
  justify-items: center;
}

.ww-footer-meta p,
.ww-footer-meta address {
  margin: 0;
  font-style: normal;
}

.ww-footer-links,
.ww-footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ww-footer-link,
.ww-footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #f4f7fc;
  text-decoration: none;
}

.ww-footer-link:hover,
.ww-footer-link:focus-visible,
.ww-footer-social-link:hover,
.ww-footer-social-link:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.ww-social-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.ww-footer-branding {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
}

.ww-footer-brand {
  font-size: 1.2rem;
}

.ww-footer-copy {
  margin: 0;
}

.ww-footer-nav {
  flex-wrap: wrap;
  justify-content: center;
}

.ww-footer-credit {
  width: 100%;
  display: flex;
  justify-content: center;
}

.ww-footer-credit p {
  margin: 0;
}

.ww-site-footer p {
  margin: 0;
}

.ww-card,
.ww-block {
  animation: ww-fade-up 380ms ease both;
}

@keyframes ww-fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .ww-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ww-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .ww-site-header {
    position: static;
  }

  .ww-grid-3,
  .ww-schedule-row {
    grid-template-columns: 1fr;
  }

  .ww-countdown-boxes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ww-header-inner {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: unset;
  }

  .ww-menu-toggle {
    display: inline-flex;
    align-self: center;
  }

  .ww-header-nav-wrap {
    display: block;
    width: 100%;
  }

  .ww-footer-top,
  .ww-footer-bottom {
    width: 100%;
    justify-items: center;
  }

  .ww-site-header .ww-shell {
    padding-inline: 1rem;
  }

  .ww-header-nav {
    width: 100%;
    gap: 0.4rem;
    justify-content: flex-start;
    display: none;
    margin-top: 0.5rem;
  }

  .ww-site-header.is-menu-open .ww-header-nav {
    display: flex;
    flex-direction: column;
  }

  .ww-site-header.is-menu-open .ww-menu-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .ww-site-header.is-menu-open .ww-menu-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .ww-site-header.is-menu-open .ww-menu-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .ww-footer-nav {
    justify-content: center;
  }

  .ww-nav {
    gap: 0.4rem;
  }

  .ww-nav a {
    min-height: 2rem;
    padding: 0.28rem 0.7rem;
  }

  .ww-header-nav a {
    width: 100%;
  }

  .ww-card,
  .ww-block {
    padding: 1rem;
  }

  .ww-gallery-lightbox-dialog {
    width: 94vw;
    height: 86vh;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 0.7rem;
  }

  .ww-gallery-lightbox-nav {
    width: 100%;
    height: 40px;
    border-radius: 10px;
  }

  .ww-gallery-lightbox-close {
    top: 0;
    right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
