@charset "UTF-8";

/* Overlay: SCSBK Festival buttons + dialog + MENU + socials + a11y.
   Load after css/main.css. Does not rewrite Hintio or the looping video. */

@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

:root {
  --ink: #140c16;
  --cream: #fff6e8;
  --pink: #ff2d95;
  --pink-deep: #d41472;
  --yellow: #ffe14d;
  --yellow-deep: #f0c400;
  --orange: #ff7a18;
  --orange-deep: #e25d00;
  --green: #7cff3a;
  --green-deep: #3db70a;
  --cyan: #00f7ff;
  --cyan-deep: #007a80;
  --red: #ff5555;
  --red-deep: #8b1010;
  --focus-ring: #ffe14d;
  --social-icon: #fff6e8;
  --social-hover: #7cff3a;
}

/* ------------------------------------------------*/
/* Accessibility */
/* ------------------------------------------------*/

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 10000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px 10px;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--ink);
  font-family: "Bebas Neue", "Montserrat", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 8px 0 var(--yellow-deep), 0 12px 24px rgba(0, 0, 0, 0.28);
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 16px;
  color: var(--ink);
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[role="button"]:focus-visible,
.festival-btn:focus-visible,
.menu-trigger:focus-visible,
#menu-trigger:focus-visible,
#notify-trigger:focus-visible,
.notify-trigger-top:focus-visible,
.section-close:focus-visible,
.popup-close:focus-visible,
#menu-close:focus-visible,
.socials a:focus-visible,
.social-icon:focus-visible,
.hero-actions a:focus-visible,
.hero-actions button:focus-visible,
#social-dialog:focus-visible,
#social-dialog a:focus-visible,
#social-dialog button:focus-visible,
form.form input:focus-visible,
form.form textarea:focus-visible,
form.form button:focus-visible {
  outline: 3px solid #ffe14d;
  outline-offset: 3px;
}

.btn:focus,
.btn:focus-visible,
form input:focus,
form textarea:focus {
  outline: 3px solid #ffe14d;
  outline-offset: 3px;
}

/* ------------------------------------------------*/
/* Festival buttons */
/* ------------------------------------------------*/

.festival-btn,
a.festival-btn,
button.festival-btn {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  cursor: pointer;
  font-family: "Bebas Neue", "Montserrat", sans-serif;
  letter-spacing: 0.08em;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 400;
  line-height: 1.1;
  padding: 16px 18px 14px;
  border-radius: 18px;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 0 currentColor, 0 18px 30px rgba(0, 0, 0, 0.28);
  transform: translateY(0);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  box-sizing: border-box;
  overflow: visible;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.festival-btn:hover,
a.festival-btn:hover,
button.festival-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  color: var(--ink);
}

.festival-btn:active,
a.festival-btn:active,
button.festival-btn:active {
  transform: translateY(6px);
  box-shadow: 0 4px 0 currentColor, 0 8px 16px rgba(0, 0, 0, 0.25);
  filter: none;
}

.festival-btn.pink,
a.festival-btn.pink,
button.festival-btn.pink {
  background: var(--pink);
  color: var(--pink-deep);
}

.festival-btn.yellow,
a.festival-btn.yellow,
button.festival-btn.yellow {
  background: var(--yellow);
  color: var(--yellow-deep);
}

.festival-btn.orange,
a.festival-btn.orange,
button.festival-btn.orange {
  background: var(--orange);
  color: var(--orange-deep);
}

.festival-btn.green,
a.festival-btn.green,
button.festival-btn.green {
  background: var(--green);
  color: var(--green-deep);
}

.festival-btn.cyan,
a.festival-btn.cyan,
button.festival-btn.cyan {
  background: #00f7ff;
  color: #007a80;
}

.festival-btn.red,
a.festival-btn.red,
button.festival-btn.red {
  background: #ff5555;
  color: #8b1010;
}

.festival-btn span,
a.festival-btn span,
button.festival-btn span {
  color: var(--ink);
}

