/* GLOBAL */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #050308;
  color: #f5f5f5;
}

a {
  color: #ff3fb0;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 { font-size: 32px; margin: 8px 0 4px; }
h2 { font-size: 22px; margin: 32px 0 12px; border-bottom: 1px solid #3b2a55; padding-bottom: 4px; }
h3 { font-size: 16px; margin: 12px 0 4px; }

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 64px;
}

.section { margin-top: 24px; }

.center { text-align: center; }

.note {
  font-size: 12px;
  color: #b9a8d9;
  margin-top: 4px;
}

/* HEADER */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #090512;
  border-bottom: 1px solid #2b203d;
  position: sticky;
  top: 0;
  z-index: 10;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 40px;
}

.logo-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #b9a8d9;
}

.logo-title {
  font-size: 18px;
  letter-spacing: 0.12em;
}

/* NAVIGATION */
.main-nav a {
  margin-left: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons img {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 4px #ff3fb0);
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.15);
}

/* HERO */
.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.hero-text {
  flex: 1 1 260px;
}

/* TWO COLUMN LAYOUT */
.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-col > div {
  flex: 1 1 260px;
}

/* BAND PHOTO */
.band-photo img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

/* TABLES */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}

th, td {
  padding: 6px 8px;
  border-bottom: 1px solid #2b203d;
}

th {
  text-align: left;
  background: #12091f;
}

tr:nth-child(even) td {
  background: #0b0614;
}

/* DISCOGRAPHY GRID */
.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.release-card {
  background: #0b0614;
  border: 1px solid #2b203d;
  border-radius: 6px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.release-card img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 8px;
  display: block;
}

.release-meta {
  font-size: 13px;
  margin-bottom: 6px;
}

/* CONTACT */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.contact-list li {
  margin-bottom: 4px;
}

/* FOOTER */
footer {
  text-align: center;
  font-size: 11px;
  color: #8a7aa8;
  padding: 16px 0 24px;
  border-top: 1px solid #2b203d;
  margin-top: 32px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 700px) {

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
  }

  .main-nav a {
    margin-left: 0;
  }

  .social-icons {
    margin-top: 6px;
  }

  h1 { font-size: 26px; }
  h2 { font-size: 20px; }
}
