/* ─────────────────────────────────────────
   HUGO — home.css
───────────────────────────────────────── */

@font-face {
  font-family: 'Stack Sans Text';
  src: url('fonts/StackSansText.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: 'Stack Sans Text', 'Inter', sans-serif;
  background: #111;
  color: #fff;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── BACKGROUND ── */
.bg {
  position: fixed; inset: 0; z-index: 0;
}
.bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 65% center;
  filter: brightness(.75);
}
.bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.1) 45%,
    rgba(0,0,0,.6) 100%
  );
}

/* ── LAYOUT ── */
.page {
  position: relative; z-index: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem 3rem;
}

/* ── TOP: logo ── */
.top { display: flex; justify-content: center; }
.logo img { height: 52px; }

/* ── CENTER ── */
.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
}
.tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.65rem, 4.5vw, 3.4rem);
  color: rgba(255,255,255,.9);
  line-height: 1.35;
  max-width: 720px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .9s ease, transform .9s ease;
}
.tagline.visible {
  opacity: 1;
  transform: none;
}
.song-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  opacity: 0;
  transition: opacity .9s ease .3s;
}
.song-credit.visible { opacity: 1; }
.song-name {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.spotify-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.spotify-link:hover {
  color: #1DB954;
  border-color: #1DB954;
}
.spotify-link svg { flex-shrink: 0; }

/* ── BOTTOM ── */
.bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.link-btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem 1.8rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.85);
}
.link-btn:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.5);
  color: #fff;
  transform: translateY(-2px);
}
.contact-mail {
  font-size: .78rem;
  letter-spacing: .06em;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.contact-mail:hover { color: #fff; border-color: rgba(255,255,255,.7); }
.copyright {
  font-size: .62rem;
  color: rgba(255,255,255,.18);
  letter-spacing: .1em;
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  .page { padding: 2rem 1.5rem; }
  .tagline { font-size: 1.65rem; line-height: 1.45; }
}