a.festival-btn:link,
a.festival-btn:visited,
a.festival-btn:hover,
a.festival-btn:active,
button.festival-btn {
  text-decoration: none;
}

a.festival-btn.pink:link,
a.festival-btn.pink:visited {
  color: var(--pink-deep);
}

a.festival-btn.yellow:link,
a.festival-btn.yellow:visited {
  color: var(--yellow-deep);
}

a.festival-btn.orange:link,
a.festival-btn.orange:visited {
  color: var(--orange-deep);
}

a.festival-btn.green:link,
a.festival-btn.green:visited {
  color: var(--green-deep);
}

a.festival-btn.cyan:link,
a.festival-btn.cyan:visited {
  color: #007a80;
}

a.festival-btn.red:link,
a.festival-btn.red:visited {
  color: #8b1010;
}

a.festival-btn:hover,
a.festival-btn.pink:hover,
a.festival-btn.yellow:hover,
a.festival-btn.orange:hover,
a.festival-btn.green:hover,
a.festival-btn.cyan:hover,
a.festival-btn.red:hover {
  color: var(--ink);
}

/* ------------------------------------------------*/
/* Hero actions — SOCIAL MEDIA + FESTIVAL + RADIO */
/* ------------------------------------------------*/

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  justify-items: stretch;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  max-width: 920px;
  margin: 18px auto 0;
  padding: 0 4px;
  position: relative;
  z-index: 5;
}

.headline .hero-actions,
.headline__countdownholder .hero-actions,
.intro__content .hero-actions {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions .festival-btn,
.hero-actions a,
.hero-actions button {
  width: 100%;
  max-width: 100%;
  white-space: normal;
  min-height: 3.4rem;
}

.hero-actions .festival-btn.pink,
.hero-actions a.pink {
  background: var(--pink);
  color: var(--pink-deep);
}

.hero-actions .festival-btn.yellow,
.hero-actions a.yellow {
  background: var(--yellow);
  color: var(--yellow-deep);
}

@media (min-width: 768px) {
  .hero-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ------------------------------------------------*/
/* MENU button — festival green, not the hamburger */
/* ------------------------------------------------*/

.main__header {
  overflow: visible;
  height: auto;
  min-height: 70px;
}

.header__menubutton,
.header__menubutton.top-left,
.header__menubutton.top-right,
.main .main__header .header__menubutton,
.main .main__header .header__menubutton.top-left {
  width: auto !important;
  height: auto !important;
  z-index: 30;
  overflow: visible;
}

.header__menubutton.top-left {
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.menu-trigger,
a.menu-trigger,
#menu-trigger,
.header__menubutton .menu-trigger,
.header__menubutton a {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  height: auto !important;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 16px 18px 14px !important;
  border: 0;
  border-radius: 18px;
  background: var(--green) !important;
  color: var(--ink) !important;
  font-family: "Bebas Neue", "Montserrat", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem) !important;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 0 var(--green-deep), 0 18px 30px rgba(0, 0, 0, 0.28);
  transform: translateY(0);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  overflow: visible;
  z-index: 31;
  -webkit-tap-highlight-color: transparent;
}

.menu-trigger::after,
a.menu-trigger::after,
#menu-trigger::after,
.header__menubutton .menu-trigger::after {
  content: none !important;
  display: none !important;
}

.menu-trigger span,
.menu-trigger span::before,
.menu-trigger span::after,
#menu-trigger span,
#menu-trigger span::before,
#menu-trigger span::after {
  display: none !important;
  content: none !important;
  background: none !important;
  width: 0 !important;
  height: 0 !important;
}

.menu-trigger:hover,
a.menu-trigger:hover,
#menu-trigger:hover,
.no-touch .menu-trigger:hover,
.no-touch .menu-trigger:hover span::before,
.no-touch .menu-trigger:hover span::after {
  transform: translateY(-3px);
  filter: brightness(1.05);
  color: var(--ink) !important;
  text-decoration: none;
}

.menu-trigger:active,
a.menu-trigger:active,
#menu-trigger:active {
  transform: translateY(6px);
  box-shadow: 0 4px 0 currentColor, 0 8px 16px rgba(0, 0, 0, 0.25);
  filter: none;
}

