/* --- GLOBAL RESET --- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Neues Farbschema wie drums.html */
  background: radial-gradient(circle at top, #24243b 0%, #050509 45%, #010104 100%);
  color: #f5f5f5;

  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- HEADER --- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;

  backdrop-filter: blur(18px);
  background: rgba(5, 5, 9, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  gap: 1rem;
}

.logo-main {
  display: block;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1rem;
}

.logo-sub {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* --- NAVIGATION --- */

.main-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
}

.nav-link {
  padding: 0.3rem 0;
  opacity: 0.6;
  border-bottom: 1px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}

.nav-link:hover {
  opacity: 1;
  border-bottom-color: rgba(255, 212, 138, 0.35); /* warmes Gold */
}

.nav-link.active {
  opacity: 1;
  border-bottom-color: rgba(255, 212, 138, 0.85);
}

/* --- LANGUAGE SWITCH --- */

.lang-switch {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
}

.lang-btn {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  opacity: 0.6;
  padding: 0.1rem 0.3rem;
}

.lang-btn.active {
  opacity: 1;
  font-weight: 600;
}

.lang-divider {
  margin: 0 0.25rem;
  opacity: 0.4;
}

/* --- PAGE HEADERS --- */

.page-header {
  padding: 5rem 0 2.5rem;
  background: radial-gradient(circle at top, #1b1b2b, #050509 70%);
  text-align: left;
}

.page-title {
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.page-subtitle {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 38rem;
}

/* --- MAIN CONTENT --- */

.page-main {
  padding: 2rem 0 4rem;
}

.section {
  margin-bottom: 2.8rem;
}

.section-title {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-text {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* --- LAYOUT GRID --- */

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.main-col {
  flex: 2 1 320px;
}

.side-col {
  flex: 1 1 220px;
}

/* --- CARDS (Infos, Musik, Projekte) --- */

.info-card,
.music-card,
.project-card {
  background: rgba(20, 20, 30, 0.8);
  border-radius: 16px;
  padding: 1.3rem 1.4rem;

  border: 1px solid rgba(255, 255, 255, 0.08);

  /* Glow wie drums.html */
  box-shadow:
    0 0 26px rgba(0, 0, 0, 0.65),
    0 0 40px rgba(12, 12, 24, 0.7);
}

.info-card h3,
.music-card h3,
.project-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

.info-card ul {
  list-style: none;
  padding-left: 0;
}

.info-card li {
  margin-bottom: 0.25rem;
  opacity: 0.85;
}

/* --- MEDIA / GRID --- */

.music-grid,
.projects-grid,
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.player-placeholder,
.media-placeholder {
  margin-top: 0.8rem;
  padding: 0.8rem;
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  font-size: 0.8rem;
  opacity: 0.6;
  text-align: center;
}

.media-item {
  border-radius: 14px;
  min-height: 160px;
}

/* --- BUTTONS (jetzt wärmer & weniger neon) --- */

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.18s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #ffd48a, #cba35b);
  color: #050509;
  font-weight: 600;
  box-shadow: 0 0 18px rgba(255, 212, 138, 0.4);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 26px rgba(255, 212, 138, 0.55);
}

.btn.ghost {
  border-color: rgba(255, 212, 138, 0.45);
  color: #ffd48a;
  background: transparent;
}

.btn.ghost:hover {
  background: rgba(255, 212, 138, 0.08);
}

/* --- CONTACT BOX --- */

.contact-box {
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 212, 138, 0.25);
  background: rgba(20, 20, 30, 0.85);
  box-shadow: 0 0 22px rgba(255, 212, 138, 0.12);
}

/* --- FOOTER --- */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0 1.4rem;
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 1rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- RESPONSIVE --- */

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .main-nav {
    flex-wrap: wrap;
    margin-top: 0.5rem;
    row-gap: 0.25rem;
  }

  .page-header {
    padding-top: 4rem;
  }
}
