/* ==========================================================================
   Arona Show — shared stylesheet for the inner pages
   (header, hamburger menu, footer, typography, buttons, layout helpers).
   The home/splash page uses css/style.css instead.
   Palette and fonts mirror the Wix theme of aronashow.com.
   ========================================================================== */

:root {
  --black: #000000;
  --navy: #0b1321;        /* Wix color_21 — page/footer background */
  --navy-2: #343d4d;      /* color_22 */
  --white: #ffffff;
  --grey-1: #e8e6e6;      /* color_14 — body text on dark */
  --grey-2: #c7c7c7;      /* color_13 — muted text */
  --grey-3: #999997;      /* color_12 */
  --teal: #8cefe9;        /* color_18 — accent / buttons / headings */
  --teal-dark: #467774;   /* color_16 */
  --amber: #f1ab06;       /* color_17 */

  --font-head: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Questrial', 'Helvetica Neue', Arial, sans-serif;

  --content-max: 1200px;
  --header-h: max(230px, 15.78vw);   /* live: 230px min, 303px @1920, 404px @2560 */
  --hu: max(0.7591px, 0.05208vw);    /* one header unit = header height / 303 */
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--grey-1);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--teal);
}
h1 { font-size: clamp(34px, 3.4vw, 60px); }
h2 { font-size: clamp(28px, 2.6vw, 50px); }
h3 { font-size: clamp(22px, 1.7vw, 32px); font-weight: 600; }
h4 { font-size: clamp(18px, 1.2vw, 22px); font-weight: 600; }

p { margin: 0 0 1em; }

.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 8px; top: 8px; z-index: 1000; background: var(--teal); color: var(--black); padding: 8px 12px; border-radius: 6px; }

/* ---------- Buttons ------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 50px;
  padding: 4px 28px;
  border: 2px solid var(--teal);
  border-radius: 100px;
  background: var(--teal);
  color: var(--black);
  font: normal 16px/1.4 var(--font-body);
  text-align: center;
  cursor: pointer;
  transition: border-color .4s ease, background-color .4s ease, color .4s ease;
}
.btn:hover,
.btn:focus-visible { background: transparent; border-color: var(--white); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--black); border-color: var(--teal); }

.btn-sm { min-width: 96px; min-height: 36px; padding: 2px 20px; font-size: 14px; }

/* ---------- Header ------------------------------------------------------- */

.site-header {
  background: var(--black);
  color: var(--white);
  /* Wix header behaviour "Disappears": pinned to the top, fades out when
     scrolling down (past ~200px), fades back in when scrolling up. */
  position: sticky;
  top: 0;
  z-index: 50;
  transition: opacity .3s cubic-bezier(.5, 0, .75, 0), visibility .3s cubic-bezier(.5, 0, .75, 0);
}
.site-header.is-hidden { opacity: 0; visibility: hidden; }
.header-inner {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  height: var(--header-h);
}
.header-inner > * { position: absolute; }

.header-logo   { left: 7.1vw;  top: calc(65 * var(--hu));  width: 32vw; }
.header-sponsor{ left: 30.7vw; top: calc(238 * var(--hu)); width: 7.6vw; }
.header-awards { left: 44.8vw; top: calc(95 * var(--hu));  width: 33.6vw; }
.header-lang   { right: 9.9vw; top: calc(116 * var(--hu)); }
.menu-toggle   { right: 2.8vw; top: calc(68 * var(--hu)); }
.header-tickets{ right: 3.8vw; top: calc(220 * var(--hu)); }

.header-lang ul { display: flex; gap: 12px; align-items: center; }
.header-lang a { display: block; width: 22px; height: 22px; border-radius: 50%; opacity: .55; transition: opacity .3s, transform .3s; }
.header-lang a img { width: 22px; height: 22px; border-radius: 50%; }
.header-lang a:hover, .header-lang a[aria-current="true"] { opacity: 1; }
.header-lang a:hover { transform: scale(1.1); }