/* ------------------------------------------------*/
/* Notify trigger — festival orange, caption always */
/* ------------------------------------------------*/

#notify-trigger,
.notify-trigger-top,
a.notify-trigger-top,
#sayhello-trigger-2.notify-trigger-top {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto !important;
  height: auto !important;
  min-width: 0;
  padding: 16px 18px 14px;
  border: 0;
  border-radius: 18px;
  background: var(--orange);
  color: var(--orange-deep);
  font-family: "Bebas Neue", "Montserrat", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 0 currentColor, 0 18px 30px rgba(0, 0, 0, 0.28);
  transform: translateY(0);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  overflow: visible;
  z-index: 30;
  -webkit-tap-highlight-color: transparent;
}

.notify-trigger-top.top-right-trigger,
#notify-trigger.top-right-trigger {
  position: absolute;
  top: 2rem;
  right: 2rem;
  text-align: center;
}

.notify-trigger-top::after,
#notify-trigger::after {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
}

#notify-trigger i,
.notify-trigger-top i {
  display: inline-flex !important;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
}

#notify-trigger .caption,
.notify-trigger-top .caption {
  display: inline !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0;
  clip: auto !important;
  overflow: visible !important;
  white-space: nowrap;
  color: var(--ink);
  font-family: "Bebas Neue", "Montserrat", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#notify-trigger span,
.notify-trigger-top span {
  color: var(--ink);
}

#notify-trigger:hover,
.notify-trigger-top:hover,
.no-touch .notify-trigger-top:hover,
.no-touch #notify-trigger:hover,
body.loaded .main .main__header .notify-trigger-top:hover,
body.main-fullscreen.loaded .main .main__header .notify-trigger-top:hover,
body.main-large-headline.loaded .main .main__header .notify-trigger-top:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  color: var(--ink);
  text-decoration: none;
}

#notify-trigger:active,
.notify-trigger-top:active,
body.loaded .main .main__header .notify-trigger-top:active,
body.main-fullscreen.loaded .main .main__header .notify-trigger-top:active {
  transform: translateY(6px);
  box-shadow: 0 4px 0 currentColor, 0 8px 16px rgba(0, 0, 0, 0.25);
  filter: none;
}

@media only screen and (min-width: 768px) {
  #notify-trigger,
  .notify-trigger-top {
    width: auto !important;
    height: auto !important;
    font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  }

  #notify-trigger i,
  .notify-trigger-top i {
    display: inline-flex !important;
  }

  #notify-trigger .caption,
  .notify-trigger-top .caption {
    display: inline !important;
  }
}

@media only screen and (min-width: 1200px) {
  .no-touch .notify-trigger-top:hover::after,
  .no-touch #notify-trigger:hover::after {
    width: 0;
  }
}

/* ------------------------------------------------*/
/* Close buttons — compact festival green */
/* ------------------------------------------------*/

.section-close,
.popup-close,
#menu-close,
a.section-close,
a.popup-close,
a#menu-close,
.menu-close {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  min-height: 0;
  padding: 10px 14px 8px !important;
  margin: 8px;
  border: 0;
  border-radius: 14px;
  background: var(--green) !important;
  color: var(--green-deep) !important;
  font-family: "Bebas Neue", "Montserrat", sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 6px 0 currentColor, 0 10px 16px rgba(0, 0, 0, 0.25);
  transform: translateY(0);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  overflow: visible;
  z-index: 5;
}

.section-close span,
.popup-close span,
#menu-close span,
.menu-close span {
  color: var(--ink);
}

.section-close:hover,
.popup-close:hover,
#menu-close:hover,
.menu-close:hover,
.no-touch .section-close:hover,
.no-touch .popup-close:hover,
.no-touch .menu.animate-in .menu-close:hover,
.no-touch .inner.animate-in .section-close:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  color: var(--ink) !important;
  text-decoration: none;
}

