/* ---------- RESET / BASIS ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  background-color: #0f0f0f;
  color: #e6e6e6;
  line-height: 1.6;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

/* ---------- HEADER ---------- */
.site-header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.logo img {
  /* HIER passiert die Magie */
  height: 56px;
  width: auto;
  display: block;
}

.main-nav a {
  margin-left: 32px;
  text-decoration: none;
  color: #bdbdbd;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffffff;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      rgba(15,15,15,0.85),
      rgba(15,15,15,0.85)
    ),
    /* optionales Hero-Bild */
    url("../img/hero.jpg") center / cover no-repeat;
}

.hero-inner h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin: 0 0 12px 0;
  font-weight: 600;
}

.claim {
  font-size: 1.1rem;
  color: #bdbdbd;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- ARTISTS ---------- */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.artist-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.artist-card:hover {
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.artist-thumb img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

.artist-name {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- FOOTER ---------- */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 0;
  font-size: 0.85rem;
  color: #9e9e9e;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-nav a {
  margin-left: 24px;
  color: #9e9e9e;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #ffffff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    height: auto;
    padding: 16px 0;
  }

  .main-nav {
    margin-top: 12px;
  }

  .main-nav a {
    margin: 0 12px;
  }
}
