/* ---------- Fonts ---------- */
@font-face {
  font-family: "Fishwrapper";
  src: url("assets/fonts/Fishwrapper.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fishwrapper";
  src: url("assets/fonts/Fishwrapper-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fishwrapper";
  src: url("assets/fonts/Fishwrapper-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Special Elite";
  src: url("assets/fonts/SpecialElite-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --bg-alt: #131313;
  --surface: #1a1a1a;
  --text: #f5f5f5;
  --text-muted: #a3a3a3;
  --accent: #ffffff;
  --accent-soft: rgba(255, 255, 255, 0.08);
  --border: rgba(245, 245, 245, 0.12);
  --font-display: "Fishwrapper", serif;
  --font-body: "Special Elite", "Courier New", monospace;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; filter: grayscale(1); }

a { color: inherit; text-decoration: none; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- Hero (whole page) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 48px 24px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.85) 100%),
    url("assets/hero-banner.jpg") center bottom / cover no-repeat;
  filter: grayscale(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: clamp(2.5rem, 7vw, 4.5rem);
  width: auto;
  max-width: 90vw;
  filter: none;
}

.release {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.cover-art {
  width: min(70vw, 320px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.release-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.release-title {
  font-size: 1.05rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.release-date {
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.social-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}
.social-link:hover { transform: translateY(-2px); background: #d4d4d4; }
.social-link svg { width: 26px; height: 26px; }

@media (max-width: 480px) {
  .hero-content { gap: 28px; }
  .social-row { gap: 12px; }
}

.text-link {
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.text-link:hover {
  opacity: 0.6;
}