.section-close:active,
.popup-close:active,
#menu-close:active,
.menu-close:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 currentColor, 0 6px 12px rgba(0, 0, 0, 0.25);
  filter: none;
}

@media only screen and (min-width: 1200px) {
  .section-close,
  #menu-close,
  .menu-close {
    position: absolute;
    top: 2rem;
    left: 8px;
    margin: 0;
  }
}

/* ------------------------------------------------*/
/* Native social dialog */
/* ------------------------------------------------*/

#social-dialog,
dialog#social-dialog,
dialog.social-dialog {
  max-width: 560px;
  width: calc(100vw - 32px);
  max-height: min(90vh, 720px);
  padding: 0;
  border: 0;
  border-radius: 28px;
  overflow: auto;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  font-family: "Montserrat", sans-serif;
}

#social-dialog[open],
dialog#social-dialog[open] {
  display: flex;
  flex-direction: column;
}

dialog::backdrop {
  background: rgba(5, 5, 5, 0.72);
}

#social-dialog::backdrop,
dialog.social-dialog::backdrop {
  background: rgba(5, 5, 5, 0.72);
}

#social-dialog .social-dialog__bar,
#social-dialog .social-dialog__titlebar,
#social-dialog .dialog-titlebar,
#social-dialog header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 14px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 0;
}

#social-dialog .social-dialog__title,
#social-dialog .dialog-title,
#social-dialog .social-dialog__bar h2,
#social-dialog .social-dialog__titlebar h2,
#social-dialog header h2 {
  margin: 0;
  color: var(--cream);
  font-family: "Bebas Neue", "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.1;
}

#social-dialog .social-dialog__body,
#social-dialog .dialog-body,
#social-dialog .dialog-copy {
  padding: 22px 22px 26px;
  color: var(--ink);
  background: var(--cream);
}

.social-dialog__photo {
  width: 100%;
  min-height: 160px;
  max-height: 220px;
  overflow: hidden;
  background: #140c16;
}

.social-dialog__photo img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.social-dialog__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #ff2d95 0%, #ffe14d 50%, #7cff3a 100%);
  color: #140c16;
  font-family: "Bebas Neue", "Montserrat", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

#social-dialog .social-dialog__grid,
#social-dialog .dialog-links,
#social-dialog nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px 18px 22px;
}

#social-dialog .festival-btn,
#social-dialog a.festival-btn,
#social-dialog .social-dialog__grid a,
#social-dialog .dialog-links a {
  width: 100%;
}

#social-dialog .social-dialog__close,
#social-dialog .dialog-close,
#social-dialog .popup-close,
#social-dialog button[value="cancel"],
#social-dialog button[value="close"] {
  flex: 0 0 auto;
  width: auto !important;
  margin: 0;
  padding: 8px 12px 6px !important;
  background: var(--green) !important;
  color: var(--green-deep) !important;
  font-size: 0.95rem !important;
}

#social-dialog .social-dialog__close span,
#social-dialog .dialog-close span {
  color: var(--ink);
}

@media (min-width: 480px) {
  #social-dialog .social-dialog__grid,
  #social-dialog .dialog-links,
  #social-dialog nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ------------------------------------------------*/
/* Bottom-left social icons */
/* ------------------------------------------------*/

.socials.bottom-left {
  z-index: 6;
}

.socials.bottom-left ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}

.socials.bottom-left ul li {
  display: inline-flex;
  margin: 0;
  line-height: 1;
}

.socials ul li::after {
  display: none;
  content: none;
}

.socials.bottom-left ul li::after,
.socials.bottom-left ul li:last-of-type::after {
  display: none !important;
  content: none !important;
}

