/* ============================================================
   SITE STYLES — light / bright theme (anyma-inspired)
   ------------------------------------------------------------
   Change colors, fonts and spacing in the :root section below.
   ============================================================ */

/* ------------------------------------------------------------
   FONT: Baron Neue (display font for headings/logo/hero)
   Baron Neue is a free font that is NOT on Google Fonts, so it
   must be hosted locally. Drop the font files into assets/fonts/
   (see assets/fonts/README.txt). Accepted file names below.
   Until you add the files, the site falls back to "Syne".
   ------------------------------------------------------------ */
@font-face {
  font-family: "Baron Neue";
  src: url("../assets/fonts/BaronNeue.otf") format("opentype");
  font-weight: 400 600;
  font-display: swap;
}
@font-face {
  font-family: "Baron Neue";
  src: url("../assets/fonts/BaronNeue-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Baron Neue";
  src: url("../assets/fonts/BaronNeue-Black.otf") format("opentype");
  font-weight: 800 900;
  font-display: swap;
}

:root {
  /* --- COLORS (change here to restyle the whole site) --- */
  --bg:        #fafafa;   /* main background (near-white) */
  --bg-pure:   #ffffff;   /* pure white panels */
  --ink:       #0a0a0c;   /* main text (near black) */
  --muted:     #6f6f76;   /* dimmed text */
  --accent:    #2b2bff;   /* accent (buttons, links) — electric blue */
  --accent-2:  #ff4d3d;   /* secondary accent / glow */
  --accent-3:  #7b5bff;   /* tertiary accent / glow */
  --line:      rgba(10,10,12,0.12);

  /* --- FONTS --- */
  /* Baron Neue everywhere ("Syne"/"Space Grotesk" are fallbacks until you add the font files). */
  --font-display: "Baron Neue", "Syne", sans-serif;
  --font-body: "Baron Neue", "Space Grotesk", sans-serif;

  --maxw: 1240px;
  --radius: 16px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* --- SECTION LAYOUT --- */
.section { padding: 130px 24px; max-width: var(--maxw); margin: 0 auto; }
.section__head { margin-bottom: 56px; }
.section__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 4.5rem); letter-spacing: -0.03em; line-height: 1;
}
.section__sub { color: var(--muted); font-size: 1.05rem; margin-top: 14px; }

/* --- REVEAL ANIMATION --- */
/* Only hidden while JS is active (.js). Without JS, content is visible. */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s ease, backdrop-filter .4s ease, padding .4s ease, border-color .4s ease;
  padding: 24px 0; border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(250,250,250,0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo, .footer__logo {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.5rem; letter-spacing: 0.06em;
}
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { font-size: .95rem; font-weight: 500; color: var(--ink); opacity: .65; transition: opacity .25s ease; }
.nav__links a:hover { opacity: 1; }
.nav__cta {
  background: var(--ink); color: var(--bg) !important; opacity: 1 !important;
  padding: 10px 22px; border-radius: 100px; transition: background .25s ease;
}
.nav__cta:hover { background: var(--accent); }

.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { width: 26px; height: 2px; background: var(--ink); transition: .3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- SOCIAL ICONS --- */
.nav__social { display: flex; align-items: center; gap: 4px; }
.nav__social--menu { display: none; } /* shown only inside the mobile slide-in menu */
.social-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; color: var(--ink); opacity: .65;
  transition: opacity .2s ease, background .2s ease, color .2s ease;
}
.social-ico svg { width: 20px; height: 20px; }
.social-ico:hover { opacity: 1; background: rgba(10,10,12,0.06); color: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
/* Hero is a bit shorter than the viewport so a strip of the page peeks below
   (a visual hint that there's more to scroll). */
.hero { position: relative; height: 90vh; min-height: 560px; display: flex; align-items: flex-end; overflow: hidden; background: var(--bg-pure); }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero__media {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.hero__media video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); /* lekkie powiększenie maskuje brzegi wideo */ }
.hero__content {
  position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto;
  padding: 0 24px 9vh; width: 100%;
}
.hero__kicker { letter-spacing: 0.42em; font-size: .8rem; font-weight: 700; color: var(--accent); margin-bottom: 20px; }
.hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(4.5rem, 20vw, 18rem); line-height: 0.82; letter-spacing: -0.04em;
  text-transform: uppercase; color: var(--ink); mix-blend-mode: normal;
}
.hero__subtitle { max-width: 540px; color: var(--ink); opacity: .8; font-size: 1.2rem; margin-top: 28px; }
.hero__actions { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 32px; border-radius: 100px; font-weight: 600; font-size: .95rem;
  transition: transform .2s ease, background .25s ease, color .25s ease, border-color .25s ease; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: var(--accent); }
.btn--ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }

/* ============================================================
   SHOWS
   ============================================================ */
