/* Floyd Vegas — Psychedelic Post Rock */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #12081f;
  --bg-card: rgba(28, 15, 46, 0.92);
  --bg-panel: rgba(38, 20, 62, 0.85);
  --border: rgba(168, 85, 247, 0.25);
  --text: #e8e0f0;
  --muted: #a08cb8;
  --accent: #ff8c1a;        /* Orange aus dem Logo */
  --accent-soft: rgba(255, 140, 26, 0.12);
  --violet: #a855f7;
  --violet-soft: rgba(168, 85, 247, 0.15);
  --purple-deep: #4a1a7a;
  --font-display: 'Tektur', 'Inter', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

/* Psychedelischer Grundhintergrund: Logo als Wasserzeichen + Violett-Nebel */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: #12081f;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(168, 85, 247, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(255, 140, 26, 0.08) 0%, transparent 50%),
    linear-gradient(rgba(18, 8, 31, 0.93), rgba(18, 8, 31, 0.93)),
    url('/assets/img/floyd-logo-alt.png');
  background-size: auto, auto, auto, 48vh;
  background-position: center, center, center, center center;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}

/* Hero */
.hero {
  height: 52vh;
  min-height: 360px;
  background-size: cover;
  background-position: center 25%;
  position: relative;
  display: flex;
  align-items: flex-end;
  filter: grayscale(35%) contrast(1.05);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(74, 26, 122, 0.35) 0%, transparent 45%),
    linear-gradient(180deg, rgba(18,8,31,0.2) 0%, rgba(18,8,31,0.95) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto; width: 100%;
  padding: 0 2rem 2.4rem;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700;
  color: #fff; letter-spacing: 0.04em;
  text-shadow: 0 2px 24px rgba(168, 85, 247, 0.5);
}
.hero .tagline {
  color: var(--accent);
  font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase;
  margin-top: 0.35rem;
}
.hero-logo {
  width: 110px; height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(168, 85, 247, 0.4);
}

/* Navigation */
nav.main {
  background: rgba(18, 8, 31, 0.9);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 0.2rem;
  padding: 0 2rem; overflow-x: auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.55rem;
  color: #fff; font-weight: 700; font-size: 0.9rem;
  padding: 0.8rem 1rem 0.8rem 0; white-space: nowrap; text-decoration: none;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}
