/* ===== FANNI – Brand Tokens ===== */
:root {
  --fanni-orange: #C95D2E;
  --electric-pink: #E24279;
  --deep-cherry: #5B182B;
  --soft-black: #171315;
  --warm-cream: #F4E8D7;

  --font-title: "League Gothic", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;

  --container-width: 1100px;
  --transition: 0.25s ease;
}

@font-face {
  font-family: "League Gothic";
  src: url("../assets/fonts/LeagueGothic-Regular.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ===== Reset ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--warm-cream);
  color: var(--soft-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 400;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: rgba(23, 19, 21, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo img { height: 32px; width: auto; }

.site-nav {
  display: flex;
  gap: 32px;
}

.site-nav a {
  color: var(--warm-cream);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}

.site-nav a:hover { color: var(--electric-pink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--warm-cream);
  border-radius: 2px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--electric-pink);
  color: var(--warm-cream);
}

.btn-primary:hover { background: var(--deep-cherry); }

.btn-outline {
  border: 2px solid var(--warm-cream);
  color: var(--warm-cream);
}

.btn-outline:hover { background: var(--warm-cream); color: var(--soft-black); }

.btn-dark {
  background: var(--soft-black);
  color: var(--warm-cream);
}

.btn-dark:hover { background: var(--deep-cherry); }

.section-cherry .btn-dark:hover { background: var(--electric-pink); }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fanni-orange) center / cover no-repeat;
  position: relative;
  text-align: center;
  padding: 120px 0 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,19,21,0.44) 0%, rgba(201,93,46,0.36) 55%, rgba(201,93,46,0.44) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-logo {
  width: min(60vw, 420px);
}

.release-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(91, 24, 43, 0.55);
  border: 1px solid rgba(244, 232, 215, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 6px 20px 6px 6px;
  color: var(--warm-cream);
  transition: transform var(--transition), background var(--transition);
}

.release-badge:hover {
  transform: translateY(-2px);
  background: rgba(91, 24, 43, 0.8);
}

.release-badge-cover {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.release-badge-text {
  font-size: clamp(0.68rem, 2.2vw, 0.8rem);
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  max-width: 220px;
}

.release-badge-text strong {
  color: var(--electric-pink);
  font-weight: 700;
}

.hero-tagline {
  font-size: clamp(0.8rem, 3vw, 1.15rem);
  color: var(--warm-cream);
  font-weight: 500;
  white-space: nowrap;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--warm-cream);
  font-size: 1.5rem;
  z-index: 1;
  animation: bob 2s infinite;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ===== Social icons ===== */
.social-row {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 232, 215, 0.16);
  border: 1px solid rgba(244, 232, 215, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--warm-cream);
  transition: transform var(--transition), background var(--transition);
}

.social-icon:hover {
  transform: translateY(-3px);
  background: rgba(244, 232, 215, 0.32);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
}

/* ===== Sections ===== */
.section {
  position: relative;
  padding: 100px 0;
}

#bio { padding-bottom: 0; }
#music { padding-top: 0; }

/* Desktop section order: Hero, Bio, Release, Musik, Booking, Kontakt */
main { display: flex; flex-direction: column; }
#hero { order: 1; }
#bio { order: 2; }
#release { order: 3; }
#music { order: 4; }
#booking { order: 5; }
#contact { order: 6; }

/* ===== Shape dividers (section transitions) ===== */
.shape-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(40px, 8vw, 80px);
  transform: translateY(-99%);
  z-index: 2;
  line-height: 0;
  pointer-events: none;
}

.shape-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.shape-divider.to-cream polygon { fill: var(--warm-cream); }
.shape-divider.to-dark polygon { fill: var(--soft-black); }
.shape-divider.to-cherry polygon { fill: var(--deep-cherry); }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 1;
}

html.js-ready .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

html.js-ready .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html.js-ready .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== 3D tilt ===== */
.tilt {
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
  will-change: transform;
  transform-style: preserve-3d;
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--electric-pink);
  margin-bottom: 8px;
}

.eyebrow-light { color: var(--electric-pink); }

.section-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.85;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.section-title-light { color: var(--warm-cream); }

.section-cream {
  background: var(--warm-cream);
  color: var(--soft-black);
}

.section-dark {
  background: var(--soft-black);
  color: var(--warm-cream);
}

.section-orange {
  background: var(--fanni-orange);
  color: var(--soft-black);
}