.shows__list { display: flex; flex-direction: column; }
.show {
  display: grid; grid-template-columns: 180px 1fr 1fr auto; gap: 24px; align-items: center;
  padding: 28px 8px; border-top: 1px solid var(--line); transition: background .25s ease, padding .25s ease;
}
.show:last-child { border-bottom: 1px solid var(--line); }
.show:hover { background: rgba(10,10,12,0.03); padding-left: 18px; }
.show__date { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.show__city { font-size: 1.15rem; font-weight: 500; }
.show__venue { color: var(--muted); }
.show__btn {
  padding: 11px 26px; border-radius: 100px; border: 1.5px solid var(--ink); color: var(--ink);
  font-size: .9rem; font-weight: 600; transition: all .25s ease; white-space: nowrap;
}
.show__btn:hover { background: var(--ink); color: var(--bg); }
.show__btn--sold { border-color: var(--line); color: var(--muted); pointer-events: none; }

/* ============================================================
   MUSIC
   ============================================================ */
.releases { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.release { display: block; }
.release__cover { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; background: #e9e8e3; }
.release__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.release:hover .release__cover img { transform: scale(1.06); }
.release__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(10,10,12,0.18); opacity: 0; transition: opacity .3s ease; }
.release:hover .release__play { opacity: 1; }
.release__play span {
  width: 58px; height: 58px; border-radius: 50%; background: var(--bg-pure); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; padding-left: 4px;
}
.release__title { font-weight: 600; margin-top: 18px; font-size: 1.1rem; }
.release__type { color: var(--muted); font-size: .9rem; }
.music__embed { margin-top: 48px; }
.music__embed iframe { width: 100%; border: 0; border-radius: var(--radius); }

/* ============================================================
   VIDEOS — slider (featured video + arrows + thumbnail strip)
   ============================================================ */
.vcar { max-width: 940px; margin: 0 auto; }
.vcar__stage { position: relative; }
.vcar__main {
  display: block; position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/9; background: #e9e8e3;
}
.vcar__main img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.vcar__main:hover img { transform: scale(1.04); }
.vcar__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,0.92); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; padding-left: 5px;
  transition: transform .25s ease;
}
.vcar__main:hover .vcar__play { transform: translate(-50%,-50%) scale(1.1); }
.vcar__caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 24px;
  background: linear-gradient(180deg, transparent, rgba(10,10,12,0.6));
  color: #fff; font-weight: 600; font-size: 1.05rem;
}
.vcar__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,0.9); color: var(--ink); font-size: 1.6rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(10,10,12,0.18); transition: background .2s ease, transform .2s ease;
}
.vcar__arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.vcar__arrow--prev { left: 14px; }
.vcar__arrow--next { right: 14px; }

