/* ===== zu-viele-mangas — Styles ===== */

@import url('fonts/fonts.css');

:root {
  --cream: #FDF6EC;
  --cream-2: #FFF0DC;
  --peach: #FFB88A;
  --orange: #FF7A45;
  --sun: #FFD166;
  --ink: #2B1D16;
  --ink-soft: #5A463C;
  --ink-muted: #8B7569;
  --line: #E8D9C4;

  --font-display: 'Bricolage Grotesque', 'Zen Kaku Gothic Antique', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 6px rgba(43,29,22,.06);
  --shadow: 0 12px 40px rgba(43,29,22,.10);
  --shadow-lg: 0 30px 80px rgba(43,29,22,.15);

  --max: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== Animated background (blobs + halftone) ===== */

.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-fx::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 40% at 15% 20%, rgba(255,122,69,.45), transparent 70%),
    radial-gradient(45% 45% at 85% 15%, rgba(255,209,102,.55), transparent 70%),
    radial-gradient(50% 50% at 70% 85%, rgba(255,184,138,.50), transparent 70%),
    radial-gradient(35% 35% at 20% 90%, rgba(255,122,69,.30), transparent 70%),
    var(--cream);
  animation: drift 22s ease-in-out infinite alternate;
  filter: blur(10px);
}

.bg-fx::after {
  content: "";
  position: absolute;
  inset: -10%;
  background-image: radial-gradient(rgba(43,29,22,.11) 1px, transparent 1.4px);
  background-size: 14px 14px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  animation: halftone 40s linear infinite;
  opacity: .55;
}

@keyframes drift {
  0%   { transform: scale(1)   translate(0, 0); }
  50%  { transform: scale(1.08) translate(-2%, 1%); }
  100% { transform: scale(1.04) translate(2%, -1%); }
}

@keyframes halftone {
  0%   { background-position: 0 0; }
  100% { background-position: 140px 140px; }
}

@media (prefers-reduced-motion: reduce) {
  .bg-fx::before, .bg-fx::after { animation: none; }
}

/* ===== Layout ===== */

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

/* ===== Navigation ===== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  background: rgba(253,246,236,.55);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.nav.scrolled {
  background: rgba(253,246,236,.9);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.brand img { width: 38px; height: 38px; display: block; transition: transform .3s ease; }
.brand:hover img { transform: rotate(-6deg) scale(1.05); }

.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover { background: rgba(43,29,22,.06); }
.nav-links a.active { background: var(--ink); color: var(--cream); }

/* ===== Hero ===== */

.hero {
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(43,29,22,.06);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .02em;
  margin-bottom: 22px;
}

.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,122,69,.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: .7; }
}

.hero-logo {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 10px 30px rgba(255,122,69,.3));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-8px) rotate(-2deg); }
}

.hero-banner {
  margin: 0 auto 40px;
  max-width: 1040px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--orange), 0 30px 80px rgba(43,29,22,.22);
  transform: rotate(-0.8deg);
  transition: transform .5s ease;
  padding: 0;
}
.hero-banner:hover { transform: rotate(0deg) scale(1.01); }
.hero-banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) {
  .hero-banner { transform: rotate(0); box-shadow: 6px 6px 0 var(--orange), var(--shadow); border-width: 2px; }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 11vw, 8rem);
  line-height: .95;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: var(--ink);
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--orange), var(--sun));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  padding-right: 0.12em;
  margin-right: -0.04em;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 36px;
  font-weight: 500;
}

/* ===== Buttons ===== */

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px) rotate(-1deg); box-shadow: var(--shadow); }

.btn-platform {
  background: var(--cream-2);
  color: var(--ink);
  border-color: var(--line);
}
.btn-platform:hover { transform: translateY(-2px) rotate(-1deg); box-shadow: var(--shadow); background: white; }

.btn svg { width: 18px; height: 18px; }

/* ===== Sections ===== */

section.panel {
  padding: 90px 0;
}

