/* -------------------------
   Base / Reset
------------------------- */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'EB Garamond', serif;
  background: #121212;
  color: #e6e1d8;
}

/* Subtle grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.05;
  pointer-events: none;
  z-index: 9999;
}

/* -------------------------
   Layout
------------------------- */

.container {
  max-width: 720px;
  padding: 60px 20px;
  margin: auto;
}

section {
  margin-bottom: 80px;
}

/* -------------------------
   Typography
------------------------- */

.hero {
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.tagline {
  font-weight: 300;
  opacity: 0.7;
}

h2 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

p {
  line-height: 1.6;
  font-weight: 300;
}

/* -------------------------
   Links
------------------------- */

a {
  color: #f5f5f5;
  text-decoration: none;
}

/* -------------------------
   Tracklist (text-only audio)
------------------------- */

.tracklist {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 420px;
  text-align: center;
}

.tracklist li {
  margin: 14px 0;
}

.tracklist a {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  opacity: 0.45;                    /* faint by default */
  transition: opacity 0.3s ease;
}

.tracklist a:hover {
  opacity: 0.9;
}

/* Mobile readability */
@media (max-width: 768px) {
  .tracklist a {
    opacity: 0.65;
  }
}

/* -------------------------
   Music Sections
------------------------- */

.music {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
}

/* (Audio embeds retained if you ever re-enable them) */
.audio {
  width: 100%;
  max-width: 420px;
  margin: 32px 0;
  opacity: 0.75;
  transition: opacity 0.4s ease;
}

.audio:hover {
  opacity: 0.9;
}

.audio iframe {
  width: 100%;
  height: 60px;
  border-radius: 4px;
}

/* -------------------------
   Video
------------------------- */

.video {
  max-width: 560px;
  margin: 40px auto 80px;
}

.video-wrapper {
  position: relative;
}

.video-title {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  opacity: 0.6;
  pointer-events: none;
}

.video iframe {
  width: 100%;
  display: block;
  border-radius: 4px;
  opacity: 0.9;
  filter: contrast(0.95) saturate(0.85);
}

/* -------------------------
   Misc
------------------------- */

.contact {
  display: none;
}
.hero {
  text-align: center;
}