.menu-toggle {
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: var(--teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: background-color .3s;
}
.menu-toggle span { display: block; width: 26px; height: 3px; background: var(--black); border-radius: 2px; }
.menu-toggle:hover { background: var(--white); }
.menu-toggle:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }

/* ---------- Full-screen menu -------------------------------------------- */

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, .7);
  display: flex;
  justify-content: flex-end;
}
.site-menu[hidden] { display: none; }
.site-menu-panel {
  width: min(480px, 100%);
  height: 100%;
  background: var(--black);
  color: var(--white);
  padding: 90px 56px 40px;
  overflow-y: auto;
  animation: menu-in .3s ease;
}
@keyframes menu-in { from { transform: translateX(40px); opacity: 0; } to { transform: none; opacity: 1; } }
.menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--teal);
  color: var(--black);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.site-menu-list li + li { margin-top: 22px; }
.site-menu-list a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--white);
  transition: color .3s;
}
.site-menu-list a:hover, .site-menu-list a.is-current { color: var(--teal); }

/* ---------- Page layout helpers ----------------------------------------- */

.page { display: block; }

.section {
  padding: 80px 5vw;
}
.section-dark  { background: var(--navy); }
.section-black { background: var(--black); }
.section-light { background: #efefef; color: #222; }

.container {
  max-width: var(--content-max);
  margin: 0 auto;
}
.container-narrow { max-width: 900px; margin: 0 auto; }
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-white { color: var(--white); }
.text-muted { color: var(--grey-2); }

.eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey-2);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }

.embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.cover { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Footer ------------------------------------------------------ */

.site-footer {
  background: var(--navy);
  color: var(--grey-2);
  font-size: 15px;
  padding: 140px 3vw 30px;
}
.footer-sponsor {
  display: flex;
  justify-content: center;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--grey-3);
}
.footer-sponsor img { width: 330px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1fr .6fr;
  gap: 40px;
  padding: 44px 0 60px;
}
.footer-col h3 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 24px;
  color: var(--grey-2);
  margin-bottom: 26px;
}
.footer-col p { margin: 0 0 22px; line-height: 1.7; }
.footer-col li { margin-bottom: 8px; }
.footer-col a:hover { color: var(--teal); }
.footer-lab { width: 268px; margin-bottom: 14px; }
.footer-pieles { width: 222px; margin-top: 46px; }
.footer-col-brand p { max-width: 520px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--grey-2);
}
.footer-bottom a:hover { color: var(--teal); }

/* ---------- Responsive -------------------------------------------------- */

@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 750px) {
  body { font-size: 16px; }
  .site-header { position: relative; }
  .site-header.is-hidden { opacity: 1; visibility: visible; }
  :root { --header-h: auto; }
  .header-inner { height: auto; display: grid; grid-template-columns: 1fr auto; grid-template-areas:
      "logo toggle" "sponsor lang" "awards awards" "tickets tickets"; gap: 14px 12px; padding: 18px 5vw 22px; align-items: center; }
  .header-inner > * { position: static; }
  .header-logo    { grid-area: logo; width: 60vw; max-width: 340px; }
  .menu-toggle    { grid-area: toggle; width: 48px; height: 48px; justify-self: end; }
  .header-sponsor { grid-area: sponsor; width: 34vw; max-width: 160px; }
  .header-lang    { grid-area: lang; justify-self: end; }
  .header-awards  { grid-area: awards; width: 100%; max-width: 100%; }
  .header-tickets { grid-area: tickets; justify-self: center; min-width: 120px; min-height: 40px; }
  .section { padding: 56px 6vw; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 28px; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .site-footer { padding-top: 80px; }
  .footer-sponsor img { width: 240px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* TuriTop booking widget iframe: let the host panel provide background/rounding */
iframe.iframe-resizable-turitop { background: transparent !important; border-radius: 0 !important; }
