/* ================================
   StyleDark.css (CLEAN VERSION)
   ================================ */

:root{
  /* Colors */
  --brand: rgb(160, 140, 255);      /* Accent */
  --bg: #0b1020;                    /* Page background */
  --navBg: rgba(10, 16, 36, 0.88);  /* Nav background */
  --panelBg: rgba(15, 22, 46, 0.92);

  /* Text */
  --text: rgba(255,255,255,0.88);
  --muted: rgba(255,255,255,0.62);
  --muted2: rgba(255,255,255,0.55);

  /* UI */
  --border: rgba(255,255,255,0.12);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  --radius: 18px;

  /* Font */
  --font: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
          Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: var(--font);
  font-weight: 300;                 /* dünner Grundtext */
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  background: var(--bg);
  color: var(--text);
}

/* ================================
   NAV
   ================================ */
.nav{
  position: sticky;
  top:0;
  z-index: 1000;

  background: var(--navBg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 10px 28px rgba(0,0,0,0.55);
}

.navInner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 18px;

  display:flex;
  align-items:center;
  gap: 12px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: #fff;
}

.brandMark{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
}

.brandText{
  display:flex;
  flex-direction:column;
  line-height: 1.05;
}

.brandName{
  font-weight: 500;                 /* nicht fett */
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.brandSub{
  font-size: 0.82rem;
  opacity: 0.88;
  font-weight: 300;
}

.navLinks{
  display:flex;
  align-items:center;
  gap: 6px;
  margin-left: auto;
}

.navLink{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration:none;

  color: rgba(255,255,255,0.95);
  font-weight: 350;                 /* dünner */
  letter-spacing: 0.02em;
  white-space:nowrap;

  transition: background .18s ease, transform .18s ease;
}

.navLink:hover{
  background: rgba(255,255,255,0.10);
  transform: translateY(-1px);
}

.navLink.is-active{
  background: rgba(255,255,255,0.16);
}

/* ================================
   MOBILE TOGGLE BUTTON (3 bars)
   ================================ */
.navToggle{
  display:none;
  margin-left:auto;

  width: 46px;
  height: 42px;
  border-radius: 999px;

  appearance:none;
  -webkit-appearance:none;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 0;
  cursor:pointer;

  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap: 6px;

  position: relative;
}

.navToggle span{
  display:block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  transform-origin:center;
  transition: transform .20s ease, opacity .20s ease;
}

/* Burger -> X */
.nav.is-open .navToggle span:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}
.nav.is-open .navToggle span:nth-child(2){
  opacity: 0;
}
.nav.is-open .navToggle span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

/* ================================
   HERO
   ================================ */
.hero{
  position: relative;
  height: clamp(560px, 82vh, 900px);
  width: 100%;
  overflow: hidden;
}

.HeroImage{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.heroOverlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to top, rgba(5,10,25,0.90) 0%, rgba(5,10,25,0.35) 52%, rgba(5,10,25,0.15) 100%),
    radial-gradient(1200px 600px at 15% 75%, rgba(160,140,255,0.40), rgba(160,140,255,0) 60%);
}

.heroContent{
  position: relative;
  max-width: 1200px;
  height:100%;
  margin: 0 auto;
  padding: 0 18px;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap: 12px;

  padding-bottom: clamp(34px, 6vh, 64px);
}

.heroKicker{
  margin:0;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.86rem;
  font-weight: 320;
}

.heroTitle{
  margin:0;
  color: #fff;
  font-weight: 200;                 /* deutlich dünner */
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.02;
  font-size: clamp(2.6rem, 5.4vw, 4.2rem);
}

.heroLead{
  margin:0;
  max-width: 760px;
  color: rgba(255,255,255,0.86);
  line-height: 1.7;
  font-size: 1.02rem;
  font-weight: 300;
}

.heroActions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 450;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255,255,255,0.20);
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}

.btnPrimary{
  background: #fff;
  color: #0b1020;
  border-color: rgba(255,255,255,0.40);
}
.btnPrimary:hover{ transform: translateY(-1px); }

.btnGhost{
  background: rgba(255,255,255,0.10);
  color: #fff;
}
.btnGhost:hover{
  background: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}

.heroSocial{
  display:flex;
  gap: 10px;
  margin-top: 6px;
}

.iconBtn{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;

  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.92);
  color: #1b1b2a;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.iconBtn:hover{
  transform: translateY(-1px);
  background: var(--brand);
  color: #0b1020;
}

.iconBtn--light{
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
}
.iconBtn--light:hover{
  background: #fff;
  color: #0b1020;
}

/* ================================
   PAGE / SECTIONS
   ================================ */
.page{ background: var(--bg); }

.section{
  padding: 76px 0;
}