.socials.bottom-left a,
.socials.bottom-left a.social-icon,
.socials.bottom-left a.link-s {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(20, 12, 22, 0.72);
  color: var(--social-icon);
  font-family: "Montserrat", sans-serif !important;
  font-size: 0 !important;
  line-height: 0;
  text-decoration: none;
  text-indent: 0;
  box-shadow: none;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.socials.bottom-left a .social-icon,
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 0;
  background: transparent;
  color: inherit;
  overflow: visible;
  font-size: 0;
}

.socials.bottom-left a.social-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(20, 12, 22, 0.72);
}

.socials.bottom-left .social-icon svg,
.social-icon svg,
.socials.bottom-left a svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
  color: inherit;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .socials.bottom-left a .social-icon,
  .social-icon {
    width: 20px;
    height: 20px;
  }

  .socials.bottom-left a.social-icon {
    width: 44px;
    height: 44px;
  }

  .socials.bottom-left .social-icon svg,
  .social-icon svg,
  .socials.bottom-left a svg {
    width: 20px;
    height: 20px;
  }
}

.socials.bottom-left a::before {
  content: none;
  display: none;
  width: 20px;
  height: 20px;
  background-color: var(--social-icon);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 18px 18px;
  mask-size: 18px 18px;
}

.socials.bottom-left a:has(svg)::before,
.socials.bottom-left a:has(.social-icon)::before,
.socials.bottom-left a[href*="facebook"]:has(svg)::before,
.socials.bottom-left a[href*="instagram"]:has(svg)::before,
.socials.bottom-left a[href*="x.com"]:has(svg)::before,
.socials.bottom-left a[href*="twitter"]:has(svg)::before,
.socials.bottom-left a[href*="youtube"]:has(svg)::before {
  display: none !important;
  content: none !important;
  background: none !important;
  width: 0 !important;
  height: 0 !important;
}

.socials.bottom-left a:not(:has(svg))[href*="facebook"]::before,
.socials.bottom-left a:not(:has(svg))[href*="instagram"]::before,
.socials.bottom-left a:not(:has(svg))[href*="x.com"]::before,
.socials.bottom-left a:not(:has(svg))[href*="twitter"]::before,
.socials.bottom-left a:not(:has(svg))[href*="youtube"]::before {
  content: "";
  display: block;
}

.socials.bottom-left a[href*="facebook"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 9h3V6h-3c-2.2 0-4 1.8-4 4v2H8v3h2v7h3v-7h2.2l.8-3H13v-2c0-.6.4-1 1-1z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 9h3V6h-3c-2.2 0-4 1.8-4 4v2H8v3h2v7h3v-7h2.2l.8-3H13v-2c0-.6.4-1 1-1z'/%3E%3C/svg%3E");
}

.socials.bottom-left a[href*="instagram"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 3h10a4 4 0 0 1 4 4v10a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V7a4 4 0 0 1 4-4zm0 2a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H7zm5 3.2A4.8 4.8 0 1 1 7.2 13 4.8 4.8 0 0 1 12 8.2zm0 2A2.8 2.8 0 1 0 14.8 13 2.8 2.8 0 0 0 12 10.2zM17.4 6.3a1.1 1.1 0 1 1-1.1 1.1 1.1 1.1 0 0 1 1.1-1.1z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 3h10a4 4 0 0 1 4 4v10a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V7a4 4 0 0 1 4-4zm0 2a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H7zm5 3.2A4.8 4.8 0 1 1 7.2 13 4.8 4.8 0 0 1 12 8.2zm0 2A2.8 2.8 0 1 0 14.8 13 2.8 2.8 0 0 0 12 10.2zM17.4 6.3a1.1 1.1 0 1 1-1.1 1.1 1.1 1.1 0 0 1 1.1-1.1z'/%3E%3C/svg%3E");
}

.socials.bottom-left a[href*="x.com"]::before,
.socials.bottom-left a[href*="twitter"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M17.8 3H21l-6.5 7.4L22 21h-6.2l-4.9-6.4L5.4 21H2.1l7-8L2 3h6.3l4.4 5.8L17.8 3zm-1.1 16.2h1.7L7.3 4.7H5.4l11.3 14.5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M17.8 3H21l-6.5 7.4L22 21h-6.2l-4.9-6.4L5.4 21H2.1l7-8L2 3h6.3l4.4 5.8L17.8 3zm-1.1 16.2h1.7L7.3 4.7H5.4l11.3 14.5z'/%3E%3C/svg%3E");
}

