body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url('images/starfield.png') no-repeat center center fixed;
  background-size: cover;
  color: #f0e6f6;
}

header {
  background-color: rgba(98, 49, 96, 0.9);
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a {
  color: #f0e6f6;
  margin: 0 1em;
  text-decoration: none;
  font-weight: bold;
}

.logo {
  height: 30px;
}

.main-logo {
  max-width: 100%;
  height: auto;
}

.section {
  padding: 3em 2em;
  background-color: rgba(0, 0, 0, 0.6); /* Overlay for readability */
}

.intro {
  text-align: center;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin-top: 2em;
}

.left, .right {
  flex: 1;
  min-width: 280px;
}

.album-title {
  font-size: 2.5em;
  margin-bottom: 0.2em;
}

.album-subtitle {
  font-size: 1.5em;
  margin-top: 0;
}

.album-description {
  margin-top: 1.5em;
}

.album-cover {
  max-width: 100%;
  /* border: 2px solid #f0e6f6; */ /* ← Remove or comment this line */
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.members {
  margin-top: 2em;
}

.social {
  text-align: center;
  padding: 2em;
  background-color: rgba(98, 49, 96, 0.8);
}

.social a {
  margin: 0 1em;
  color: #f0e6f6;
  text-decoration: none;
  font-size: 1.2em;
}

.coming-soon {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2em;
}

.coming-soon .logo {
  height: 100px;
  margin-bottom: 2em;
}

.coming-soon h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.coming-soon p {
  font-size: 1.2em;
  max-width: 600px;
}


/* Mobile responsiveness */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 1em;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  }

  nav a {
    margin: 0;
  }

  .columns {
    flex-direction: column;
  }

  .logo {
    height: 50px;
  }

  .album-title {
    font-size: 2em;
  }

  .album-subtitle {
    font-size: 1.2em;
  }

  .section {
    padding: 2em 1em;
  }

  .album-cover {
    margin-top: 1em;
  }

  .social a {
    display: inline-block;
    margin: 0.5em;
    font-size: 1em;
  }
}