/* =========================================================
   R.A.W. WEBSITE STYLESHEET
   ---------------------------------------------------------
   Hier kannst du Farben, Abstände, Schriften und Layout
   der ganzen Website anpassen.
   ========================================================= */

/* ---------- Globale Farbvariablen ---------- */
:root {
  --bg: #050505;
  --bg-soft: #0d0d0f;
  --panel: rgba(14, 14, 16, 0.88);
  --panel-strong: rgba(20, 10, 10, 0.95);
  --border: rgba(255, 64, 64, 0.16);
  --text: #f7f2f2;
  --muted: #b3a4a4;
  --red: #a91414;
  --red-bright: #ff3b3b;
  --red-soft: #ff9494;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

/* ---------- Basis-Reset ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(168, 18, 18, 0.14), transparent 30%),
    linear-gradient(180deg, #060606 0%, #0a0a0b 45%, #050505 100%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.section { padding: 5.5rem 0; }
.section-tight { padding: 3.5rem 0; }

.page-hero {
  padding: 8rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.48), rgba(0,0,0,0.72)),
    radial-gradient(circle at center, rgba(255, 60, 60, 0.12), transparent 45%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.eyebrow {
  color: var(--red-soft);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  margin-bottom: 0.9rem;
}

h1, h2, h3 { margin: 0 0 1rem; line-height: 1.05; }
h1 { font-size: clamp(2.5rem, 6vw, 5.8rem); }
h2 { font-size: clamp(2rem, 3vw, 3rem); }
h3 { font-size: 1.35rem; }

p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.lead { font-size: 1.08rem; max-width: 62ch; }
.accent { color: var(--red-bright); }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 5, 0.74);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
}

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 24px rgba(255, 54, 54, 0.18);
}

.brand-title {
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-subtitle {
  display: block;
  color: var(--muted);
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  margin-top: 0.15rem;
}

.desktop-nav {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.desktop-nav a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: #f0e9e9;
  transition: 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  background: rgba(255, 58, 58, 0.12);
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 1.3rem;
}

.mobile-menu { display: none; padding: 0 0 1rem; }
.mobile-menu.open { display: grid; gap: 0.65rem; }

.mobile-menu a {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ---------- Hero Startseite ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 3.5rem 0 4rem;
}

.hero::before {
  /* Dunkle Grundstimmung im Hintergrund */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.40) 50%, rgba(0,0,0,0.80) 100%),
    radial-gradient(circle at 20% 20%, rgba(255, 45, 45, 0.12), transparent 24%),
    radial-gradient(circle at 80% 75%, rgba(255, 45, 45, 0.06), transparent 18%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.hero-card {
  background: rgba(10,10,12,0.74);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  background: #111;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.14), rgba(0,0,0,0.44)),
    radial-gradient(circle at 70% 20%, rgba(255, 50, 50, 0.18), transparent 26%);
  pointer-events: none;
}

.hero-visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.02);
}

.hero-logo-box {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  width: min(42%, 260px);
  background: rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 0.85rem;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 50px rgba(255, 40, 40, 0.16);
  z-index: 2;
}

.hero-logo-box img {
  width: 100%;
  border-radius: 20px;
}

/* ---------- Buttons ---------- */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.25s ease;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, #b10f0f, #ff4141);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 51, 51, 0.24);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 51, 51, 0.3);
}

.button-secondary {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}

.button-secondary:hover {
  border-color: rgba(255, 58, 58, 0.32);
  background: rgba(255, 58, 58, 0.08);
}

/* ---------- Cards / Grids ---------- */
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Mitglieder-Grid:
   Hier mit auto-fit, damit 5 Mitglieder sauber umbrechen. */
.members-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: linear-gradient(180deg, rgba(20,20,22,0.92), rgba(10,10,12,0.95));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.45rem;
  box-shadow: var(--shadow);
}

.meta {
  color: var(--red-soft);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Member Cards ---------- */
.member-card { overflow: hidden; padding: 0; }

.member-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.member-content { padding: 1.2rem; }

.member-role {
  color: var(--red-soft);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Event Liste ---------- */
.events-list {
  display: grid;
  gap: 1rem;
}

.event-item {
  display: grid;
  gap: 1rem;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  background: linear-gradient(180deg, rgba(25, 10, 10, 0.9), rgba(9, 9, 10, 0.95));
  border: 1px solid rgba(255, 52, 52, 0.18);
  border-radius: var(--radius-lg);
  padding: 1rem 1.2rem;
}

.event-date {
  border-radius: 20px;
  background: rgba(255, 58, 58, 0.12);
  border: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  padding: 1rem 0.7rem;
}

.event-date strong {
  display: block;
  font-size: 2rem;
  color: var(--text);
}

.event-badge {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  background: rgba(255,255,255,0.05);
  color: #fff;
  white-space: nowrap;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.3fr 1fr 1fr;
}

.gallery-tile {
  border-radius: 22px;
  overflow: hidden;
  min-height: 260px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.4));
}

.gallery-wide { grid-row: span 2; }

.placeholder-text {
  display: grid;
  place-items: center;
  min-height: 260px;
  text-align: center;
  color: var(--muted);
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.03)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 12px, transparent 12px 24px);
}

/* ---------- Kontakt ---------- */
.contact-stack {
  display: grid;
  gap: 1rem;
  max-width: 720px;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 1rem 1.15rem;
}

.contact-label {
  color: var(--red-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 3rem;
  background: rgba(0,0,0,0.22);
}

.footer-inner {
  padding: 1.25rem 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .grid-2, .grid-3, .grid-4, .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-logo-box {
    width: min(48%, 240px);
  }

  .gallery-wide { grid-row: span 1; }

  .event-item {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .desktop-nav { display: none; }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 3rem 0 4rem;
  }

  .hero-card { padding: 1.4rem; }
  .page-hero { padding-top: 6rem; }
  .section { padding: 4.2rem 0; }

  .contact-row {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* =========================================================
   GIG-COUNTDOWN / EVENTS HERO
   ---------------------------------------------------------
   Diese Styles sind für die Countdown-Box auf der Gigs-Seite.
   ========================================================= */
.events-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 420px);
  gap: 2rem;
  align-items: end;
}

.countdown-card {
  background: linear-gradient(180deg, rgba(26, 12, 12, 0.94), rgba(10, 10, 12, 0.98));
  border: 1px solid rgba(255, 58, 58, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.countdown-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.countdown-timer {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 58, 58, 0.10);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.4;
}

.countdown-note {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .events-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}


/* =========================================================
   REPERTOIRE
   ---------------------------------------------------------
   Styles für die Songliste auf repertoire.html
   ========================================================= */
.repertoire-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.song-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.song-row h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.song-row p {
  margin: 0;
}

.song-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 58, 58, 0.14);
  border: 1px solid rgba(255, 58, 58, 0.24);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.song-tag-soft {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
}

@media (max-width: 640px) {
  .song-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
