/* ============================================================
   LOKALE FONTS – Dateien in css/fonts/ ablegen
   (identisch mit custom.css – gemeinsam nutzen oder kopieren)
   ============================================================ */

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'DM Mono';
  src: url('fonts/DMMono-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Mono';
  src: url('fonts/DMMono-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Root ───────────────────────────────────────────────── */
:root {
  --bg:       #0a0806;
  --bg-alt:   #0f0c09;
  --red:      #0d9e8f;
  --red-lt:   #12c4b2;
  --cream:    #f0e8d8;
  --muted:    #9a8f82;
  --line:     rgba(13,158,143,.22);
  --serif:    'Cormorant Garamond', Georgia, serif;
  --mono:     'DM Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Noise */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .04;
  pointer-events: none;
  z-index: 9999;
}

h1, h2, h3 { color: var(--cream); }
em { font-style: italic; color: var(--red-lt); }
strong { font-weight: 600; color: var(--cream); }

.eyebrow {
  font-family: var(--mono);
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 1rem;
}

/* ── Reveal ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── NAV ───────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s;
}
#nav.scrolled {
  background: rgba(10,8,6,.92);
  backdrop-filter: blur(12px);
  border-color: var(--line);
}
.nav-logo {
  font-family: var(--mono);
  font-size: .85rem;
  letter-spacing: .22em;
  color: var(--cream);
  text-decoration: none;
  justify-self: start;
}
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-family: var(--mono);
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(240,232,216,.65);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--red-lt); }

.nav-hamburger {
  display: none;
  background: transparent; border: none;
  cursor: pointer; padding: .4rem;
  color: var(--cream);
  justify-self: end;
}

/* ── HERO ──────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(.45) saturate(.6);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10,8,6,1) 0%, rgba(10,8,6,.3) 45%, transparent 80%),
    linear-gradient(to right, rgba(10,8,6,.5) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  padding: 0 5rem 6rem;
  z-index: 2;
}
.hero-title {
  font-family: var(--mono);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 400;
  letter-spacing: .05em;
  line-height: .95;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero-title em {
  display: block;
  font-style: normal;
  color: var(--red);
  text-shadow: 0 0 60px rgba(13,158,143,.4);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(240,232,216,.8);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--mono);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--red);
  text-decoration: none;
  padding: .9rem 2.4rem;
  transition: background .2s;
}
.hero-cta:hover { background: var(--red-lt); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; right: 4rem;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: .3; }
  50%       { opacity: 1; }
}

/* ── ABOUT ─────────────────────────────────────────────── */
#about { padding: 7rem 2.5rem; background: var(--bg-alt); }
.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 6s ease;
}
.about-photo:hover img { transform: scale(1.04); }
.about-photo-frame {
  position: absolute; inset: 0;
  border: 1px solid var(--line);
  transform: translate(12px, 12px);
  pointer-events: none;
}
.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.about-text p {
  color: rgba(240,232,216,.85);
  margin-bottom: 1.2rem;
}
.members {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.member { display: flex; flex-direction: column; gap: .3rem; }
.member-name {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--cream);
}
.member-role {
  font-family: var(--mono);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
}
.member-divider {
  height: 1px;
  background: var(--line);
}

/* ── FULL BLEED ────────────────────────────────────────── */
.full-bleed {
  position: relative;
  height: 55vh;
  overflow: hidden;
}
.full-bleed img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(.5) saturate(.7);
}
.full-bleed-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,8,6,.35);
}
.stage-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  text-align: center;
  border: none;
  padding: 0 2rem;
  line-height: 1.4;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
}

