/* ─── Self-hosted fonts ─────────────────────────────────────────────────── */
@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/Orbitron.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Cinzel-Bold-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Cinzel-Bold.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── Custom properties ─────────────────────────────────────────────────── */
:root {
  --bg: #090910;
  --ink: #e8e6f2;
  --muted: #b8b5c8;
  --red: #b20c1b;
  --purple: #6b4df2;
  --glass-bg: rgba(12, 12, 18, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
}

/* ─── Reset / base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Orbitron', system-ui, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ─── Fixed background image ────────────────────────────────────────────── */
.bg-image {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url('images/hero-banner.jpg') center center / cover no-repeat;
}

/* dark + coloured overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,.85)),
    radial-gradient(ellipse 70% 60% at 20% 40%, rgba(107,77,242,.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(178,12,27,.22) 0%, transparent 70%);
}

/* ─── Nav impressum button (matches link styling) ───────────────────────── */
.site-nav__impressum {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(.65rem, 1.4vw, .78rem);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid rgba(107,77,242,.5);
  background: rgba(107,77,242,.12);
  padding: 4px 14px;
  border-radius: 20px;
  color: var(--ink);
  transition: background .2s;
}
.site-nav__impressum:hover { background: rgba(107,77,242,.25); }

/* ─── Navigation bar ────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 32px);
  background: rgba(9,9,16,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 0 clamp(16px, 4vw, 40px);
}

.site-nav a {
  font-size: clamp(.65rem, 1.4vw, .78rem);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.site-nav a:hover,
.site-nav a.active { color: var(--ink); }

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 52px clamp(20px, 5vw, 80px) clamp(40px, 8vh, 80px);
  text-align: center;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 10vw, 7rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: .06em;
  line-height: 1;
  filter: drop-shadow(0 4px 30px rgba(107,77,242,.5));
}

.hero-subtitle {
  font-size: clamp(.7rem, 2vw, 1rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

/* Social strip */
.social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 22px;
  max-width: 620px;
}

.social a {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s, filter .2s;
}
.social a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.14);
  filter: drop-shadow(0 0 8px rgba(107,77,242,.5));
}
.social img {
  width: 22px; height: 22px;
}

/* CTA buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.btn {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(.65rem, 1.4vw, .75rem);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: var(--ink);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  position: relative;
  overflow: hidden;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.4);
}

.btn--primary {
  border-color: rgba(255,255,255,.25);
  background: linear-gradient(90deg, rgba(178,12,27,.32), rgba(107,77,242,.36));
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(90deg, rgba(178,12,27,.25), rgba(107,77,242,.25));
  filter: blur(14px);
  z-index: -1;
  border-radius: inherit;
}

/* ─── Section shared ────────────────────────────────────────────────────── */
section {
  padding: clamp(50px, 8vh, 90px) clamp(20px, 6vw, 100px);
}

.section-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 6vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 7px;
  text-transform: uppercase;
  margin-bottom: clamp(24px, 4vh, 48px);
  text-align: center;
  filter: drop-shadow(0 0 20px rgba(107,77,242,.45));
}

/* Glitch effect on headings */
.glitch {
  position: relative;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  overflow: hidden;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  animation-duration: 5s;
  animation-timing-function: step-end;
  animation-iteration-count: infinite;
}
.glitch::before {
  color: #e0287d;
  clip-path: polygon(0 10%, 100% 10%, 100% 30%, 0 30%);
  transform: translate(-4px, 2px);
  animation-name: glitch-before;
}
.glitch::after {
  color: #1bc7fb;
  clip-path: polygon(0 60%, 100% 60%, 100% 75%, 0 75%);
  transform: translate(4px, -2px);
  animation-name: glitch-after;
}

@keyframes glitch-before {
  0%, 92%, 100% { transform: translate(-4px, 2px); clip-path: polygon(0 10%, 100% 10%, 100% 30%, 0 30%); }
  94% { transform: translate(6px, -1px); clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%); }
  96% { transform: translate(-2px, 3px); clip-path: polygon(0 70%, 100% 70%, 100% 85%, 0 85%); }
  98% { transform: translate(3px, 0); clip-path: polygon(0 0%, 100% 0%, 100% 15%, 0 15%); }
}
@keyframes glitch-after {
  0%, 92%, 100% { transform: translate(4px, -2px); clip-path: polygon(0 60%, 100% 60%, 100% 75%, 0 75%); }
  94% { transform: translate(-5px, 2px); clip-path: polygon(0 20%, 100% 20%, 100% 35%, 0 35%); }
  96% { transform: translate(2px, -3px); clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%); }
  98% { transform: translate(-3px, 1px); clip-path: polygon(0 40%, 100% 40%, 100% 55%, 0 55%); }
}

/* ─── Glass card ────────────────────────────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}

/* ─── About section ─────────────────────────────────────────────────────── */
.about-section { max-width: 900px; margin: 0 auto; }

.about-content {
  padding: clamp(24px, 4vw, 48px);
  font-size: clamp(.8rem, 1.6vw, .95rem);
  color: var(--muted);
  line-height: 1.85;
}
.about-content p + p { margin-top: 18px; }
.about-content a {
  color: var(--ink);
  border-bottom: 1px solid rgba(107,77,242,.5);
  transition: border-color .2s, color .2s;
}
.about-content a:hover {
  color: #fff;
  border-color: var(--purple);
}

/* ─── Music section ─────────────────────────────────────────────────────── */
.stream-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.stream-links a {
  font-size: clamp(.6rem, 1.3vw, .72rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  transition: background .2s, color .2s, transform .2s;
}
.stream-links a:hover {
  background: rgba(107,77,242,.18);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ─── Gallery section ───────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 24px);
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(107,77,242,.35);
  transition: transform .3s, box-shadow .3s;
  animation: image-glow 3s ease-in-out infinite alternate;
}
.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 32px rgba(107,77,242,.4);
}

@keyframes image-glow {
  from { box-shadow: 0 0 6px rgba(107,77,242,.2); }
  to   { box-shadow: 0 0 20px rgba(107,77,242,.45); }
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  text-align: center;
  padding: clamp(24px, 4vh, 40px) clamp(20px, 5vw, 60px);
  border-top: 1px solid var(--glass-border);
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .06em;
}
.site-footer a:hover { color: var(--ink); }
.site-footer p + p { margin-top: 8px; }

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 240px; }
}

@media (max-width: 500px) {
  .site-nav { gap: 10px; }
  .site-nav a { font-size: .6rem; letter-spacing: .06em; }
  .social a { width: 40px; height: 40px; }
  .social img { width: 18px; height: 18px; }
}

/* ─── Impressum Modal ───────────────────────────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }

.modal__box {
  position: relative;
  max-width: 560px;
  width: 100%;
  padding: clamp(28px, 5vw, 48px);
  font-size: clamp(.8rem, 1.6vw, .92rem);
  color: var(--muted);
  line-height: 1.85;
  animation: modal-in .2s ease;
}
.modal__box p + p { margin-top: 14px; }
.modal__box a {
  color: var(--ink);
  border-bottom: 1px solid rgba(107,77,242,.5);
  transition: border-color .2s, color .2s;
}
.modal__box a:hover { color: #fff; border-color: var(--purple); }

.modal__heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 22px;
  filter: drop-shadow(0 0 12px rgba(107,77,242,.4));
}

.modal__close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color .2s;
}
.modal__close:hover { color: var(--ink); }

@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