.section + .section{
  border-top: 1px solid rgba(255,255,255,0.10);
}

.sectionInner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.sectionHead{
  margin-bottom: 28px;
}

.sectionTitle{
  margin: 0 0 8px 0;
  color: #fff;
  font-weight: 220;                 /* dünner */
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}

.sectionSub{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 760px;
  font-weight: 300;
}

/* ================================
   LISTS
   ================================ */
.list{
  display:flex;
  flex-direction:column;
  gap: 18px;
}

.item{
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.itemMeta{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.tag{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(160,140,255,0.10);
  border: 1px solid rgba(160,140,255,0.22);
  color: rgba(255,255,255,0.90);
  font-weight: 450;
  font-size: 0.86rem;
}

.itemText{
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 860px;
  font-weight: 300;
}

/* ================================
   LIVE
   ================================ */
.liveRow{
  display:flex;
  gap: 18px;
  justify-content:space-between;
  align-items:flex-start;

  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.liveLeft{ display:flex; flex-direction:column; gap: 6px; }
.liveDate{ color: rgba(255,255,255,0.92); font-weight: 520; letter-spacing: 0.04em; }
.livePlace{ color: rgba(255,255,255,0.90); font-weight: 340; }
.liveProject{ color: var(--muted); font-weight: 300; }
.liveRight{ padding-top: 2px; }

.link{
  color: var(--brand);
  text-decoration:none;
  font-weight: 520;
}
.link:hover{ text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 720px){
  .liveRow{ flex-direction:column; }
  .liveRight{ padding-top: 0; }
}

/* ================================
   ABOUT
   ================================ */
.aboutGrid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items:start;
}

.aboutText p{
  margin: 0 0 12px 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 860px;
  font-weight: 300;
}

.aboutImageWrap{
  display:flex;
  justify-content:flex-end;
}

.aboutImage{
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  object-fit: cover;
  background: rgba(255,255,255,0.06);
}

@media (max-width: 980px){
  .aboutGrid{ grid-template-columns: 1fr; }
  .aboutImageWrap{ justify-content:flex-start; }
  .aboutImage{ max-width: 520px; }
}

.tags{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 12px;
}

.tagPlain{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.88);
  font-weight: 450;
  font-size: 0.9rem;
}

/* ================================
   MEDIA
   ================================ */
.mediaGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.embed{
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #000;
}

@media (max-width: 900px){
  .mediaGrid{ grid-template-columns: 1fr; }
}

/* ================================
   BANDS
   ================================ */
.bands{
  display:flex;
  flex-direction:column;
  gap: 26px;
}

.band{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items:start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.bandImg{
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.06);
}

.bandBody{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.bandName{
  margin:0;
  color: rgba(255,255,255,0.95);
  font-weight: 220;                 /* deutlich schlanker */
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.bandText{
  margin:0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 760px;
  font-weight: 300;
}

.bandLinks{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

.band--featured .bandName{
  text-shadow: none;
}

@media (max-width: 980px){
  .band{ grid-template-columns: 1fr; }
}

/* ================================
   CONTACT / FOOTER
   ================================ */
.contact{
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.contactLine{
  margin: 0;
  color: var(--muted);
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 300;
}

.contactSocial{
  margin-top: 10px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

.footer{
  margin-top: 40px;
  padding: 18px 0 10px 0;
  color: var(--muted2);
  text-align:left;
  font-size: 0.95rem;
  font-weight: 300;
}

.poweredBy{
  margin: 10px 0 0 0;
  color: var(--muted2);
  font-size: 0.92rem;
  font-weight: 300;
}
.poweredBy a{
  color: var(--brand);
  text-decoration: none;
  font-weight: 520;
}
.poweredBy a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ================================
   MOBILE NAV DROPDOWN (SLIDE)
   ================================ */
@media (max-width: 860px){
  .navToggle{
    display:inline-flex;
  }

  /* Wichtig: NICHT display:none => sonst keine Animation */
  .navLinks{
    position:absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);

    flex-direction:column;
    gap: 6px;

    background: var(--panelBg);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.55);
    padding: 12px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* geschlossen */
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;

    transition:
      transform .22s ease,
      opacity .22s ease,
      max-height .22s ease,
      visibility 0s linear .22s;
  }

  /* geöffnet */
  .nav.is-open .navLinks{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 420px;

    transition:
      transform .22s ease,
      opacity .22s ease,
      max-height .22s ease,
      visibility 0s;
  }

  .navLink{
    width: 100%;
    justify-content:flex-start;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.92);
    font-weight: 350;
  }

  .navLink:hover{
    background: rgba(255,255,255,0.10);
    transform:none;
  }
}

/* ================================
   Legacy compatibility (optional)
   ================================ */
.MenuBar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}