.panel-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.panel-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, var(--sun), transparent 70%);
  opacity: .35;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 720px;
  line-height: 1.7;
}

/* ===== Hosts ===== */

.hosts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.host-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.host-card:hover {
  transform: translateY(-4px) rotate(-.5deg);
  box-shadow: var(--shadow);
}

.host-avatar {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--orange);
}

.host-avatar.placeholder {
  background: linear-gradient(135deg, var(--peach), var(--sun));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--ink);
}

.host-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.host-role {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.host-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .hosts { grid-template-columns: 1fr; }
  .host-card { flex-direction: column; }
}

/* ===== Episodes list ===== */

.episode-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.episode-loading, .episode-error {
  text-align: center;
  padding: 40px 20px;
  color: var(--ink-muted);
  background: white;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}
.episode-error a { color: var(--orange); font-weight: 600; }

.episode {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.episode:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--peach);
}

.episode-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--orange);
  line-height: 1;
  text-align: center;
  letter-spacing: -0.02em;
}
.episode-num small {
  display: block;
  font-size: 0.65rem;
  color: var(--ink-muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.episode-meta h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.episode-meta .info {
  font-size: 13px;
  color: var(--ink-muted);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.episode-meta .info span + span::before {
  content: "·";
  margin-right: 10px;
  color: var(--line);
}

.episode-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.episode-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-2);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: background .15s ease, transform .15s ease, color .15s ease;
}
.episode-link:hover { background: var(--orange); color: white; transform: scale(1.08); }
.episode-link svg { width: 18px; height: 18px; }

@media (max-width: 640px) {
  .episode { grid-template-columns: 56px 1fr; row-gap: 10px; }
  .episode-links { grid-column: 1 / -1; justify-content: flex-start; }
}

/* ===== Footer ===== */

footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
  margin-top: 60px;
  background: rgba(255,240,220,.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-brand img { width: 40px; height: 40px; }
.footer-brand span { font-family: var(--font-display); font-weight: 800; font-size: 18px; }

footer h4 {
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 14px;
  color: var(--ink-soft);
}

footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; }
footer a {
  text-decoration: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  transition: color .15s ease;
}
footer a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-muted);
}
.footer-bottom a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.footer-bottom a:hover { color: var(--ink); }

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ===== Scroll reveal ===== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Generic page (legal, merch, about) ===== */

.page-hero {
  padding: 80px 0 40px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.page-hero p {
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0 80px;
  font-size: 16px;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 32px 0 10px;
  letter-spacing: -0.01em;
}
.prose h3 { font-size: 1.1rem; margin: 24px 0 6px; }
.prose p { color: var(--ink-soft); line-height: 1.75; }
.prose a { color: var(--orange); }

.todo {
  display: inline-block;
  background: var(--sun);
  color: var(--ink);
  padding: 1px 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85em;
}

/* ===== Shop ===== */
.shop-gate {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  max-width: 600px;
  margin: 0 auto;
}
.shop-gate h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.shop-gate p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px;
}
.shop-gate p a { color: var(--orange); font-weight: 600; }
.shop-gate .btn { margin-top: 6px; }

.shop-wrap {
  width: 100%;
  max-width: 1180px;
  margin: 24px auto 80px;
  padding: 0 16px;
  box-sizing: border-box;
}
#myShop {
  width: 100%;
  min-height: 600px;
  box-sizing: border-box;
  overflow: hidden;
}
#myShop > a { color: var(--ink-soft); }
#myShop iframe,
#myShop img {
  max-width: 100% !important;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .shop-wrap { padding: 0 8px; }
}

/* ===== Channel grid (über uns) ===== */

.channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  max-width: 640px;
}
.channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}
.channel:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: var(--shadow); }
.channel-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--peach), var(--sun));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.channel-icon svg { width: 22px; height: 22px; color: var(--ink); }
.channel-name { font-weight: 700; font-size: 15px; }
.channel-handle { font-size: 13px; color: var(--ink-muted); }
