@import url('https://fonts.googleapis.com/css2?family=Iceland&display=swap');

/* Kay Nova Website Styles - Vintage Y2K Nerdy Computer Vibe (Blocky Update) */

:root {
  --bg: #1a1418;
  --accent: #cd4fab;
  --logo-blue: #5894c8;
  --green: #839c34;
  --purple: #782c8b;
  --pink: #813e63;
  --text: #f5f5f5;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Iceland', 'Google Sans Code', 'JetBrains Mono', 'Source Code Pro', 'Major Mono Display', 'Share Tech Mono', 'IBM Plex Mono', 'Fira Mono', 'Consolas', 'Courier New', monospace;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  letter-spacing: 0.01em;
  cursor: url('cursor-music.png'), auto;
}

header {
  background: var(--purple);
  padding: 2.5rem 0.5rem 1.5rem 0.5rem;
  border-bottom: 4px solid var(--accent);
  text-align: center;
  box-shadow: 0 2px 8px 0 #0004;
}

.logo {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  color: var(--logo-blue);
  text-shadow: 1px 1px 0 var(--bg), 2px 2px 0 var(--pink);
  margin: 0 0 1.2rem 0;
  font-family: 'Iceland', 'Google Sans Code', 'JetBrains Mono', 'Source Code Pro', 'Major Mono Display', 'Share Tech Mono', 'IBM Plex Mono', 'Fira Mono', 'Consolas', 'Courier New', monospace;
}

nav {
  margin-bottom: 0.5rem;
}
nav a {
  color: var(--text);
  background: var(--pink);
  text-decoration: none;
  padding: 0.4em 1em;
  margin: 0 0.3em;
  border-radius: 0;
  font-size: 1.2rem;
  border: 2.5px solid var(--accent);
  transition: background 0.2s, color 0.2s;
  box-shadow: 2px 2px 0 var(--accent), 4px 4px 0 var(--bg);
  font-family: inherit;
}
nav a:hover {
  background: var(--accent);
  color: var(--bg);
}

main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}
section {
  background: var(--bg);
  color: var(--text);
  margin-bottom: 2rem;
  border-radius: 0;
  box-shadow: 4px 4px 0 0 var(--accent), 8px 8px 0 0 var(--bg);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  border: 3px solid var(--accent);
}
section h2 {
  color: var(--logo-blue);
  font-size: 1.5rem;
  margin-top: 0;
  font-family: inherit;
}

.album-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}
.album-cover {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border: 4px solid var(--accent);
  border-radius: 0;
  box-shadow: 2px 2px 0 var(--pink), 4px 4px 0 var(--bg);
  background: var(--bg);
}
.album-info {
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.tracklist {
  list-style: decimal inside;
  padding-left: 0;
  margin: 1em 0 0 0;
}
.tracklist li {
  margin-bottom: 0.7em;
  font-size: 1.05em;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.tracklist audio {
  width: 250px;
  background: var(--bg);
  border-radius: 0;
  border: 2px solid var(--accent);
}

.shows-list {
  list-style: none;
  padding: 0;
  margin: 0.5em 0 0 0;
}
.shows-list li {
  background: var(--purple);
  color: var(--text);
  margin-bottom: 0.5em;
  padding: 0.7em 1em;
  border-radius: 0;
  font-family: inherit;
  font-size: 1.05em;
  border: 2px solid var(--accent);
  box-shadow: 2px 2px 0 var(--pink);
}

#bio p {
  font-size: 1.1em;
  line-height: 1.6;
  margin: 0.5em 0 0 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1em;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 0;
  border: 3px solid var(--accent);
  background: var(--bg);
  box-shadow: 2px 2px 0 var(--pink);
  transition: transform 0.2s, border-color 0.2s;
}
.gallery-grid img:hover {
  transform: scale(1.04) rotate(-2deg);
  border-color: var(--pink);
}

.links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 1em;
}
.social-link {
  display: inline-block;
  background: var(--purple);
  color: var(--text);
  padding: 0.7em 1.3em;
  border-radius: 0;
  text-decoration: none;
  font-weight: bold;
  border: 3px solid var(--accent);
  font-size: 1.1em;
  transition: background 0.2s, color 0.2s, border 0.2s;
  box-shadow: 2px 2px 0 var(--pink);
  font-family: inherit;
}
.social-link:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--pink);
}

.press-list {
  list-style: none;
  padding: 0;
  margin: 1em 0 0 0;
}
.press-list li {
  background: var(--purple);
  color: var(--text);
  margin-bottom: 0.7em;
  padding: 0.7em 1em;
  border-radius: 0;
  font-family: inherit;
  font-size: 1.05em;
  border: 2px solid var(--accent);
  box-shadow: 2px 2px 0 var(--pink);
}
.press-list a {
  color: var(--green);
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.2s;
}
.press-list a:hover {
  color: var(--logo-blue);
}

footer {
  text-align: center;
  color: var(--purple);
  font-size: 0.95em;
  padding: 2em 0 1em 0;
  border-top: 3px solid var(--accent);
  background: var(--bg);
  margin-top: 2em;
}

.ticket-link {
  display: inline-block;
  margin-left: 1em;
  background: var(--accent);
  color: var(--bg);
  padding: 0.3em 0.9em;
  border: 2px solid var(--pink);
  border-radius: 0;
  font-size: 1em;
  font-family: inherit;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 1.5px 1.5px 0 var(--pink);
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.ticket-link:hover {
  background: var(--pink);
  color: var(--text);
  border-color: var(--accent);
}

.past-show {
  text-decoration: line-through;
  opacity: 0.6;
  background: var(--bg) !important;
  color: var(--muted) !important;
  border-color: var(--muted) !important;
}
.show-status {
  color: var(--accent);
  font-weight: bold;
  margin-left: 1em;
  font-size: 0.9em;
}

/* Responsive tweaks */
@media (max-width: 700px) {
  .album-section {
    flex-direction: column;
    align-items: stretch;
  }
  main {
    padding: 0 0.3rem;
  }
  section {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7em;
  }
  nav a {
    margin: 0.2em 0;
    width: 90%;
    text-align: center;
    font-size: 1.1rem;
  }
  .album-info {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .tracklist audio {
    width: 100%;
    max-width: 200px;
  }
  .tracklist li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5em;
  }
}

/* You can customize fonts, colors, and images as needed! */ 