:root {
  --bg: #14180f;
  --bg-2: #1c2216;
  --bg-3: #242c1c;
  --cream: #ece7d5;
  --cream-dim: #b9b9a3;
  --olive: #6b7d54;
  --olive-bright: #8a9d6b;
  --line: #39422c;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --max: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(120% 120% at 50% -10%, var(--bg-3) 0%, var(--bg) 55%);
  color: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  color: var(--olive-bright);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(30px, 5vw, 52px);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-lead {
  color: var(--cream-dim);
  font-size: 18px;
  max-width: 640px;
  margin-bottom: 48px;
}

/* ===== Header / Nav ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(20, 24, 15, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.brand span { font-size: 15px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cream-dim);
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--cream); }

.nav-cta {
  padding: 10px 22px;
  background: var(--olive);
  color: #0d1009 !important;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover { background: var(--olive-bright); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--cream);
  margin: 6px auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background:
    linear-gradient(180deg, rgba(20, 24, 15, 0.4), rgba(20, 24, 15, 0.9) 85%),
    url("../logo.jpg") center / cover no-repeat;
  background-attachment: fixed;
}

.hero-inner { max-width: 760px; }

.hero h1 {
  font-size: clamp(44px, 9vw, 96px);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.7);
}

.hero-tag {
  font-size: clamp(16px, 2.4vw, 22px);
  color: var(--cream);
  margin-top: 18px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 15px 32px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary { background: var(--olive); color: #0d1009; }
.btn-primary:hover { background: var(--olive-bright); }

.btn-ghost { border-color: var(--cream-dim); color: var(--cream); }
.btn-ghost:hover { background: rgba(236, 231, 213, 0.1); }

/* ===== About / Band ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-photo {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-text p { color: var(--cream-dim); margin-bottom: 18px; }
.about-text p strong { color: var(--cream); font-weight: 700; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.stat b {
  display: block;
  font-size: 34px;
  color: var(--olive-bright);
  line-height: 1;
}

.stat small { color: var(--cream-dim); font-size: 13px; letter-spacing: 1px; }

/* ===== Konzerte ===== */
#konzerte { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.gig {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.gig:last-of-type { border-bottom: none; }

.gig-date {
  text-align: center;
  padding: 14px 10px;
  background: var(--bg-3);
  border: 1px solid var(--line);
}

.gig-date b { display: block; font-size: 34px; line-height: 1; }
.gig-date span { text-transform: uppercase; letter-spacing: 2px; font-size: 13px; color: var(--olive-bright); }

.gig-info h3 { font-size: 22px; text-transform: uppercase; }
.gig-info p { color: var(--cream-dim); font-size: 15px; margin-top: 4px; }

.gig-cta .btn { white-space: nowrap; }

.gig-note {
  margin-top: 8px;
  color: var(--cream-dim);
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* ===== Kontakt / Footer ===== */
.contact { text-align: center; }
.contact .section-lead { margin-left: auto; margin-right: auto; }

.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  text-align: center;
  color: var(--cream-dim);
  font-size: 13px;
  letter-spacing: 1px;
}

.footer .brand { justify-content: center; margin-bottom: 14px; }

/* ===== Mobile ===== */
@media (max-width: 860px) {
  .section { padding: 68px 0; }

  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 8px;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 26px;
    align-items: stretch;
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s ease, opacity 0.32s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 4px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links li:last-child a { border-bottom: none; }

  .nav-cta { text-align: center; margin-top: 8px; border: none !important; }

  .hero { background-attachment: scroll; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }

  .gig { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .gig-date { max-width: 160px; margin: 0 auto; }
  .gig-cta { justify-self: center; }
}
