/*! tailwindcss v4.1.12 | MIT License | https://tailwindcss.com */
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --color-orange-500: oklch(70.5% 0.213 47.604);
    --spacing: 0.25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html,
  :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea,
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or
    (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
    }
    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field,
  ::-webkit-datetime-edit-second-field,
  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type="button"], [type="reset"], [type="submit"]),
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .relative {
    position: relative;
  }
  .col-span-4 {
    grid-column: span 4 / span 4;
  }
  .col-span-8 {
    grid-column: span 8 / span 8;
  }
  .col-span-12 {
    grid-column: span 12 / span 12;
  }
  .flex {
    display: flex;
  }
  .hidden {
    display: none;
  }
  .w-fit {
    width: fit-content;
  }
  .w-full {
    width: 100%;
  }
  .flex-col {
    flex-direction: column;
  }
  .items-center {
    align-items: center;
  }
  .justify-center {
    justify-content: center;
  }
  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }
  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }
  .gap-8 {
    gap: calc(var(--spacing) * 8);
  }
  @media (width < 64rem) {
    .max-lg\:mt-4 {
      margin-top: calc(var(--spacing) * 4);
    }
  }
  @media (width < 48rem) {
    .max-md\:mt-4 {
      margin-top: calc(var(--spacing) * 4);
    }
  }
  @media (width >= 40rem) {
    .sm\:mr-6 {
      margin-right: calc(var(--spacing) * 6);
    }
  }
  @media (width >= 40rem) {
    .sm\:ml-auto {
      margin-left: auto;
    }
  }
  @media (width >= 48rem) {
    .md\:block {
      display: block;
    }
  }
  @media (width >= 48rem) {
    .md\:grid {
      display: grid;
    }
  }
  @media (width >= 48rem) {
    .md\:grid-cols-12 {
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
  }
  @media (width >= 64rem) {
    .lg\:block {
      display: block;
    }
  }
  @media (width >= 64rem) {
    .lg\:grid {
      display: grid;
    }
  }
  @media (width >= 64rem) {
    .lg\:grid-cols-12 {
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
  }
}
:root {
  --c-orange-50: #fef7ee;
  --c-orange-100: #fcedd8;
  --c-orange-200: #f8d6b0;
  --c-orange-300: #f4b97d;
  --c-orange-400: #ef9955;
  --c-orange-500: #e97426;
  --c-orange-600: #db5b1b;
  --c-orange-700: #b54519;
  --c-orange-800: #91381b;
  --c-orange-900: #753019;
  --c-orange-950: #3f160b;
  --c-blue: #649aaf;
  --c-orange: var(--color-orange-500);
  --c-yellow: #ffe8ae;
  --c-brown: #210e00;
  --c-black: #050704;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: var(--c-black);
  color: var(--c-black);
}
main {
  width: 100%;
  max-width: 1536px;
}
h1,
h2 {
  text-transform: uppercase;
  margin-block-end: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}
:is(h1,h2)::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--c-orange-500);
}
h3 {
  font-weight: 600;
  margin-block-end: 0.5rem;
}
a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
a:hover {
  font-weight: 600;
}
button {
  cursor: pointer;
}
.about-venus .about-venus__intro {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width >= 48rem) {
  .about-venus {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
  }
  .about-venus .polaroid {
    margin-block: 0;
  }
}
.section.bezetting {
  background-color: var(--c-orange-400);
}
.section.bezetting ul {
  list-style: disc;
}
:is(.shows .shows__list) li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.polaroid {
  grid-column: span 5;
  width: 373px;
  border: 21px solid white;
  rotate: 11deg;
  margin-block: 3rem 1rem;
}
.header {
  height: 4rem;
  width: 100%;
  position: relative;
  background-color: var(--c-yellow);
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block-end: 2rem;
}
.hero {
  position: relative;
  background-color: var(--c-yellow);
  flex: 1;
}
@media (width >= 40rem) {
  .hero {
    padding: 1.5rem;
  }
}
.navigation {
  background-color: var(--c-orange-500);
  background: repeating-linear-gradient(
		45deg,
		var(--c-orange-300),
		var(--c-orange-300) 30px,
		var(--c-orange-500) 30px,
		var(--c-orange-500) 60px
	);
  padding-block: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (width >= 40rem) {
  .navigation {
    flex-direction: row;
  }
}
.navigation .navigation__wrapper {
  flex-grow: 1;
  display: flex;
  padding-inline: 1.5rem;
  justify-content: end;
  align-items: center;
}
.navigation .language-menu {
  background-color: var(--c-black);
  position: absolute;
  padding: 1rem 2rem;
  border-radius: 1rem;
  display: none;
  inset-block-start: 3rem;
  inset-inline-start: 2rem;
}
:is(.navigation .language-menu) a {
  text-decoration: none;
}
:is(:is(.navigation .language-menu) a):hover {
  font-weight: inherit;
  color: var(--c-yellow);
  text-decoration: underline;
}
@media (width >= 40rem) {
  .navigation .language-menu {
    inset-inline-end: -1.5rem;
    inset-block-start: 3.75rem;
    inset-inline-start: unset;
  }
}
.open:is(.navigation .language-menu) {
  display: block;
}
.navigation__button-bar {
  color: white;
  font-weight: 500;
  border-radius: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (width >= 40rem) {
  .navigation__button-bar {
    flex-direction: row;
    background-color: var(--c-black);
  }
}
@media (width < 40rem) {
  .navigation__button-bar {
    gap: 0.5rem;
  }
}
.navigation__button-bar .navigation__button {
  display: block;
  padding: 1.5rem;
  text-transform: uppercase;
  width: fit-content;
  text-decoration: none;
}
:is(.navigation__button-bar .navigation__button):hover {
  color: var(--c-yellow);
}
@media (width < 40rem) {
  .navigation__button-bar .navigation__button {
    background-color: var(--c-black);
    border-radius: 16px;
    padding: 1rem;
  }
}
@media (width < 40rem) {
  .navigation__button-bar .icon {
    fill: var(--c-black);
  }
}
:is(.navigation__button-bar .icon):hover {
  fill: var(--c-yellow);
}
.icon {
  flex-shrink: 0;
  fill: currentColor;
  height: 2rem;
}
.logo {
  position: relative;
  z-index: 10;
  margin-top: -177px;
  width: 100%;
}
.logo img {
  max-width: 100%;
}
@media (width >= 40rem) {
  .logo {
    width: 270px;
    margin-inline-start: 46px;
  }
}
@media (width < 40rem) {
  .logo {
    display: flex;
    justify-content: center;
  }
}
.section {
  background-color: var(--c-yellow);
  padding-block: 50px;
  padding-inline: 60px;
}
.section p {
  max-width: 70ch;
}
.promo-video {
  background-color: var(--c-blue);
}
.promo-video .promo-video__video {
  aspect-ratio: 16 / 9;
}
.promo-video .promo-video__iframe {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
}
