/* ====== Base / Reset ====== */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

:root{
  --bg: #0b0d12;
  --panel: rgba(255,255,255,0.06);
  --panel-strong: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --line: rgba(255,255,255,0.12);
  --accent: #7c5cff;
  --accent-2: #2ee59d;

  --radius: 18px;
  --shadow: 0 12px 40px rgba(0,0,0,0.35);
  --max: 1100px;

  --header-h: 72px;
}

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 700px at 10% 10%, rgba(124,92,255,0.22), transparent 60%),
              radial-gradient(900px 600px at 90% 20%, rgba(46,229,157,0.14), transparent 55%),
              var(--bg);
  line-height: 1.5;
}

img, video { max-width: 100%; height: auto; }

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: .6rem .8rem;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 1rem; top: 1rem; }

/* ====== Header / Nav ====== */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  background: rgba(11,13,18,0.75);
  backdrop-filter: blur(14px);
}

.nav-wrap{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.brand-mark{
  width: 149px; height: 149px; margin-top: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  /* background: linear-gradient(135deg, rgba(124,92,255,0.8), rgba(46,229,157,0.55)); */
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}
.brand-mark img{
    border-radius: 18px;
}
.brand-name{ font-size: .95rem; }

.nav{ display: block; }
.nav-list{
  list-style: none;
  display: flex;
  gap: 1.8rem;
  gap: 1.15rem;
  gap: 1.5rem;
  padding: 0; margin: 0;
}
.nav-link{
  display: inline-flex;
  align-items: center;
  padding: .55rem .75rem;
  border-radius: 999px;
  color: var(--muted);
}
.nav-link:hover{
  background: rgba(255,255,255,0.06);
  color: var(--text);
  text-decoration: none;
}
.nav-link.active{
  background: rgba(124,92,255,0.20);
  color: var(--text);
  outline: 1px solid rgba(124,92,255,0.25);
}

/* Burger */
.burger{
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
}
.burger:focus-visible{ outline: 2px solid rgba(124,92,255,0.55); outline-offset: 2px; }
.burger-lines{
  position: relative;
  display: block;
  width: 18px; height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
}
.burger-lines::before,
.burger-lines::after{
  content: "";
  position: absolute;
  left: 0;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.burger-lines::before{ top: -6px; }
.burger-lines::after{ top: 6px; }

/* Mobile nav panel */
@media (max-width: 840px){
  .burger{ display: inline-flex; align-items: center; justify-content: center; }
  .nav{
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    padding: 1rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .nav.is-open{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-list{
    flex-direction: column;
    gap: .25rem;
    background: rgba(11,13,18,0.92);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: .75rem;
    backdrop-filter: blur(12px);
  }
  .nav-link{ padding: .8rem .9rem; }
}

/* ====== Sections ====== */
.section{
  padding: calc(var(--header-h) + 3.5rem) 0 4.2rem;
}
.section:first-of-type{
  padding-top: calc(var(--header-h) + 5.3rem);
}

.section-head{
  margin-bottom: 1.6rem;
}
.section-head h2{
  margin: 0 0 .25rem 0;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  letter-spacing: -0.02em;
}
.subhead{
  margin: 0;
  color: var(--muted);
  max-width: 65ch;
}

.hero{
  position: relative;
  overflow: hidden;
}
.section-fade{
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.4rem;
  align-items: start;
}
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
}

.eyebrow{
  margin: 0 0 .35rem 0;
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .85rem;
}
h1{
  margin: 0 0 .6rem 0;
  font-size: clamp(4rem, 4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.lead{
  margin: 0 0 1.2rem 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
}

.cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.2rem;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  text-decoration: none;
  cursor: pointer;
}
.btn:hover{ text-decoration: none; background: rgba(255,255,255,0.07); }
.btn.primary{
  background: linear-gradient(135deg, rgba(124,92,255,0.85), rgba(46,229,157,0.55));
  border-color: rgba(255,255,255,0.18);
}

.quickfacts{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .35rem;
  color: var(--muted);
}
.quickfacts strong{ color: var(--text); }

.card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.hero-card{
  overflow: hidden;
  padding: 0;
}
.placeholder-art{
  
  display: block;

}
.hero-card-body{ padding: 1rem 0px; }
.mini-title{
  margin: 0 0 .35rem 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}
.gig{ margin: 0; }
.muted{ color: var(--muted); }
.tiny{ font-size: .85rem; }

/* Grids */
.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px){
  .grid-2{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
}

.members{
  list-style: none;
  padding: 0;
  margin: .2rem 0 0 0;
  display: grid;
  gap: .55rem;
}
.dot{
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(124,92,255,0.9);
  margin-right: .6rem;
}

.stats{
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
@media (max-width: 720px){
  .stats{ grid-template-columns: 1fr; }
}
.stat{
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .9rem 1rem;
}
.stat-num{
  display: block;
  font-weight: 900;
  font-size: 1.4rem;
}
.stat-label{ color: var(--muted); }

/* Media grid */
.media-grid, .img-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
}
@media (max-width: 980px){
  .media-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .media-grid{ grid-template-columns: 1fr; }
}
.media-tile{
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.media-tile figcaption{
  padding: .75rem .85rem;
  color: var(--muted);
  font-size: .95rem;
}

.video-card{ margin-top: 1rem; }
.video-responsive{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.2);
}
.video-responsive iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Chips */
.chips{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
  font-size: 20px;
}
.chip{
  padding: .45rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
}

/* Quotes */
.quote p{ margin: 0 0 .45rem 0; }
.quote p:last-child{ margin: 0; }

/* Form */
.form label{
  display: grid;
  gap: .35rem;
  margin-bottom: .85rem;
}
.form input,
.form textarea{
  width: 100%;
  padding: .7rem .75rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.18);
  color: var(--text);
}
.form input:focus,
.form textarea:focus{
  outline: 2px solid rgba(124,92,255,0.55);
  outline-offset: 2px;
}

/* Footer */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
  background: rgba(0,0,0,0.15);
}
.footer-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}
.to-top{
  color: var(--muted);
  cursor: pointer;
}
.to-top:hover{ color: var(--text); text-decoration: none; }

.ph{
}

.img-grid{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.pic{
	width: 31%;
	height: 250px;
	margin-bottom: 30px;
}
@media (max-width: 800px) {
    .pic{
            width: 100%;
    }
    
    #setlist ul{
        padding-left: 20px;
    }

}
.pic img{
		width: 100%;
		height: 100%;
		object-fit:cover;
		border-radius: 18px;
}
	
video{
	cursor: pointer;
	object-fit: fill;
	height: 100%; width: 100%;
	border-radius: 18px;
}

@keyframes mymove {
  50% {font-size: 35px;}
  50% { color: deeppink;}
 
}

@keyframes mymove2 {
  50% {font-size: 45px;}
}

#home h1.rotate{
    	   /*animation: mymove2 3.5s;*/
           color: azure;
}

.laura{
    span{
         animation: mymove 3.5s infinite;
/*         color: deeppink;*/
    }

}

.setlistcard ul{
    column-count: 2;      /* Anzahl Spalten */
  column-gap: 40px;  
}

#DirectContact{
     position: fixed; z-index: 20;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 520px);
  background: linear-gradient(135deg, rgba(124,92,255,1), rgba(46,229,157,0.95));
  padding: 40px;
  border-radius: 12px;
  z-index: 9999;
  display: none;
    
}

#DirectContact input{
    background: #333;
    color: #fff;
}
#DirectContact ::placeholder {
  color: #fff;
}

#DirectContact input[type="submit"]{
    cursor: pointer;
}
.or{
    text-align: center;
    font-size: 12px;
    padding: 10px;
}
.close{
    text-align: right;
    padding: 10px 0;
    position: relative;
    top: -30px;
    cursor: pointer;
}

p#status{
    font-size: 20px;
}