@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Exo+2:wght@400;600;700&family=Orbitron:wght@400;700&family=Quantico:wght@400;700&family=Rajdhani:wght@400;600;700&family=Teko:wght@400;600;700&display=swap');

:root {
	 --bg-image: url('../images/band/band-picture.png');
	 --overlay-1: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.8));
	 --overlay-2: radial-gradient(900px 600px at 80% 30%, rgba(107,77,242,.18), transparent 60%), radial-gradient(700px 500px at 15% 80%, rgba(178,12,27,.22), transparent 60%);
	 --ink: #e8e6f2;
	 --muted:#b8b5c8;
}
 * {
	 box-sizing: border-box 
}
 html,body {
	 height:100% 
}
 body {
	 margin:0;
	 font-family:'Orbitron',system-ui,Segoe UI,Roboto,Arial,sans-serif;
	 color:var(--ink);
	 background:#090910;
}
/* Hero Layout */
 .hero {
	 min-height: 100svh;
	 position: relative;
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 text-align: center;
	 overflow: hidden;
	 background: #090910 center/cover no-repeat;
	 background-image: var(--bg-image);
	 padding-top: 6vh;
}
 .hero::after {
	 content: "";
	 position: absolute;
	 inset: 0;
	 background: var(--overlay-1), var(--overlay-2);
	 pointer-events: none;
}
 .hero-logo-wrap {
	 position: relative;
	 z-index: 2;
	 margin-bottom: 4vh;
}
 .hero-inner {
	 margin-top: auto;
	 margin-bottom: 12vh;
	 position: relative;
	 z-index: 2;
	 padding: 0 20px;
}
/* Logo Glow */
 .hero-logo {
	 max-width: clamp(220px, 38vw, 720px);
	 width: 100%;
	 height: auto;
	 filter: brightness(0) invert(1) drop-shadow(0 0 14px rgba(255,255,255,.75)) drop-shadow(0 0 24px rgba(107,77,242,.45));
}
/* Buttons */
 .btn {
	 position: relative;
	 display:inline-block;
	 margin:.25em;
	 padding:12px 22px;
	 text-decoration:none;
	 color:var(--ink);
	 border:1px solid rgba(255,255,255,.25);
	 border-radius:10px;
	 background: rgba(255,255,255,.06);
	 backdrop-filter: blur(4px);
	 transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
	 overflow: hidden;
	 will-change: transform;
}
 .btn:hover {
	 transform: translateY(-2px);
	 border-color: rgba(255,255,255,.35);
	 box-shadow: 0 6px 28px rgba(0,0,0,.45);
}
 .btn--primary {
	 border-color: transparent;
	 background: linear-gradient(90deg, rgba(178,12,27,.28), rgba(107,77,242,.32));
}
 .btn--primary::before {
	 content:"";
	 position:absolute;
	 inset:-2px;
	 border-radius:12px;
	 background: linear-gradient(90deg,#b20c1b,#6b4df2,#b20c1b);
	 filter: blur(18px);
	 opacity:.28;
	 z-index:-1;
}
/* Social Icons */
 .social-icons {
	 margin-top: -3.3em;
	 display:flex;
	 justify-content:center;
	 gap:16px;
}
 .social-icons a {
	 width:60px;
	 height:60px;
	 display:flex;
	 align-items:center;
	 justify-content:center;
	 border-radius:50%;
	 background: rgba(255,255,255,.08);
	 transition: background .25s ease;
}
 .social-icons a img {
	 width:40px;
	 height:40px;
	 object-fit: contain;
	 filter: invert(1) opacity(.7);
	 transition: filter .25s ease, transform .25s ease;
}
 .social-icons a:hover img {
	 filter: invert(1) opacity(1) drop-shadow(0 0 8px rgba(107,77,242,.45));
	 transform: translateY(-1px);
}
/* ===== GIGS – OVERLAY VARIANT (transparent, gläsern) ===== */
 .gigs{
	 position: relative;
	 padding: clamp(28px, 5vw, 56px) 20px;
	/* KEIN deckender Hintergrund mehr */
	 background: transparent;
	 border-top: 0;
	 z-index: 3;
	/* über dem Hero-Bild */
}
/* zieht die Gigs leicht in den Hero rein, ohne das Bild zu verdecken */
 .gigs--overlay{
	 margin-top: clamp(-80px, -10vh, -40px);
}
 .gigs__inner{
	 max-width: 1100px;
	 margin: 0 auto;
}
 .gigs__head{
	 text-align: center;
	 margin-bottom: 18px;
}
 .gigs__head h2{
	 font-family: "Cinzel", serif;
	 font-size: clamp(1.3rem, 2vw, 2rem);
	 letter-spacing: .02em;
	 margin: 0 0 6px;
	 text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
 .gigs__sub{
	 color: var(--muted);
	 margin: 0;
}
/* Liste */
 .gigs__list{
	 list-style: none;
	 margin: 0;
	 padding: 0;
	 display: grid;
	 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	 gap: 14px;
}
/* Card – gläsern & kompakt */
 .gig{
	 grid-template-columns: 90px 1fr auto;
	 align-items: center;
	 gap: 14px;
	 padding: 12px;
	 background: rgba(12,12,18,.48);
	/* halbtransparent */
	 border: 1px solid rgba(255,255,255,.08);
	 border-radius: 14px;
	 backdrop-filter: blur(6px);
	/* Glass */
	 box-shadow: 0 8px 28px rgba(0,0,0,.35);
}
 @media (max-width: 640px){
	 .gig{
		 grid-template-columns: 80px 1fr;
		 grid-template-areas: "date meta" "cta cta";
	}
}
/* Datum – kleiner, edler */
 .gig__date{
	 grid-area: date;
	 display: grid;
	 align-items: center;
	 justify-items: center;
	 gap: 2px;
	 width: 100%;
	 padding: 10px 6px;
	 border-radius: 10px;
	 background: linear-gradient(135deg, rgba(178,12,27,.15), rgba(107,77,242,.15));
	 border: 1px solid rgba(255,255,255,.12);
	 color: #eae8f5;
	 text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
 .gig__day {
	 font-size: 1.4rem;
	 font-weight: 700;
	 line-height: 1;
}
 .gig__month {
	 text-transform: uppercase;
	 letter-spacing: .08em;
	 opacity: .9;
	 font-size:.8rem;
}
 .gig__year {
	 font-size: .75rem;
	 color: var(--muted);
}
/* Meta */
 .gig__meta{
	 grid-area: meta;
	 min-width: 0;
}
 .gig__city{
	 margin: 20px 0px 2px;
	 font-size: 1rem;
	 letter-spacing:.01em;
	 white-space: nowrap;
	 overflow: hidden;
	 text-overflow: ellipsis;
}
 .gig__venue{
	 font-weight: 600;
	 color: #e8e6f2;
	 opacity:.9;
	 display: inline-block;
	 margin-left: .35ch;
}
 .gig__note{
	 margin: 0;
	 color: var(--muted);
	 font-size: .9rem;
	 white-space: nowrap;
	 overflow: hidden;
	 text-overflow: ellipsis;
}
 .gig__tags{
	 margin-top: 6px;
	 display:flex;
	 gap: 8px;
	 flex-wrap: wrap;
}
 .tag{
	 padding: 3px 8px;
	 font-size: .7rem;
	 border: 1px solid rgba(255,255,255,.18);
	 border-radius: 999px;
	 color: #e8e6f2;
	 opacity:.9;
	 background: rgba(255,255,255,.03);
}
 .tag--new {
	 border-color: rgba(107,77,242,.55);
	 box-shadow: inset 0 0 14px rgba(107,77,242,.25);
}
 .tag--sold{
	 border-color: rgba(178,12,27,.6);
	 color:#ffb8c0;
}
/* CTA rechts;
 mobil mittig */
 .gig__cta{
	 display: flex;
	 gap: 8px;
	 align-items: center;
	 justify-content: flex-end;
}
 @media (max-width: 640px){
	 .gig__cta{
		 grid-area: cta;
		 justify-content: center;
	}
}
/* Buttons – glasige Varianten */
 .btn--ghost{
	 border-color: rgba(255,255,255,.2);
	 background: rgba(255,255,255,.04);
}
/* Ausverkauft – dezenter */
 .gig.is-soldout{
	 opacity: .8;
	 background: rgba(178,12,27,.08);
	 border-color: rgba(178,12,27,.25);
}
/* ===== Mobile Polish (<= 600px) ===== */
 @media (max-width: 600px){
	/* mehr Luft rund um Notch/Statusbar */
	 body {
		 padding-top: env(safe-area-inset-top, 0);
	}
	/* Logo kleiner + etwas mehr Abstand darunter */
	 .hero-logo{
		 width: min(78vw, 380px);
		 filter: drop-shadow(0 0 10px rgba(255,255,255,.6)) drop-shadow(0 0 18px rgba(107,77,242,.35));
	}
	 .hero-logo-wrap{
		 margin-bottom: 3vh;
	}
	/* Social Icons kompakter */
	 .social-icons{
		 gap: 10px;
		 margin-top: 1.2em;
	}
	 .social-icons a{
		 width: 38px;
		 height: 38px;
	}
	 .social-icons a img{
		 width: 18px;
		 height: 18px;
	}
	/* CTA-Buttons kleiner */
	 .btn{
		 padding:10px 16px;
		 font-size: .95rem;
	}
	/* Hero-Text weniger Zeilenhöhe + etwas nach oben, damit darunter Platz für die Gigs bleibt */
	 .hero-inner{
		 margin-bottom: 8vh;
		/* vorher 10–14vh */
	}
	/* ===== Gigs-Panel – „breit & luftig“, nicht gedrungen ===== */
	 .gigs-panel{
		 position: static;
		/* unter dem Hero, volle Breite */
		 width: min(94vw, 560px);
		 margin: 12px auto 0;
	}
	 .gigs-panel__list{
		 gap: 12px;
	}
	/* Card kompakter, weniger Blur/Shadow */
	 .gig{
		 grid-template-columns: 72px 1fr auto;
		 gap: 10px;
		 padding: 10px;
		 border-radius: 12px;
		 backdrop-filter: blur(4px);
		 box-shadow: 0 6px 18px rgba(0,0,0,.28);
	}
	/* Datumsfeld kleiner */
	 .gig__date{
		 padding: 8px 4px;
		 border-radius: 10px;
		 background: linear-gradient(135deg, rgba(178,12,27,.16), rgba(107,77,242,.16));
	}
	 .gig__date b{
		 font-size: 1.2rem;
	}
	 .gig__date span{
		 font-size: .72rem;
		 letter-spacing: .06em;
	}
	 .gig__date i{
		 font-size: .68rem;
	}
	/* Texte kürzer/lesbarer */
	 .gig__city{
		 font-size: .98rem;
	}
	 .gig__note{
		 font-size: .86rem;
	}
	 .gig__tags{
		 margin-top: 4px;
	}
	 .tag{
		 padding: 2px 7px;
		 font-size: .68rem;
	}
	/* CTA-Button schmaler */
	 .gig__cta{
		 padding: 8px 12px;
		 font-size: .9rem;
	}
	/* mehr Abstand unterhalb des Blocks, damit Footer/Socials nicht kollidieren */
	 .gigs{
		 padding: 20px 14px 28px;
	}
}
/* ===== sehr kleine Geräte (<= 360px) – Extraschrumpfung ===== */
 @media (max-width: 360px){
	 .gig{
		 grid-template-columns: 64px 1fr;
	}
	 .gig__cta{
		 grid-column: 1 / -1;
		 justify-self: center;
		 margin-top: 6px;
	}
}

/* ---------- Social Slider — CSS only ---------- */
.social{
  display:flex; justify-content:center; margin-top:1.25rem;
}

/* Sichtfenster */
.social__viewport{
  position: relative;
  max-width: 92vw;            /* Mobile: begrenzen */
  overflow: hidden;           /* Ränder „maskieren“ */
}

/* weiches Fade an den Seiten (immer leicht sichtbar) */
.social__viewport::before,
.social__viewport::after{
  content:"";
  position:absolute; top:0; bottom:0; width:26px; z-index:2; pointer-events:none;
  background: linear-gradient(to right, rgba(11,11,18,1), rgba(11,11,18,0));
}
.social__viewport::after{ right:0; transform:scaleX(-1); }
.social__viewport::before{ left:0; }

/* Track: horizontal scroll + Snap */
.social__track{
  display:flex; align-items:center; gap:14px;
  padding:4px 12px;
  overflow-x:auto; overflow-y:hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* smooth auf iOS */
  scroll-behavior: smooth;
  scrollbar-width: none;                 /* Firefox: ausblenden */
}
.social__track::-webkit-scrollbar{ display:none; }  /* WebKit/Chromium */

/* Jedes Icon snappt zentriert ein */
.social__track > a{
  flex:0 0 auto;
  scroll-snap-align: center;
}

/* Icon-Optik (deine vorhandenen Werte, leicht gestrafft) */
.social a{
  width:50px; height:50px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  background: rgba(255,255,255,.08);
}
.social a img{
  width:30px; height:30px; object-fit:contain;
  filter: invert(1) opacity(.75);
  transition: filter .2s ease, transform .2s ease;
}
.social a:hover img{
  filter: invert(1) opacity(1) drop-shadow(0 0 8px rgba(107,77,242,.45));
  transform: translateY(-1px);
}

/* Desktop: wenn genug Platz, nicht beschneiden */
@media (min-width: 500px){
  .social__viewport{ overflow: visible; max-width:none; }
  .social__viewport::before,
  .social__viewport::after{ display:none; }
  .social__track{ overflow: visible; }
}

/* --------- GLITCH EFFECT --------- */

.hero-glitch {
  font-size: clamp(20px, 10vw, 80px);
  line-height: 1;
  display: inline-block;
  color: #fff;
  z-index: 2;
  letter-spacing: 7px;

  /* Bright things in dark environments usually cast that light, giving off a glow */
  filter: drop-shadow(10px 10px 30px);
}

.demo {
  height: 100px;
  background: #fff;
}

.layers {
  position: relative;
}

.layers::before,
.layers::after {
  content: attr(data-text);
  position: absolute;
  width: 110%;
  z-index: -1;
}

.layers::before {
  top: 10px;
  left: 15px;
  color: #e0287d;
}

.layers::after {
  top: 5px;
  left: -10px;
  color: #1bc7fb;
}

.single-path {
  clip-path: polygon(
    0% 12%,
    53% 12%,
    53% 26%,
    25% 26%,
    25% 86%,
    31% 86%,
    31% 0%,
    53% 0%,
    53% 84%,
    92% 84%,
    92% 82%,
    70% 82%,
    70% 29%,
    78% 29%,
    78% 65%,
    69% 65%,
    69% 66%,
    77% 66%,
    77% 45%,
    85% 45%,
    85% 26%,
    97% 26%,
    97% 28%,
    84% 28%,
    84% 34%,
    54% 34%,
    54% 89%,
    30% 89%,
    30% 58%,
    83% 58%,
    83% 5%,
    68% 5%,
    68% 36%,
    62% 36%,
    62% 1%,
    12% 1%,
    12% 34%,
    60% 34%,
    60% 57%,
    98% 57%,
    98% 83%,
    1% 83%,
    1% 53%,
    91% 53%,
    91% 84%,
    8% 84%,
    8% 83%,
    4% 83%
  );
}

.paths {
  animation: paths 5s step-end infinite;
}

@keyframes paths {
  0% {
    clip-path: polygon(
      0% 43%,
      83% 43%,
      83% 22%,
      23% 22%,
      23% 24%,
      91% 24%,
      91% 26%,
      18% 26%,
      18% 83%,
      29% 83%,
      29% 17%,
      41% 17%,
      41% 39%,
      18% 39%,
      18% 82%,
      54% 82%,
      54% 88%,
      19% 88%,
      19% 4%,
      39% 4%,
      39% 14%,
      76% 14%,
      76% 52%,
      23% 52%,
      23% 35%,
      19% 35%,
      19% 8%,
      36% 8%,
      36% 31%,
      73% 31%,
      73% 16%,
      1% 16%,
      1% 56%,
      50% 56%,
      50% 8%
    );
  }

  5% {
    clip-path: polygon(
      0% 29%,
      44% 29%,
      44% 83%,
      94% 83%,
      94% 56%,
      11% 56%,
      11% 64%,
      94% 64%,
      94% 70%,
      88% 70%,
      88% 32%,
      18% 32%,
      18% 96%,
      10% 96%,
      10% 62%,
      9% 62%,
      9% 84%,
      68% 84%,
      68% 50%,
      52% 50%,
      52% 55%,
      35% 55%,
      35% 87%,
      25% 87%,
      25% 39%,
      15% 39%,
      15% 88%,
      52% 88%
    );
  }

  30% {
    clip-path: polygon(
      0% 53%,
      93% 53%,
      93% 62%,
      68% 62%,
      68% 37%,
      97% 37%,
      97% 89%,
      13% 89%,
      13% 45%,
      51% 45%,
      51% 88%,
      17% 88%,
      17% 54%,
      81% 54%,
      81% 75%,
      79% 75%,
      79% 76%,
      38% 76%,
      38% 28%,
      61% 28%,
      61% 12%,
      55% 12%,
      55% 62%,
      68% 62%,
      68% 51%,
      0% 51%,
      0% 92%,
      63% 92%,
      63% 4%,
      65% 4%
    );
  }

  45% {
    clip-path: polygon(
      0% 33%,
      2% 33%,
      2% 69%,
      58% 69%,
      58% 94%,
      55% 94%,
      55% 25%,
      33% 25%,
      33% 85%,
      16% 85%,
      16% 19%,
      5% 19%,
      5% 20%,
      79% 20%,
      79% 96%,
      93% 96%,
      93% 50%,
      5% 50%,
      5% 74%,
      55% 74%,
      55% 57%,
      96% 57%,
      96% 59%,
      87% 59%,
      87% 65%,
      82% 65%,
      82% 39%,
      63% 39%,
      63% 92%,
      4% 92%,
      4% 36%,
      24% 36%,
      24% 70%,
      1% 70%,
      1% 43%,
      15% 43%,
      15% 28%,
      23% 28%,
      23% 71%,
      90% 71%,
      90% 86%,
      97% 86%,
      97% 1%,
      60% 1%,
      60% 67%,
      71% 67%,
      71% 91%,
      17% 91%,
      17% 14%,
      39% 14%,
      39% 30%,
      58% 30%,
      58% 11%,
      52% 11%,
      52% 83%,
      68% 83%
    );
  }

  76% {
    clip-path: polygon(
      0% 26%,
      15% 26%,
      15% 73%,
      72% 73%,
      72% 70%,
      77% 70%,
      77% 75%,
      8% 75%,
      8% 42%,
      4% 42%,
      4% 61%,
      17% 61%,
      17% 12%,
      26% 12%,
      26% 63%,
      73% 63%,
      73% 43%,
      90% 43%,
      90% 67%,
      50% 67%,
      50% 41%,
      42% 41%,
      42% 46%,
      50% 46%,
      50% 84%,
      96% 84%,
      96% 78%,
      49% 78%,
      49% 25%,
      63% 25%,
      63% 14%
    );
  }

  90% {
    clip-path: polygon(
      0% 41%,
      13% 41%,
      13% 6%,
      87% 6%,
      87% 93%,
      10% 93%,
      10% 13%,
      89% 13%,
      89% 6%,
      3% 6%,
      3% 8%,
      16% 8%,
      16% 79%,
      0% 79%,
      0% 99%,
      92% 99%,
      92% 90%,
      5% 90%,
      5% 60%,
      0% 60%,
      0% 48%,
      89% 48%,
      89% 13%,
      80% 13%,
      80% 43%,
      95% 43%,
      95% 19%,
      80% 19%,
      80% 85%,
      38% 85%,
      38% 62%
    );
  }

  1%,
  7%,
  33%,
  47%,
  78%,
  93% {
    clip-path: none;
  }
}

.movement {
  /* Normally this position would be absolute & on the layers, set to relative here so we can see it on the div */
  position: relative;
  animation: movement 8s step-end infinite;
}

@keyframes movement {
  0% {
    top: 0px;
    left: -20px;
  }

  15% {
    top: 10px;
    left: 10px;
  }

  60% {
    top: 5px;
    left: -10px;
  }

  75% {
    top: -5px;
    left: 20px;
  }

  100% {
    top: 10px;
    left: 5px;
  }
}

.opacity {
  animation: opacity 5s step-end infinite;
}

@keyframes opacity {
  0% {
    opacity: 0.1;
  }

  5% {
    opacity: 0.7;
  }

  30% {
    opacity: 0.4;
  }

  45% {
    opacity: 0.6;
  }

  76% {
    opacity: 0.4;
  }

  90% {
    opacity: 0.8;
  }

  1%,
  7%,
  33%,
  47%,
  78%,
  93% {
    opacity: 0;
  }
}

.font {
  animation: font 7s step-end infinite;
}

@keyframes font {
  0% {
    font-weight: 100;
    color: #e0287d;
    filter: blur(3px);
  }

  20% {
    font-weight: 500;
    color: #fff;
    filter: blur(0);
  }

  50% {
    font-weight: 300;
    color: #1bc7fb;
    filter: blur(2px);
  }

  60% {
    font-weight: 700;
    color: #fff;
    filter: blur(0);
  }

  90% {
    font-weight: 500;
    color: #e0287d;
    filter: blur(6px);
  }
}

.glitch span {
  animation: paths 5s step-end infinite;
}

.glitch::before {
  animation: paths 5s step-end infinite, opacity 5s step-end infinite,
    font 8s step-end infinite, movement 10s step-end infinite;
}

.glitch::after {
  animation: paths 5s step-end infinite, opacity 5s step-end infinite,
    font 7s step-end infinite, movement 8s step-end infinite;
}

.hero-container {
  position: relative;
  text-align: center;
}

.environment {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
  filter: blur(5px);
  background-size: cover;
}
