/* =========================================================================
   ANoise — eigenständiges Stylesheet (Jimdo-unabhängig)
   Farben aus dem Original: #dfced3 / #694550 / #885968 / #b7909d / schwarz
   Schriften: Poppins (Headlines), Roboto (Text), lokal selbst gehostet
   ========================================================================= */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Poppins';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/poppins-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/poppins-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/roboto-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/roboto-700.woff2') format('woff2');
}

/* ---------- Variablen ---------- */
:root {
  --rose-pale: #dfced3;
  --plum:      #694550;
  --mauve:     #885968;
  --mauve-lt:  #b7909d;
  --black:     #0c0a0b;
  --white:     #ffffff;
  --ink:       #241c20;
  --maxw: 1180px;
  --headline: 'Poppins', system-ui, -apple-system, Segoe UI, sans-serif;
  --body: 'Roboto', system-ui, -apple-system, Segoe UI, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--rose-pale);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--headline);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.2rem, 6vw, 4rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 4vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
p  { margin: 0 0 1rem; }

.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section--tight { padding: clamp(2rem, 5vw, 3.5rem) 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,10,11,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(183,144,157,.25);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
}
.brand {
  font-family: var(--headline);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
  color: var(--white);
  text-decoration: none;
  line-height: 1.2;
}
.brand span { color: var(--mauve-lt); }
.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: .95rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: .35rem 0;
  position: relative;
  opacity: .85;
  transition: opacity .2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { opacity: 1; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--mauve-lt);
  transition: width .25s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform .3s, opacity .3s;
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(12,10,11,.98);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links a {
    padding: .9rem 1.2rem;
    border-top: 1px solid rgba(183,144,157,.18);
    width: 100%;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: clamp(2.5rem, 7vw, 5rem) 0;
}
.hero img {
  margin: 0 auto;
  max-height: 460px;
  width: auto;
}
.hero-tagline {
  font-family: var(--headline);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: clamp(.8rem, 2vw, 1rem);
  color: var(--mauve-lt);
  margin-top: 1.4rem;
}

/* ---------- Intro / About ---------- */
.intro { background: var(--rose-pale); }
.intro h2 { color: var(--plum); }
.intro .lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 60ch; }

/* ---------- Video grid ---------- */
.videos { background: var(--plum); color: var(--white); }
.videos h2 { color: var(--white); text-align: center; margin-bottom: 2.2rem; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
}
.video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.video iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  text-align: center;
  padding: 1.5rem;
  background:
    linear-gradient(rgba(12,10,11,.78), rgba(12,10,11,.78)),
    var(--mauve);
  cursor: pointer;
}
.video-consent svg { width: 54px; height: 38px; }
.video-consent p { font-size: .85rem; margin: 0; opacity: .9; max-width: 38ch; }
.video-consent .btn { margin-top: .3rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--headline);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  text-decoration: none;
  color: var(--white);
  background: var(--mauve);
  border: 2px solid var(--mauve);
  padding: .7rem 1.6rem;
  border-radius: 40px;
  cursor: pointer;
  transition: background .2s, transform .15s, border-color .2s;
}
.btn:hover { background: var(--plum); border-color: var(--plum); transform: translateY(-2px); }
.btn--ghost { background: transparent; }
.btn--ghost:hover { background: var(--white); color: var(--plum); border-color: var(--white); }

/* ---------- Slideshow ---------- */
.slideshow-section { background: var(--rose-pale); }
.slideshow {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 14px 40px rgba(105,69,80,.25);
}
.slideshow-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events: none;
}
.slide.is-active { opacity: 1; pointer-events: auto; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  color: var(--plum);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  box-shadow: 0 3px 10px rgba(0,0,0,.25);
  transition: background .2s, transform .15s;
}
.slide-btn:hover { background: #fff; }
.slide-btn:focus-visible { outline: 3px solid var(--mauve-lt); outline-offset: 2px; }
.slide-btn--prev { left: 14px; }
.slide-btn--next { right: 14px; }
.slide-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0 4px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(105,69,80,.32);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.dot:hover { background: rgba(105,69,80,.6); }
.dot.is-active { background: var(--plum); transform: scale(1.3); }
.dot:focus-visible { outline: 2px solid var(--mauve); outline-offset: 2px; }
@media (max-width: 600px) {
  .slide-btn { width: 38px; height: 38px; }
  .slide-btn--prev { left: 7px; }
  .slide-btn--next { right: 7px; }
}

/* ---------- Dates / Termine ---------- */
.dates {
  position: relative;
  color: var(--white);
  text-align: center;
  background: var(--black);
}
.dates::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .28;
  z-index: 0;
}
.dates .container { position: relative; z-index: 1; }
.dates h2 { color: var(--white); }
.dates-list { list-style: none; margin: 1.5rem auto 0; padding: 0; max-width: 620px; }
.dates-list li {
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  font-size: 1.05rem;
}
.dates-list li:last-child { border-bottom: 0; }
.dates-list .sold { color: var(--mauve-lt); font-weight: 700; }

/* ---------- Merch ---------- */
.merch { background: var(--rose-pale); text-align: center; }
.merch h2 { color: var(--plum); }
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}
.merch-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(105,69,80,.15);
  transition: transform .2s, box-shadow .2s;
}
.merch-item:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(105,69,80,.25); }
.merch-item .thumb { aspect-ratio: 1; background: #f3eaee; }
.merch-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.merch-item .label {
  font-family: var(--headline);
  font-weight: 600;
  padding: .9rem;
  color: var(--plum);
}

/* ---------- Booking ---------- */
.booking { background: var(--mauve); color: var(--white); text-align: center; }
.booking h2 { color: var(--white); }
.booking p { font-size: 1.1rem; opacity: .95; }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.member { text-align: center; }
.member .photo {
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(105,69,80,.22);
  margin-bottom: 1rem;
}
.member .photo img { width: 100%; height: 100%; object-fit: cover; }
.member h3 { color: var(--plum); margin: 0; }

/* ---------- Generic content page ---------- */
.page-head {
  background: var(--black);
  color: var(--white);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: center;
}
.page-head h1 { margin: 0; }
.content { background: var(--rose-pale); }
.content .prose { max-width: 70ch; }
.content .prose h2 { color: var(--plum); margin-top: 2rem; font-size: 1.5rem; }
.content .prose h3 { color: var(--plum); margin-top: 1.6rem; }
.content .prose a { color: var(--mauve); }
.feature-img {
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 2rem;
  box-shadow: 0 10px 28px rgba(105,69,80,.2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}
.gallery-grid img { border-radius: 10px; box-shadow: 0 8px 22px rgba(105,69,80,.18); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 2.2rem 0;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  justify-content: center;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.footer-links a {
  color: var(--mauve-lt);
  text-decoration: none;
  font-size: .9rem;
  letter-spacing: .03em;
}
.footer-links a:hover { color: var(--white); }
.footer-copy { text-align: center; font-size: .8rem; opacity: .55; }

/* ---------- Accessibility helpers ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