.socials.bottom-left a[href*="youtube"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M23 12.2s0-3.2-.4-4.6c-.2-.9-.9-1.6-1.8-1.8C19.2 5.4 12 5.4 12 5.4s-7.2 0-8.8.4c-.9.2-1.6.9-1.8 1.8C1 9 1 12.2 1 12.2s0 3.2.4 4.6c.2.9.9 1.6 1.8 1.8 1.6.4 8.8.4 8.8.4s7.2 0 8.8-.4c.9-.2 1.6-.9 1.8-1.8.4-1.4.4-4.6.4-4.6zM9.8 15.6V8.8l6.2 3.4-6.2 3.4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M23 12.2s0-3.2-.4-4.6c-.2-.9-.9-1.6-1.8-1.8C19.2 5.4 12 5.4 12 5.4s-7.2 0-8.8.4c-.9.2-1.6.9-1.8 1.8C1 9 1 12.2 1 12.2s0 3.2.4 4.6c.2.9.9 1.6 1.8 1.8 1.6.4 8.8.4 8.8.4s7.2 0 8.8-.4c.9-.2 1.6-.9 1.8-1.8.4-1.4.4-4.6.4-4.6zM9.8 15.6V8.8l6.2 3.4-6.2 3.4z'/%3E%3C/svg%3E");
}

.socials.bottom-left a:hover,
.socials.bottom-left a:focus-visible,
.socials.bottom-left .social-icon:hover,
.socials.bottom-left .social-icon:focus-visible {
  color: var(--social-hover);
  border-color: var(--social-hover);
  background-color: rgba(20, 12, 22, 0.9);
}

.socials.bottom-left a:hover::before,
.socials.bottom-left a:focus-visible::before {
  background-color: var(--social-hover);
}

.socials.bottom-left a:hover svg,
.socials.bottom-left a:focus-visible svg,
.socials.bottom-left a:hover .social-icon,
.socials.bottom-left a:focus-visible .social-icon {
  color: var(--social-hover);
  fill: currentColor;
}

.socials.bottom-left a[href*="instagram"]:hover,
.socials.bottom-left a[href*="instagram"]:focus-visible {
  color: var(--pink);
  border-color: var(--pink);
}

.socials.bottom-left a[href*="instagram"]:hover::before,
.socials.bottom-left a[href*="instagram"]:focus-visible::before {
  background-color: var(--pink);
}

.socials.bottom-left a[href*="instagram"]:hover svg,
.socials.bottom-left a[href*="instagram"]:focus-visible svg {
  color: var(--pink);
}

/* ------------------------------------------------*/
/* Forms — festival pink submits + associated labels */
/* ------------------------------------------------*/

.form label:not(.sr-only),
.notify-form label:not(.sr-only),
.sayhello-form label:not(.sr-only),
.contact-form label:not(.sr-only) {
  display: block;
  margin: 0 0 0.4rem;
  color: var(--cream);
  font: normal 500 1.2rem/1.2 "Montserrat", sans-serif;
}

.form .form-field,
.form .field,
.notify-form .form-field,
.sayhello-form .form-field {
  display: block;
  margin-bottom: 1.2rem;
}