.section-cherry {
  background: var(--deep-cherry);
  color: var(--warm-cream);
}

/* ===== Split layout (bio) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "media heading"
    "media body";
  gap: 24px 60px;
}

.split-media { grid-area: media; align-self: center; }
.split-heading { grid-area: heading; align-self: end; }
.split-body { grid-area: body; align-self: start; }

.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.photo-placeholder {
  aspect-ratio: 4 / 5;
  background: var(--deep-cherry);
  color: var(--warm-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 12px;
}

.photo-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  background: var(--deep-cherry);
  box-shadow: 0 24px 48px rgba(23,19,21,0.28);
}

.photo-credit {
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--soft-black);
  opacity: 0.6;
}

.split-body p { max-width: 480px; margin-bottom: 24px; }

.booking-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  background: var(--warm-cream) center / cover no-repeat;
  overflow: hidden;
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(244,232,215,0.97) 0%, rgba(244,232,215,0.9) 16%, rgba(244,232,215,0.35) 45%, rgba(244,232,215,0) 68%);
}

.booking-content {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: 64px 24px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking-content p { max-width: 480px; margin-bottom: 24px; }

.booking-credit {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 16px;
  font-size: 0.7rem;
  color: var(--soft-black);
  opacity: 0.6;
}

.bio-tagline {
  font-weight: 600;
  color: var(--electric-pink);
}

/* ===== Music ===== */
.music-stack {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 10px;
}

.music-block-spotify {
  width: 100%;
}

.video-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.spotify-embed iframe {
  height: 352px;
}

.music-block h3 {
  font-size: 1.1rem;
  color: var(--electric-pink);
  margin-bottom: 16px;
  text-transform: none;
  font-family: var(--font-body);
  font-weight: 600;
}

.video-embed {
  position: relative;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--deep-cherry);
  box-shadow: 0 20px 44px rgba(0,0,0,0.4);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.spotify-embed iframe {
  border-radius: 12px;
}

.spotify-embed {
  border-radius: 12px;
  box-shadow: 0 20px 44px rgba(0,0,0,0.4);
}

/* ===== Release / Countdown ===== */
.release-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.release-text {
  max-width: 480px;
  margin-bottom: 40px;
}

.release-statement {
  max-width: 480px;
  margin: -12px 0 40px;
  padding: 20px 24px;
  border: 1px solid rgba(244, 232, 215, 0.3);
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.release-source {
  max-width: 480px;
  margin-top: 24px;
  font-size: 0.7rem;
  line-height: 1.5;
  opacity: 0.6;
}

.release-source a {
  color: inherit;
  text-decoration: underline;
  word-break: break-all;
}

.release-source a:hover {
  opacity: 1;
}

.cover-art {
  width: min(280px, 60vw);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow: 0 24px 50px rgba(23,19,21,0.45);
}

.countdown {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.countdown-item {
  background: var(--warm-cream);
  color: var(--electric-pink);
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 14px 28px rgba(23,19,21,0.3);
}

.countdown-item span {
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
}

.countdown-item small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  color: var(--electric-pink);
}

/* ===== Contact ===== */
.contact-section {
  text-align: center;
  padding: 50px 0;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-email {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--electric-pink);
  margin-bottom: 32px;
  transition: color var(--transition);
}

.contact-email:hover { color: var(--warm-cream); }

/* ===== Footer ===== */
.site-footer {
  background: var(--soft-black);
  color: var(--warm-cream);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo { height: 24px; width: auto; opacity: 0.8; }

.footer-inner p { font-size: 0.85rem; opacity: 0.7; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "media"
      "body";
  }
  .split-media { align-self: auto; }
  .split-reverse { direction: ltr; }
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--soft-black);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }

  .site-nav.open { max-height: 320px; }

  .site-nav a {
    padding: 16px;
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(244,232,215,0.1);
  }

  .countdown { gap: 12px; }
  .countdown-item { min-width: 60px; padding: 12px 14px; }

  .hero { background-position: 80% center; }
  .booking-hero { background-position: 0% center; }

  main { display: flex; flex-direction: column; }
  #hero { order: 1; }
  #release { order: 2; }
  #bio { order: 3; }
  #music { order: 4; }
  #booking { order: 5; }
  #contact { order: 6; }

  .logo {
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .site-header.scrolled .logo {
    opacity: 1;
    pointer-events: auto;
  }
}