/* ── PROGRAMM ──────────────────────────────────────────── */
#programm { padding: 7rem 2.5rem; background: var(--bg); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 4rem; }
.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  font-weight: 600;
}
.programm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
}
.prog-item {
  padding: 2.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.prog-item:nth-child(even) { border-right: none; }
.prog-item:nth-child(n+3) { border-bottom: none; }
.prog-item:hover { background: rgba(13,158,143,.05); }
.prog-num {
  display: block;
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: .18em;
  color: var(--red);
  margin-bottom: 1rem;
}
.prog-item h3 {
  font-size: 1.4rem;
  margin-bottom: .7rem;
}
.prog-item p { color: rgba(240,232,216,.8); font-size: .95rem; }

/* ── SETLIST ───────────────────────────────────────────── */
#setlist { padding: 7rem 2.5rem; background: var(--bg-alt); }
.setlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 3rem;
}
.setlist-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.setlist-item:hover { background: rgba(13,158,143,.06); }
.song {
  font-size: 1rem;
  color: var(--cream);
}
.artist {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
}
.setlist-note {
  margin-top: 2rem;
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--muted);
  font-style: italic;
}

/* ── MID PHOTO ─────────────────────────────────────────── */
.mid-photo {
  position: relative;
  height: 45vh;
  overflow: hidden;
}
.mid-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: brightness(.55) saturate(.8);
  transition: transform 6s ease;
}
.mid-photo:hover img { transform: scale(1.03); }
.mid-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,158,143,.15) 0%, transparent 60%);
}

/* ── EVENTS ────────────────────────────────────────────── */
#events { padding: 7rem 2.5rem; background: var(--bg); }
.events-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}
.event-tag {
  font-family: var(--mono);
  font-size: .88rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: rgba(240,232,216,.9);
  padding: .75rem 1.6rem;
  cursor: default;
  transition: border-color .2s, color .2s, background .2s;
}
.event-tag:hover {
  border-color: var(--red);
  color: var(--red-lt);
  background: rgba(13,158,143,.06);
}

/* ── KONTAKT ───────────────────────────────────────────── */
#kontakt {
  background: linear-gradient(160deg, #05100f 0%, var(--bg) 100%);
  text-align: center;
  padding: 8rem 2.5rem;
}
.kontakt-inner { max-width: 600px; margin: 0 auto; }
#kontakt h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
#kontakt p {
  color: rgba(240,232,216,.8);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}
.kontakt-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.kontakt-link {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: 1.3rem;
  color: var(--red-lt);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: .3rem;
  transition: color .2s, border-color .2s;
}
.kontakt-link:hover { color: var(--cream); border-color: var(--red); }

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--line);
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
footer p {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--cream);
}
footer a {
  color: rgba(240,232,216,.6);
  text-decoration: none;
  cursor: pointer;
  transition: color .2s;
}
footer a:hover { color: var(--red-lt); }

/* ── OFFCANVAS ─────────────────────────────────────────── */
#mobile-menu-duo .uk-offcanvas-bar {
  background: #0d0906 !important;
  width: 280px !important;
  padding: 2.5rem 2rem !important;
  border-right: 1px solid var(--line);
}
.mobile-logo {
  display: block;
  font-family: var(--mono);
  font-size: .85rem;
  letter-spacing: .22em;
  color: var(--cream);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav { list-style: none; display: flex; flex-direction: column; gap: .2rem; }
.mobile-nav a {
  display: block;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(240,232,216,.7);
  text-decoration: none;
  padding: .85rem .5rem;
  border-bottom: 1px solid rgba(13,158,143,.1);
  transition: color .2s, padding-left .2s;
}
.mobile-nav a:hover { color: var(--red-lt); padding-left: .8rem; }
.mobile-contact {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  line-height: 2.2;
}
.mobile-contact a { color: var(--red-lt); text-decoration: none; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; justify-self: end; }
  #nav { grid-template-columns: 1fr auto; }

  .hero-content { padding: 0 1.8rem 5rem; }
  .hero-title { font-size: clamp(3.5rem, 14vw, 6rem); }

  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo { aspect-ratio: 4/3; }

  .programm-grid { grid-template-columns: 1fr; }
  .prog-item { border-right: none !important; }
  .prog-item:last-child { border-bottom: none; }

  .setlist { grid-template-columns: 1fr; }

  .kontakt-links { flex-direction: column; align-items: center; gap: 1.2rem; }

  footer { flex-direction: column; text-align: center; }

  #about, #programm, #setlist, #events, #kontakt { padding: 5rem 1.5rem; }

  .full-bleed { height: 40vh; }
  .stage-quote { font-size: 1.2rem; }
}
