/* ============================================
   harvizzle — site styles
   ============================================
   Dark, centered, conversion-optimized.
   Electronic music artist site.

   Sections (search to jump):
   - RESET
   - COLORS
   - TYPOGRAPHY
   - LAYOUT
   - HOME PAGE
   - EMAIL CAPTURE
   - MUSIC PAGE
   - ABOUT PAGE
   - CONTACT PAGE
   - SHARED / UTILITY
   - RESPONSIVE
   ============================================ */


/* --- RESET --- */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}


/* --- COLORS --- */
/* Change accent here to update every CTA, link highlight, and embed match. */

:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --text: #e0e0e0;
  --text-bright: #ffffff;
  --text-muted: #999;
  --text-faint: #555;
  --border: #1e1e1e;
  --border-light: #2a2a2a;
  --accent: #0f91ff;       /* matches Bandcamp embed linkcol */
  --accent-hover: #3dacff;
  --accent-glow: rgba(15, 145, 255, 0.15);
  --max-width: 960px;
}


/* --- TYPOGRAPHY --- */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-weight: 300;
  color: var(--text-bright);
}

a {
  color: var(--text);
  text-decoration: none;
}

a:hover {
  color: var(--text-bright);
}

/* Artist name font — Times New Roman, lowercase, spaced */
.artist-name {
  font-family: "Times New Roman", Times, Georgia, serif;
  text-transform: none;
  letter-spacing: 0.22em;
}


/* --- LAYOUT --- */
/* All top-level elements are centered with the same max-width. */

.site-header,
nav,
main,
.footer-inner {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
}

/* Header */
.site-header {
  padding-top: 2.2rem;
  padding-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header h1 {
  font-size: 0.95rem;
  font-weight: 400;
}

.site-header h1 a {
  color: var(--text-bright);
  text-decoration: none;
}

/* Navigation */
nav {
  padding-top: 0.6rem;
  padding-bottom: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

nav a:hover {
  color: var(--text-bright);
}

nav a.active {
  color: var(--accent);
}

/* Main */
main {
  flex: 1;
  padding-top: 0;
  padding-bottom: 6rem;
}

/* Footer */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
}

.footer-inner {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.65rem;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}

.footer-links a {
  color: var(--text-faint);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--accent);
}


/* --- HOME PAGE --- */

.home-hero {
  padding-top: 12vh;
  padding-bottom: 2rem;
  text-align: center;
}

/* Artist photo — already a circle PNG, just size it */
.home-photo {
  width: 160px;
  height: 160px;
  margin-bottom: 2.5rem;
}

/* Artist name — large, serif, spaced */
.home-name {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--text-bright);
  margin-bottom: 1.4rem;
}

.home-tagline {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto 3rem;
  font-style: italic;
}

/* CTA row — centered */
.home-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}

/* Primary CTA button — accent */
.cta-primary {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-bright);
  background: var(--accent);
  padding: 1rem 2.8rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.cta-primary:hover {
  background: var(--accent-hover);
  color: var(--text-bright);
  text-decoration: none;
  box-shadow: 0 0 30px var(--accent-glow);
}

/* Secondary CTA — subtle underline */
.cta-secondary {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--text-faint);
  padding-bottom: 3px;
}

.cta-secondary:hover {
  color: var(--text-bright);
  border-bottom-color: var(--text-bright);
  text-decoration: none;
}

/* Featured release on homepage */
.home-featured {
  max-width: 600px;
  margin: 0 auto 5rem;
  text-align: center;
}

.home-featured-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.home-featured .bandcamp-embed {
  margin-bottom: 1rem;
}