.nav-logo img { width: 26px; height: auto; }
.nav-logo span { color: var(--accent); }
nav.main a.nav-link {
  color: var(--muted); text-decoration: none;
  font-size: 0.82rem; padding: 0.85rem 0.8rem; white-space: nowrap;
  border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
}
nav.main a.nav-link:hover { color: #fff; }
nav.main a.nav-link.active { color: var(--accent); border-bottom-color: var(--accent); }

/* Layout */
main { max-width: 1100px; margin: 0 auto; padding: 2.5rem 2rem 3rem; }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1.7rem;
  margin-bottom: 1.4rem;
}
h2.section {
  font-family: var(--font-display);
  font-size: 1.2rem; color: var(--accent);
  margin-bottom: 1rem; font-weight: 600; letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 0.6rem;
}
h2.section::before {
  content: ''; width: 22px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--violet));
  border-radius: 2px; display: inline-block; flex-shrink: 0;
}
h3.sub { font-family: var(--font-display); font-size: 1rem; color: #fff; margin: 1rem 0 0.4rem; letter-spacing: 0.03em; }
p.lead { font-size: 1.05rem; color: #ddd0f0; margin-bottom: 1rem; }
p.body { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.9rem; }
ul.list { list-style: none; }
ul.list li {
  padding: 0.5rem 0 0.5rem 1.4rem; position: relative;
  color: #ccc0dd; font-size: 0.9rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
}
ul.list li:last-child { border-bottom: none; }
ul.list li::before { content: '★'; position: absolute; left: 0.15rem; color: var(--violet); font-size: 0.7rem; }
ul.list li strong { color: #fff; }
ul.list li .note { color: var(--muted); font-size: 0.8rem; }

/* Band-Members */
.band-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.member { background: var(--bg-card); border: 1px solid var(--border); border-radius: 0.9rem; overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
.member:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(168, 85, 247, 0.25); }
.member img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: grayscale(20%); transition: filter 0.3s; }
.member:hover img { filter: grayscale(0%); }
.member .info { padding: 1rem 1.2rem 1.2rem; }
.member .name { font-family: var(--font-display); color: #fff; font-size: 1.05rem; letter-spacing: 0.03em; }
.member .role { color: var(--accent); font-size: 0.8rem; margin-top: 0.25rem; letter-spacing: 0.05em; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 0.8rem; }
.gallery img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 0.6rem; border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.gallery img:hover { transform: scale(1.03); box-shadow: 0 8px 32px rgba(168, 85, 247, 0.35); }

/* Shows */
.show-item { padding: 0.7rem 0; border-bottom: 1px solid rgba(168,85,247,0.15); }
.show-item:last-child { border-bottom: none; }
.show-date { font-family: var(--font-display); color: var(--accent); font-size: 0.9rem; letter-spacing: 0.03em; }
.show-venue { color: #fff; font-weight: 600; margin-top: 0.15rem; }
.show-detail { color: var(--muted); font-size: 0.83rem; margin-top: 0.1rem; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin: 0.4rem 0 1.6rem; }
.stat { background: var(--bg-card); border: 1px solid var(--border); border-radius: 0.7rem; padding: 1rem; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--accent); }
.stat .label { font-size: 0.7rem; color: var(--muted); margin-top: 0.2rem; }

footer {
  border-top: 1px solid var(--border);
  margin-top: 2rem; padding: 1.6rem 2rem;
  text-align: center; color: #665580; font-size: 0.78rem;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--accent); }

.badge {
  display: inline-block; background: var(--accent-soft);
  color: var(--accent); border: 1px solid rgba(255,140,26,0.35);
  border-radius: 4px; padding: 0.1rem 0.5rem; font-size: 0.72rem; font-weight: 600;
}
a.accent-link { color: var(--accent); text-decoration: none; }
a.accent-link:hover { text-decoration: underline; }

/* Fade-in */
@keyframes heroFade { from { opacity: 0; transform: scale(1.03); } to { opacity: 1; transform: none; } }
.hero { animation: heroFade 0.9s ease-out; }
@keyframes cardIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
main > * { animation: cardIn 0.6s ease-out backwards; }
main > *:nth-child(1) { animation-delay: 0.05s; }
main > *:nth-child(2) { animation-delay: 0.12s; }
main > *:nth-child(3) { animation-delay: 0.19s; }
main > *:nth-child(4) { animation-delay: 0.26s; }

@media (max-width: 768px) {
  .hero { height: 40vh; min-height: 260px; }
  .hero h1 { font-size: 1.5rem; }
  .hero .tagline { font-size: 0.68rem; }
  .hero-logo { width: 76px; }
  .hero-content { padding: 0 1.2rem 1.4rem; }
  .bg-layer { background-size: auto, auto, auto, 70vw; }
  main { padding: 1.6rem 1.2rem 2.4rem; }
  .card { padding: 1.15rem; }
  nav.main a.nav-link { font-size: 0.75rem; padding: 0.75rem 0.55rem; }
  .nav-inner { padding: 0 1rem; }
}
/* Social Icons im Footer */
.social-row {
  display: flex; justify-content: center; gap: 1.6rem;
  margin-top: 1.1rem; padding-top: 1.1rem;
  border-top: 1px solid rgba(168, 85, 247, 0.2);
}
.social-row a {
  display: flex; align-items: center; gap: 0.45rem;
  color: var(--muted); text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.04em;
  transition: color 0.2s;
}
.social-row a:hover { color: var(--accent); }
.social-row a svg { display: block; }
