/* ==========================================================================
   Gugus.wtf — Farbschema & Variablen
   ========================================================================== */

:root {
  /* Grundfarben — dunkles Blau als Bühne */
  --color-bg: #0a0e2a;
  --color-bg-alt: #10153b;
  --color-bg-card: #141a47;

  /* Text */
  --color-text: #f4f1ea;
  --color-text-muted: #b7bbe0;
  --color-text-soft: #8d92c2;

  /* Akzentfarben — Pink & Gelb */
  --color-pink: #ff5fa2;
  --color-pink-soft: #ff8fc4;
  --color-yellow: #ffd166;
  --color-yellow-soft: #ffe199;

  --gradient-accent: linear-gradient(135deg, var(--color-pink) 0%, var(--color-yellow) 100%);

  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-accent: rgba(255, 209, 102, 0.35);

  /* Schriften */
  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --font-serif: "EB Garamond", Georgia, serif;

  /* Sonstiges */
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   Reset & Basis
   ========================================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

h1, h2 {
  font-family: var(--font-display);
  margin: 0;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--color-yellow);
  text-decoration: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* ==========================================================================
   Hintergrund-Deko
   ========================================================================== */

.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 95, 162, 0.12), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(255, 209, 102, 0.10), transparent 40%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 60%, var(--color-bg) 100%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  animation: float 16s ease-in-out infinite;
}

.blob--pink {
  width: 420px;
  height: 420px;
  background: var(--color-pink);
  top: -120px;
  left: -100px;
}

.blob--yellow {
  width: 360px;
  height: 360px;
  background: var(--color-yellow);
  top: 30%;
  right: -120px;
  animation-delay: -8s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(40px) translateX(20px) scale(1.08); }
}

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

.hero {
  text-align: center;
  padding: 6rem 1.5rem 3rem;
}

.hero__kicker {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-yellow-soft);
  margin-bottom: 1rem;
}

.logo {
  font-size: clamp(3rem, 12vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 30px rgba(255, 95, 162, 0.25));
}

.logo__tld {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--color-text);
  opacity: 0.85;
}

.hero__tagline {
  margin-top: 1rem;
  font-size: 1.15rem;
  color: var(--color-text-muted);
  font-weight: 300;
}

/* ==========================================================================
   Sections — generell
   ========================================================================== */

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3rem 0;
}

.section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.section h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 0.6rem;
  border-radius: 4px;
  background: var(--gradient-accent);
}

/* ==========================================================================
   Wörterbuch-Karte
   ========================================================================== */

.dict-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-serif);
}

.dict-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
}

.dict-card__word {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-text);
}

.dict-card__hyphen {
  color: var(--color-yellow);
}

.dict-card__gender {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text-soft);
  font-weight: 400;
}

.dict-card__ipa {
  margin: 0;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-pink-soft);
  letter-spacing: 0.02em;
}

.dict-card__meta {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--color-text-soft);
}

.dict-card__entries {
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}

.dict-card__entries div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
}

.dict-card__entries dt {
  font-weight: 600;
  color: var(--color-yellow-soft);
}

.dict-card__entries dd {
  margin: 0;
  color: var(--color-text);
}

/* ==========================================================================
   Video-Karte
   ========================================================================== */

.video-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(255, 95, 162, 0.22);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

/* ==========================================================================
   Mission & Herkunft
   ========================================================================== */

.section--mission p,
.section--herkunft p,
.section--guguswtf p {
  font-size: 1.08rem;
  color: var(--color-text-muted);
}

.mission__more {
  color: var(--color-text-soft);
  font-style: italic;
  font-size: 0.95rem;
}

/* Hervorhebung jedes "Gugus" im Fliesstext */
gugus {
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   Links
   ========================================================================== */

.links__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.links__list a {
  display: block;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  color: var(--color-text);
  font-weight: 500;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.links__list a:hover {
  transform: translateX(6px);
  border-color: var(--color-border-accent);
  color: var(--color-yellow-soft);
}

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

.footer {
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
  color: var(--color-text-soft);
  font-size: 0.9rem;
}