.notify-form .btn,
.notify-form .btn-fill,
.notify-form button,
.notify-form button[type="submit"],
.sayhello-form .btn,
.sayhello-form .btn-fill,
.sayhello-form button,
.sayhello-form button[type="submit"],
.contact-form .btn,
.contact-form .btn-fill,
.contact-form button[type="submit"],
form.form .btn-fill,
form.form button[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  height: auto !important;
  min-height: 0;
  margin: 0;
  padding: 16px 18px 14px !important;
  border: 0;
  border-radius: 18px;
  background: var(--pink) !important;
  color: var(--pink-deep) !important;
  font-family: "Bebas Neue", "Montserrat", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.1 !important;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: visible !important;
  box-shadow: 0 10px 0 currentColor, 0 18px 30px rgba(0, 0, 0, 0.28);
  transform: translateY(0);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.notify-form .btn .caption,
.notify-form button span,
.sayhello-form .btn .caption,
.sayhello-form button span,
.contact-form .btn .caption,
form.form .btn-fill span,
form.form button span {
  color: var(--ink);
}

.notify-form .btn:hover,
.notify-form button:hover,
.sayhello-form .btn:hover,
.sayhello-form button:hover,
.contact-form .btn:hover,
form.form .btn-fill:hover,
.no-touch .btn-fill:hover,
.no-touch .notify-form .btn:hover,
.no-touch .sayhello-form .btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  background: var(--pink) !important;
  color: var(--ink) !important;
}

.notify-form .btn:active,
.notify-form button:active,
.sayhello-form .btn:active,
.sayhello-form button:active,
form.form .btn-fill:active {
  transform: translateY(6px);
  box-shadow: 0 4px 0 currentColor, 0 8px 16px rgba(0, 0, 0, 0.25);
  filter: none;
}

@media (min-width: 576px) {
  .notify-form .btn,
  .notify-form button,
  .sayhello-form .btn,
  .sayhello-form button,
  .contact-form .btn,
  form.form .btn-fill,
  form.form button[type="submit"] {
    width: auto;
    min-width: 160px;
  }
}

/* ------------------------------------------------*/
/* About contrast — #505050 on #000 is unreadable */
/* ------------------------------------------------*/

.about .content,
.about .about-copy,
.about .content p,
.about .about-copy p {
  color: #ffffff !important;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ------------------------------------------------*/
/* Looping video — cover look unchanged */
/* ------------------------------------------------*/

.video-background,
#main-video,
.main__hover,
.menu__hover {
  pointer-events: none !important;
}

.main__header {
  z-index: 8;
}

.navigation__item {
  -webkit-text-fill-color: rgba(255, 255, 255, 0.42);
}

.navigation__item.active-link,
.no-touch .navigation__item:hover,
.navigation__item:focus-visible {
  -webkit-text-fill-color: #fff;
}

/* ------------------------------------------------*/
/* Reduced motion */
/* ------------------------------------------------*/

@media (prefers-reduced-motion: reduce) {
  .festival-btn,
  .festival-btn:hover,
  .festival-btn:active,
  a.festival-btn,
  a.festival-btn:hover,
  a.festival-btn:active,
  button.festival-btn,
  button.festival-btn:hover,
  button.festival-btn:active,
  .menu-trigger,
  .menu-trigger:hover,
  .menu-trigger:active,
  #menu-trigger,
  #menu-trigger:hover,
  #menu-trigger:active,
  #notify-trigger,
  #notify-trigger:hover,
  #notify-trigger:active,
  .notify-trigger-top,
  .notify-trigger-top:hover,
  .notify-trigger-top:active,
  body.loaded .main .main__header .notify-trigger-top:hover,
  body.main-fullscreen.loaded .main .main__header .notify-trigger-top:hover,
  body.main-fullscreen.loaded .main .main__header .notify-trigger-top:active,
  .section-close,
  .section-close:hover,
  .section-close:active,
  .popup-close,
  .popup-close:hover,
  .popup-close:active,
  #menu-close,
  #menu-close:hover,
  #menu-close:active,
  .notify-form .btn,
  .notify-form .btn:hover,
  .notify-form button,
  .notify-form button:hover,
  .sayhello-form .btn,
  .sayhello-form .btn:hover,
  form.form .btn-fill,
  form.form .btn-fill:hover {
    transform: none !important;
    filter: none !important;
    transition: none;
  }

  .explore span {
    animation: none !important;
  }

  #main-video {
    animation: none;
  }
}

.intro__explore .explore {
  max-width: 12rem;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
