@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-variable.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --card: #1a1a1a;
  --border: #2a2a2a;
  --muted: #666;
  --text: #e8e8e8;
  --white: #ffffff;
  --accent: #c8a96e;
  --accent-dim: rgba(200,169,110,0.15);
  --radius: 12px;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-logo span { color: var(--accent); }

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-social {
  display: flex;
  gap: 1rem;
}

.nav-social a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

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

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 2rem 4rem;
  position: relative;
  overflow: hidden;
  background-color: #000000;
  background-size: auto 90%;
  background-position: right center;
  background-repeat: no-repeat;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #000000 25%, transparent 55%, #000000 100%),
    linear-gradient(to top,   #000000 0%,  transparent 20%, transparent 80%, #000000 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-bg { display: none; }

.hero-grid { display: none; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(200,169,110,0.3);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero-name em {
  display: block;
  color: var(--accent);
  font-style: normal;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.hero-desc {
  max-width: 520px;
  font-size: 1rem;
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
}

.btn-primary { background: var(--accent); color: var(--black); }
.btn-primary:hover { background: #d9bc85; transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.section-lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 3rem;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 60%);
  margin-bottom: 1rem;
  width: 60px;
}

/* ── VIDEOS ── */
#videos { background: var(--black); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-thumb {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  background: var(--card);
  transition: border-color 0.2s, transform 0.2s;
}

.video-thumb:hover { border-color: rgba(200,169,110,0.4); transform: translateY(-2px); }

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

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  background: rgba(0,0,0,0.35);
  transition: background 0.2s;
}

.video-thumb:hover .video-play { background: rgba(0,0,0,0.55); }

@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ── ABOUT ── */
#about { background: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.inline-link {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.inline-link:hover { opacity: 0.75; }

.about-bio p {
  color: #bbb;
  margin-bottom: 1rem;
  line-height: 1.85;
}

.about-facts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.fact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }

.fact-title { font-weight: 600; color: var(--white); font-size: 0.95rem; margin-bottom: 0.2rem; }

.fact-desc { font-size: 0.85rem; color: var(--muted); }

/* ── PROJECTS ── */
#projects { background: var(--black); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  justify-content: center;
}

.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.project-card:hover { border-color: rgba(200,169,110,0.4); transform: translateY(-2px); }
.project-card:hover::before { opacity: 1; }

.project-emoji { font-size: 2rem; margin-bottom: 1rem; display: block; }

.project-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.project-role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.project-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s;
}

.project-link:hover { gap: 0.6rem; }

/* ── MUSIC PLAYER ── */
#music { background: var(--dark); }

.player-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.track {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 1.25rem;
  transition: border-color 0.2s;
}

.track:hover { border-color: rgba(200,169,110,0.3); }
.track.active { border-color: rgba(200,169,110,0.5); background: rgba(200,169,110,0.05); }

.track-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(200,169,110,0.3);
  color: var(--accent);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
  font-family: var(--font-sans);
}

.track-play-btn:hover { background: var(--accent); color: var(--black); transform: scale(1.05); }

.track-info { min-width: 0; }

.track-title {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-genre { font-size: 0.8rem; color: var(--muted); margin-top: 0.15rem; }

.track-right { display: flex; align-items: center; gap: 1rem; }

.track-progress-wrap {
  width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.track-progress {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}

.track-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}

.track-time {
  font-size: 0.72rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

/* ── CONTACT ── */
#contact { background: var(--black); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.contact-value { color: var(--white); font-size: 0.95rem; text-decoration: none; }
.contact-value:hover { color: var(--accent); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label { font-size: 0.8rem; font-weight: 500; color: var(--muted); letter-spacing: 0.04em; }

.form-input,
.form-textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus { border-color: rgba(200,169,110,0.5); }

.form-textarea { resize: vertical; min-height: 130px; }

/* ── IMPRESSUM ── */
#impressum { background: var(--dark); }

.impressum-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.impressum-block { }

.impressum-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.impressum-block p {
  font-size: 0.9rem;
  color: #bbb;
  line-height: 1.8;
}

.footer-impressum {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-impressum:hover { color: var(--accent); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-name { font-family: var(--font-serif); font-size: 1rem; color: var(--white); }

.footer-links { display: flex; gap: 1.5rem; }

.footer-links a { font-size: 0.85rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

.footer-copy { font-size: 0.8rem; color: var(--muted); }

/* ── RESPONSIVE ── */
/* ── HAMBURGER ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  nav { padding: 0 1rem; }
  .nav-burger { display: flex; }
  .nav-social { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
    list-style: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  section { padding: 3.5rem 1rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  #hero { background-position: center center; }
}

@media (max-width: 600px) {
  .track { grid-template-columns: 44px 1fr; }
  .track-right { display: none; }
}