.vcar__thumbs {
  display: flex; gap: 12px; margin-top: 16px; overflow-x: auto; padding: 4px 2px 10px;
  scroll-behavior: smooth; scrollbar-width: thin;
}
.vthumb {
  flex: 0 0 150px; position: relative; aspect-ratio: 16/9; border: 0; padding: 0; cursor: pointer;
  border-radius: 10px; overflow: hidden; background: #e9e8e3; opacity: .5;
  transition: opacity .2s ease, outline-color .2s ease; outline: 2px solid transparent; outline-offset: 2px;
}
.vthumb img { width: 100%; height: 100%; object-fit: cover; }
.vthumb:hover { opacity: .85; }
.vthumb.is-active { opacity: 1; outline-color: var(--ink); }
.vthumb__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  color: #fff; font-size: .9rem; text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* single video: hide navigation */
.vcar--single .vcar__arrow, .vcar--single .vcar__thumbs { display: none; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__media img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about__text p { color: var(--muted); margin-top: 18px; font-size: 1.1rem; }
.about__stats { display: flex; gap: 44px; margin-top: 44px; flex-wrap: wrap; }
.about__stats .stat__value { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; }
.about__stats .stat__label { color: var(--muted); font-size: .9rem; letter-spacing: .05em; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery__item { border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 1; background: #e9e8e3; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery__item:hover img { transform: scale(1.08); }

.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(244,243,239,0.96);
  display: none; align-items: center; justify-content: center; padding: 40px; backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox__close { position: absolute; top: 24px; right: 32px; background: none; border: 0; color: var(--ink); font-size: 2.6rem; cursor: pointer; line-height: 1; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter { text-align: center; }
.newsletter__inner { max-width: 640px; margin: 0 auto; }
.newsletter__text { color: var(--muted); font-size: 1.15rem; margin-top: 16px; }
.newsletter__form { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; justify-content: center; }
.newsletter__form input {
  flex: 1; min-width: 240px; padding: 16px 22px; border-radius: 100px; border: 1.5px solid var(--line);
  background: var(--bg-pure); color: var(--ink); font-family: var(--font-body); font-size: 1rem;
}
.newsletter__form input:focus { outline: none; border-color: var(--accent); }
.newsletter__form button {
  padding: 16px 32px; border-radius: 100px; border: 0; background: var(--ink); color: var(--bg);
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; cursor: pointer; transition: background .25s ease;
}
.newsletter__form button:hover { background: var(--accent); }
.newsletter__msg { margin-top: 18px; color: var(--accent); font-weight: 600; }

/* ============================================================
   BOOKING
   ============================================================ */
.booking { text-align: center; }
.booking__inner { max-width: 660px; margin: 0 auto; }
.booking__text { color: var(--muted); font-size: 1.15rem; margin-top: 16px; }
.booking__email {
  display: inline-block; font-family: var(--font-body); font-weight: 500;
  font-size: 1.05rem; margin-top: 22px; color: var(--muted);
  transition: color .25s ease;
}
.booking__email:hover { color: var(--ink); }
.booking__mgmt { color: var(--muted); margin-top: 22px; font-size: .95rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding: 56px 24px; position: relative; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.footer__social { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.footer__privacy {
  color: var(--muted); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  transition: color .25s ease;
}
.footer__privacy:hover { color: var(--ink); }
.footer__copy { color: var(--muted); font-size: .85rem; }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
/* small "Cookies" button, fixed bottom-left (re-opens the banner) */
.cookie-fab {
  position: absolute; left: 24px; bottom: 24px; z-index: 5;
  padding: 9px 18px; border-radius: 100px; border: 1px solid var(--line);
  background: var(--bg-pure); color: var(--ink);
  font-family: var(--font-body); font-size: .85rem; font-weight: 500; cursor: pointer;
  box-shadow: 0 4px 16px rgba(10,10,12,0.12);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.cookie-fab:hover { background: var(--ink); color: var(--bg); transform: translateY(-1px); }

.cookie {
  position: fixed; left: 50%; bottom: 20px; transform: translate(-50%, 160%);
  z-index: 300; width: min(740px, calc(100% - 32px));
  background: var(--ink); color: var(--bg); border-radius: 16px; padding: 18px 22px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: space-between;
  box-shadow: 0 14px 44px rgba(10,10,12,0.3); opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.cookie.is-visible { transform: translate(-50%, 0); opacity: 1; }
.cookie__text { flex: 1 1 320px; font-size: .9rem; line-height: 1.5; color: rgba(244,243,239,0.85); }
.cookie__text a { color: var(--bg); text-decoration: underline; text-underline-offset: 2px; }
.cookie__actions { display: flex; gap: 10px; }
.cookie__btn {
  padding: 11px 24px; border-radius: 100px; font-family: var(--font-body);
  font-weight: 600; font-size: .9rem; cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.cookie__btn--primary { background: var(--bg); color: var(--ink); border: 0; }
.cookie__btn--primary:hover { background: var(--muted); color: #fff; }
.cookie__btn--ghost { background: transparent; color: var(--bg); border: 1.5px solid rgba(244,243,239,0.4); }
.cookie__btn--ghost:hover { border-color: var(--bg); }
@media (max-width: 560px) {
  .cookie { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie__actions { justify-content: stretch; }
  .cookie__btn { flex: 1; }
}

/* ============================================================
   LEGAL / PRIVACY PAGE
   ============================================================ */
.legal { max-width: 820px; }
.legal__updated { color: var(--muted); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.legal__title {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em;
  font-size: clamp(2.4rem, 6vw, 4rem); margin: 12px 0 36px;
}
.legal h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; margin: 40px 0 12px; }
.legal p { color: var(--muted); margin-bottom: 14px; }
.legal ul { color: var(--muted); margin: 0 0 14px 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--accent); }

/* ============================================================
   RESPONSIVE (phones / tablets)
   ============================================================ */
@media (max-width: 900px) {
  .show { grid-template-columns: 120px 1fr auto; }
  .show__venue { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 84px 20px; }
  .nav__links {
    position: fixed; top: 0; right: 0; height: 100vh; width: 78%; max-width: 320px;
    background: var(--bg-pure); flex-direction: column; justify-content: center; gap: 30px;
    transform: translateX(100%); transition: transform .35s ease; border-left: 1px solid var(--line);
  }
  .nav__links.is-open { transform: translateX(0); }
  /* privacy/legal page nav has no burger — keep its links inline & visible */
  .nav__links--static {
    position: static; transform: none; height: auto; width: auto; max-width: none;
    background: none; border-left: 0; flex-direction: row; gap: 16px;
  }
  .nav__links--static a { font-size: .85rem; }
  .nav__burger { display: flex; z-index: 110; }
  .nav__inner > .nav__social { display: none; }                /* hide top-bar icons on phones */
  .nav__social--menu { display: flex; justify-content: center; gap: 8px; margin-top: 10px; } /* show in menu */
  .show { grid-template-columns: 100px 1fr; gap: 10px; }
  .show__btn { grid-column: 2; justify-self: start; margin-top: 4px; }
  .newsletter__form { flex-direction: column; }
  .vthumb { flex-basis: 110px; }
  .vcar__arrow { width: 40px; height: 40px; font-size: 1.4rem; }
}
