/* ================================
   GLOBAL STYLES (affects whole site)
   ================================ */
body {
  background-color: #0a0a0a; /* dark background */
  color: #77029E;            /* purple */
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* ================================
   NAVIGATION BAR
   ================================ */
nav {
  display: flex;                     /* lays items (logo + links) in a row */
  justify-content: space-between;    /* pushes logo left, links right */
  align-items: center;               /* vertically centres them */
  padding: 20px 40px;
  background-color: #0a0a0a;
  border-bottom: 1px solid #222;     /* thin dark border under nav */
}

/* LOGO (top left text) */
.logo {
  font-weight: 700;                  /* bold text */
  color: #77029E;                    /* purple */
  text-decoration: none;
  letter-spacing: 2px;               /* extra space between letters */
}

/* NAV LINKS (top right tabs like Mixes, Shows, etc.) */
.nav-links a {
  color: #77029E;                    /* purple */
  text-decoration: none;
  margin-left: 25px;                 /* space between each link */
  font-size: 0.95rem;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;         /* smooth hover animation */
}

/* HOVER EFFECT for nav links */
.nav-links a:hover {
  transform: scale(1.1);             /* makes it grow slightly */
  color: #f5f5f5;                    /* turns white when hovered */
}

/* ================================
   HERO SECTION (main title area)
   ================================ */
.hero {
  text-align: center;
  margin-top: 100px;
}

.hero h1 {
  font-size: 3em;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.2em;
  color: #ccc;                       /* softer grey text */
}

/* ================================
   BIO + SOCIAL SECTIONS
   ================================ */
.bio, .socials {
  max-width: 800px;
  margin: 100px auto;
  padding: 0 20px;
  line-height: 1.7;
}

.bio h2, .socials h2 {
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 600;
}

/* SOCIAL LINKS section */
.socials .links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;                         /* space between links */
}

.socials a {
  color: #00bcd4;                    /* turquoise blue */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.socials a:hover {
  color: #fff;                       /* turn white on hover */
}

/* ================================
   FOOTER
   ================================ */
footer {
  text-align: center;
  padding: 40px 0;
  font-size: 0.85rem;
  color: #777;
  border-top: 1px solid #222;
}

/* ================================
   CONTACT FORM
   ================================ */
.contact-form {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

/* Email input box */
.contact-form input[type="email"] {
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  width: 250px;
  font-size: 1rem;
}

/* Submit button */
.contact-form button {
  background-color: #00bcd4;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 1rem;
  color: #0a0a0a;
  cursor: pointer;
  transition: opacity 0.3s;
}

.contact-form button:hover {
  opacity: 0.8;                      /* fade when hovered */
}

/* ================================
   SHOWS PAGE
   ================================ */
.shows-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.show p {
  background-color: #111;
  border: 1px solid #222;
  padding: 12px 20px;
  border-radius: 6px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* ================================
   RELEASES / EPs PAGE
   ================================ */
.releases {
  padding: 4rem 2rem;
  text-align: center;
}

/* Grid layout for EP tiles */
.release-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 2rem; /* space between items */
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .release-grid {
    grid-template-columns: 1fr; /* stack in 1 column on small screens */
  }
}

/* Each EP image */
.release img {
  width: 50%;
  border-radius: 0px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* EP title under image */
.release h2 {
  margin: 1rem 0 0.3rem;
}

/* Buttons under each EP */
.release a {
  display: inline-block;
  margin-top: 0.5rem;
  text-decoration: none;
  background: black;
  color: #77029E;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  transition: 0.3s ease;
}

.release a:hover {
  background: #333;
}



/* Responsive SoundCloud embed */
.soundcloud-wrapper {
  position: relative;
  padding-bottom: 480px; /* approximate height for visual=true player */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.soundcloud-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Optional: style the attribution links */
.soundcloud-attribution {
  font-size: 10px;
  color: #cccccc;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 0.5rem;
}

.soundcloud-attribution a {
  color: #cccccc;
  text-decoration: none;
}