/* Platform links */
.home-platforms {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-platforms a {
  color: var(--text-faint);
}

.home-platforms a:hover {
  color: var(--accent);
}


/* --- EMAIL CAPTURE --- */

.email-capture {
  max-width: 500px;
  margin: 0 auto 4rem;
  padding: 2.5rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.email-capture p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.email-form {
  display: flex;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
}

.email-form input[type="email"] {
  flex: 1;
  font-family: inherit;
  font-size: 0.82rem;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-right: none;
  color: var(--text);
  outline: none;
}

.email-form input[type="email"]::placeholder {
  color: var(--text-faint);
}

.email-form input[type="email"]:focus {
  border-color: var(--accent);
}

.email-form button {
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  background: var(--accent);
  color: var(--text-bright);
  border: 1px solid var(--accent);
  cursor: pointer;
}

.email-form button:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}


/* --- MUSIC PAGE --- */

.music-header {
  padding-top: 10vh;
  padding-bottom: 1rem;
  text-align: center;
}

.music-header h2 {
  font-size: 2.8rem;
  font-weight: 100;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-bright);
}

.music-subtext {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 0.6rem;
  letter-spacing: 0.04em;
}

/* Release grid — 3 equal columns on desktop, stacks on mobile */
.releases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 1.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Individual release card */
.release {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.release:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
}

.release-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.bandcamp-embed {
  width: 100%;
  margin-bottom: 1rem;
}

.bandcamp-embed iframe {
  border: 0;
  width: 100%;
}

.release-buy {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--accent);
  margin-top: 0.5rem;
}

.release-buy:hover {
  background: var(--accent);
  color: var(--text-bright);
  text-decoration: none;
}

/* Placeholder before real embeds */
.embed-placeholder {
  background: var(--bg);
  border: 1px dashed var(--border-light);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--text-faint);
  font-size: 0.78rem;
  font-style: italic;
  width: 100%;
}

/* Music page bottom section */
.music-bottom-cta {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.music-bottom-cta p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.music-bottom-cta a {
  color: var(--text-muted);
}

.music-bottom-cta a:hover {
  color: var(--accent);
}


/* --- ABOUT PAGE --- */

.about-content {
  padding-top: 10vh;
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 100;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.85;
  color: var(--text-muted);
  text-align: left;
}

.about-content p:last-of-type {
  margin-bottom: 3rem;
}

.about-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-links a {
  color: var(--text-faint);
}

.about-links a:hover {
  color: var(--accent);
}


/* --- CONTACT PAGE --- */

.contact-content {
  padding-top: 10vh;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.contact-content h2 {
  font-size: 2.2rem;
  font-weight: 100;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.contact-list {
  list-style: none;
  font-size: 0.88rem;
  line-height: 2.8;
  text-align: left;
}

.contact-list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.contact-list span {
  color: var(--text-faint);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-width: 110px;
  text-align: right;
}

.contact-list a {
  color: var(--text-muted);
}

.contact-list a:hover {
  color: var(--accent);
}


/* --- SHARED / UTILITY --- */

/* Future: .merch-section, .sample-packs, .tour-dates, .press-quotes */


/* --- RESPONSIVE --- */

@media (max-width: 768px) {
  .site-header,
  nav,
  main,
  .footer-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .home-hero {
    padding-top: 8vh;
  }

  .home-photo {
    width: 120px;
    height: 120px;
  }

  .home-name {
    font-size: 2.2rem;
    letter-spacing: 0.16em;
  }

  .home-tagline {
    font-size: 0.92rem;
  }

  .home-cta {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .home-featured {
    margin-bottom: 3rem;
  }

  .releases {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .music-header h2 {
    font-size: 1.8rem;
  }

  .email-form {
    flex-direction: column;
    gap: 0.5rem;
  }

  .email-form input[type="email"] {
    border-right: 1px solid var(--border-light);
  }

  .email-form input[type="email"],
  .email-form button {
    width: 100%;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-list li {
    flex-direction: column;
    gap: 0.2rem;
  }

  .contact-list span {
    text-align: left;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .home-name {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }

  .home-platforms {
    gap: 1.5rem;
  }

  nav ul {
    gap: 1.2rem;
  }
}
