﻿@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Space+Grotesk:wght@300;400;500&display=swap");

:root {
  color-scheme: dark;
  --bg: #0b0d10;
  --bg-soft: #11141b;
  --bg-accent: #1a1f2b;
  --ink: #f2f2f2;
  --ink-muted: #b5bcc7;
  --ink-dim: #7f8794;
  --accent: #b88b5a;
  --accent-soft: rgba(184, 139, 90, 0.2);
  --shadow: rgba(0, 0, 0, 0.45);
  --spotify: #1db954;
  --deezer: #ff5a00;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  background: radial-gradient(circle at top left, #1a202c 0%, #0b0d10 45%, #060709 100%);
  color: var(--ink);
  min-height: 100vh;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero {
  position: relative;
  padding: 48px 0 64px;
  background: linear-gradient(135deg, rgba(29, 34, 45, 0.9), rgba(12, 14, 18, 0.95));
  overflow: hidden;
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='120' height='120' filter='url(%23n)' opacity='0.15'/></svg>");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.nav__label {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
}

.nav__links a {
  color: var(--ink-muted);
  text-decoration: none;
  margin-left: 24px;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.hero__content {
  margin-top: 96px;
  max-width: 640px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease forwards;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35rem;
  font-size: 0.75rem;
  color: var(--ink-dim);
  margin-bottom: 12px;
}

.title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  margin: 0 0 10px;
}

.subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.05rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.btn--primary {
  background: var(--accent);
  color: #141414;
  box-shadow: 0 10px 30px var(--accent-soft);
}

.btn--spotify {
  background: var(--spotify);
  color: #07130b;
  box-shadow: 0 10px 26px rgba(29, 185, 84, 0.35);
}

.btn--deezer {
  background: var(--deezer);
  color: #1c0900;
  box-shadow: 0 10px 26px rgba(255, 90, 0, 0.35);
}

.btn--ghost {
  border: 1px solid var(--ink-dim);
  color: var(--ink);
  background: transparent;
}

.btn--small {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow);
}

main {
  flex: 1;
  padding: 64px 0 96px;
  background: linear-gradient(180deg, rgba(17, 20, 27, 0.9) 0%, rgba(10, 11, 15, 0.98) 100%);
}

.section {
  margin-bottom: 72px;
  animation: fadeInUp 0.9s ease forwards;
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.section__header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin: 0;
}

.section__hint {
  color: var(--ink-dim);
  font-size: 0.95rem;
}

.bio__content {
  max-width: 720px;
  line-height: 1.85;
  color: var(--ink-muted);
}

.bio__content p {
  margin-bottom: 18px;
}

.signature {
  margin-top: 32px;
  max-width: 240px;
  opacity: 0.75;
}

.signature img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 18px var(--shadow));
}

.album {
  padding: 24px;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.album-card {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  height: 100%;
  min-height: 560px;
  width: 100%;
}

.album__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.album-card.is-flipped .album__inner {
  transform: rotateY(180deg);
}

.album__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  height: 100%;
  background: var(--bg-soft);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.album__face--back {
  transform: rotateY(180deg);
  background-size: cover;
  background-position: center;
}

.album__overlay {
  background: rgba(8, 10, 14, 0.78);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(6px);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.album__track-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--ink-dim);
}

.album__tracks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--ink);
}

.album__tracks li {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.album__tracks--empty {
  color: var(--ink-muted);
  margin: 0;
}

.album__cover {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 1em auto 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0b0e13;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.album__cover::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.album__cover::after {
  content: "";
  position: absolute;
  inset: 36%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 200, 200, 0.18), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.album__cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.album__cover--square {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.album__cover--square > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.album__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.album__year {
  color: var(--accent);
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin: 0;
}

.album h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin: 0;
}

.album__lang {
  color: var(--ink-dim);
  margin: 0;
  font-size: 0.9rem;
}

.album__desc {
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
}

.album__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.platform-link {
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.04rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-link--spotify {
  background: var(--spotify);
  color: #06110a;
  box-shadow: 0 8px 20px rgba(29, 185, 84, 0.3);
}

.platform-link--deezer {
  background: var(--deezer);
  color: #1c0900;
  box-shadow: 0 8px 20px rgba(255, 90, 0, 0.3);
}

.platform-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.footer {
  padding: 32px 0 40px;
  text-align: center;
  color: var(--ink-dim);
  font-size: 0.9rem;
  background: #050608;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer__avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  background: #0b0e13;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.footer__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer__copy {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 40px 0 56px;
  }

  main {
    padding: 56px 0 80px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero__content {
    margin-top: 64px;
  }

  .section__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .album__inner {
    min-height: 480px;
  }
}






