Files
dogfather-universe/assets/css/main.css
T
DogFatherGitandClaude Opus 5 5761fe1a27 Hintergrundbilder: garantiert volle Breite UND komplett sichtbar
Nach mehreren Anlaeufen mit CSS background-size (cover schnitt Raender
ab, "100% auto" schnitt oben/unten ab sobald die Box nicht exakt im
Bildseitenverhaeltnis war) jetzt die einzige Loesung, die beides IMMER
garantiert: ein echtes <img width:100% height:auto> statt eines CSS-
Hintergrunds. Die Bildhoehe bestimmt sich selbst statt in eine
vorgegebene Box gepresst zu werden -- dadurch kann nichts mehr
beschnitten werden, unabhaengig vom Bildseitenverhaeltnis.

- 18 Seiten (alle bewerben-*, casper, community, creator, dogfather,
  hasidog, manager, stimmen, streamplan, team-modis, team-scouts,
  vanvan, werte, zeitreise) bekommen einen echten Bild-Banner oben im
  Kopfbereich statt eines CSS-Hintergrunds. Bild sitzt jetzt als
  eigener Banner OBERHALB der Ueberschrift, mit weichem Verlauf zur
  Seite hin.
- profil.html: gleiches Prinzip, Bild wird per JS passend zur Person
  (Modi/Scout/Creator-Welt) nachgeladen.
- index.html/hasidog.html (Kino-Hintergrund mit Text UEBER dem Bild +
  Polarlicht-Effekten): Redesign auf Banner-Layout haette das Design
  zerstoert. Stattdessen die scharfe Bildebene auf "contain" umgestellt
  (garantiert komplett sichtbar), die vorhandene weichgezeichnete
  Cover-Ebene darunter fuellt jeden Rand, den "contain" freilaesst --
  wirkt dadurch weiterhin randlos, obwohl die scharfen Pixel nie
  beschnitten werden.

Co-Authored-By: Claude Opus 5 <[email protected]>
2026-08-01 00:31:58 +02:00

1346 lines
44 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/* =====================================================================
DOGFATHER UNIVERSE — main.css
Gemeinsames Design-System für alle drei Welten (Dogfather / HasiDog /
Manager Dogfather). Farben kommen aus den theme-*.css Dateien über
CSS-Variablen — dieses File ist bewusst themen-neutral.
===================================================================== */
/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
/* ---------- Fallback-Theme (Dogfather) — wird von theme-*.css überschrieben ---------- */
:root {
--bg: #0b0d10;
--bg-alt: #12151a;
--card-bg: #171b21;
--text: #f3f5f7;
--text-muted: #9aa4b2;
--border: #262c35;
--accent: #8fd9ea; /* Babyblau */
--accent-2: #8b5cf6; /* Lila */
--accent-contrast: #0b0d10;
--radius: 14px;
--font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
--font-body: "Inter", "Segoe UI", system-ui, sans-serif;
--shadow: 0 10px 30px rgba(0,0,0,.35);
}
body {
background: var(--bg);
color: var(--text);
font-family: var(--font-body);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
min-height: 100vh;
position: relative;
overflow-x: hidden;
}
h1, h2, h3, h4 {
font-family: var(--font-head);
line-height: 1.2;
margin: 0 0 .5em;
font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--text-muted); }
.lead { font-size: 1.15rem; color: var(--text); }
.container {
width: min(1180px, 92vw);
margin: 0 auto;
}
section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section-tight { padding: clamp(1.5rem, 3vw, 2.5rem) 0; }
.eyebrow {
display: inline-block;
font-size: .78rem;
letter-spacing: .14em;
text-transform: uppercase;
color: var(--accent);
font-weight: 700;
margin-bottom: .8em;
}
/* ---------- Nebel/Partikel Hintergrund ---------- */
.fog-layer {
position: fixed;
inset: 0;
pointer-events: none;
z-index: 0;
overflow: hidden;
}
.fog-layer span {
position: absolute;
border-radius: 50%;
background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
opacity: .08;
filter: blur(4px);
animation: drift 26s linear infinite;
}
@keyframes drift {
0% { transform: translateY(0) translateX(0); }
50% { transform: translateY(-40px) translateX(20px); }
100% { transform: translateY(0) translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
.fog-layer span { animation: none; }
}
/* ---------- Header / Navigation ---------- */
header.site-header {
position: sticky;
top: 0;
z-index: 50;
/* Kräftig deckend statt Weichzeichnen durch das Bild dahinter — die
Kombination aus backdrop-filter + fest positionierter Kopfzeile führte
bei Chromium-Rendern zu Darstellungsfehlern (Logo/Menü teils unsichtbar).
Deckende Farbe braucht keinen Weichzeichner und ist zusätzlich schneller. */
background: var(--bg);
border-bottom: 1px solid var(--border);
}
.nav-bar {
width: min(1180px, 92vw);
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
padding: .9rem 0;
flex-wrap: nowrap;
}
/* Logo und Menü-Knopf dürfen NIE zusammengequetscht werden — auch nicht,
wenn .nav-links (das ausgeklappte Menü) aus irgendeinem Grund kurzzeitig
noch normal mitgerechnet wird, bevor die Klappt-Logik greift. */
.brand, .nav-toggle { flex-shrink: 0; }
.brand {
display: flex;
align-items: center;
gap: .6rem;
font-family: var(--font-head);
font-weight: 800;
font-size: 1.15rem;
letter-spacing: .02em;
}
.brand .heart { color: var(--accent); }
.brand-logo {
width: 34px;
height: 34px;
border-radius: 9px;
object-fit: cover;
flex-shrink: 0;
}
.brand small {
display: block;
font-size: .6rem;
font-weight: 500;
letter-spacing: .1em;
color: var(--text-muted);
text-transform: uppercase;
}
.nav-links {
display: flex;
align-items: center;
gap: 1.6rem;
}
.nav-group { position: relative; }
.nav-group > button {
background: none;
border: none;
color: var(--text);
font-weight: 600;
cursor: pointer;
display: flex;
align-items: center;
gap: .3rem;
padding: .5rem 0;
}
.nav-group > button:hover, .nav-group.open > button { color: var(--accent); }
.nav-flat { font-weight: 600; padding: .5rem 0; }
.nav-flat:hover, .nav-flat.active { color: var(--accent); }
.nav-dropdown {
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
min-width: 220px;
background: var(--card-bg);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: .5rem;
box-shadow: var(--shadow);
display: none;
flex-direction: column;
}
.nav-group.open .nav-dropdown { display: flex; }
.nav-dropdown a {
padding: .55rem .7rem;
border-radius: 8px;
font-size: .92rem;
color: var(--text-muted);
}
.nav-dropdown a:hover, .nav-dropdown a.active { background: var(--bg-alt); color: var(--accent); }
/* "Bewerben" ist der Treffpunkt beider Welten (Team Dogi + Spicy Media) —
deshalb bewusst FEST halb babyblau, halb rot, unabhängig vom Theme der
gerade offenen Seite. Kein var(--accent), sondern die festen Markenfarben. */
.nav-cta {
padding: .55rem 1.1rem;
border-radius: 999px;
background: linear-gradient(90deg, #8fd9ea 0%, #8fd9ea 49%, #d94a5c 51%, #d94a5c 100%);
color: #0a0c10;
font-weight: 700;
font-size: .88rem;
transition: filter .2s ease, transform .2s ease;
}
.nav-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }
/* Interner Login — dezent, aber auf jeder Seite oben rechts auffindbar */
.nav-login {
display: inline-flex;
align-items: center;
gap: .3rem;
padding: .5rem .9rem;
border-radius: 999px;
border: 1px solid var(--border);
color: var(--text-muted);
font-weight: 700;
font-size: .82rem;
white-space: nowrap;
transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.nav-login:hover,
.nav-login:focus-visible {
color: var(--accent);
border-color: var(--accent);
background: color-mix(in srgb, var(--accent) 12%, transparent);
}
.nav-toggle {
display: none;
background: none;
border: 1px solid var(--border);
border-radius: 8px;
color: var(--text);
padding: .5rem .7rem;
cursor: pointer;
}
@media (max-width: 880px) {
.nav-toggle { display: block; }
.nav-links {
position: fixed;
inset: 62px 0 0 0;
background: var(--bg);
flex-direction: column;
align-items: stretch;
padding: 1.2rem 6vw;
gap: .3rem;
transform: translateY(-110%);
transition: transform .25s ease;
overflow-y: auto;
}
.nav-links.open { transform: translateY(0); }
.nav-group > button { width: 100%; justify-content: space-between; padding: .9rem 0; border-bottom: 1px solid var(--border); }
.nav-flat { display: block; padding: .9rem 0; border-bottom: 1px solid var(--border); }
.nav-dropdown { position: static; transform: none; box-shadow: none; width: 100%; }
.nav-group.open .nav-dropdown { display: flex; }
.nav-cta { align-self: flex-start; margin: 1rem 0 .6rem; }
.nav-login { align-self: flex-start; }
}
/* ---------- Buttons ---------- */
.btn {
display: inline-flex;
align-items: center;
gap: .5rem;
padding: .8rem 1.5rem;
border-radius: 999px;
font-weight: 700;
font-size: .95rem;
border: 1px solid transparent;
cursor: pointer;
transition: transform .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--accent-contrast); }
.btn-secondary { background: var(--accent-2); color: #fff; }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
/* ---------- Hero ---------- */
.hero {
position: relative;
padding: clamp(4rem, 10vw, 7rem) 0;
text-align: center;
overflow: hidden;
}
.hero > .container { position: relative; z-index: 1; }
.hero .worlds {
margin: .6rem 0 1.2rem;
color: var(--text-muted);
font-size: 1.05rem;
}
.hero-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.2rem;
margin-top: 3rem;
}
@media (max-width: 760px) { .hero-grid { grid-template-columns: 1fr; } }
/* ---------- Cards ---------- */
.card {
background: var(--card-bg);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 1.6rem;
box-shadow: var(--shadow);
height: 100%;
transition: border-color .15s ease, transform .15s ease;
}
.card:hover { border-color: var(--accent); transform: translateY(-3px); }
.card h3 { margin-bottom: .4rem; }
.card .tag {
display: inline-block;
font-size: .72rem;
text-transform: uppercase;
letter-spacing: .08em;
color: var(--accent);
border: 1px solid var(--accent);
border-radius: 999px;
padding: .15rem .6rem;
margin-bottom: .8rem;
}
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
/* ---------- Profil-Karten (Team/Creator) ---------- */
.profile-card {
position: relative;
background: var(--card-bg);
border: 1px solid var(--border);
border-radius: var(--radius);
overflow: hidden;
text-align: center;
padding: 2rem 1.2rem 1.7rem;
transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
/* dezenter Lichtschein hinter dem Avatar */
.profile-card::before {
content: "";
position: absolute;
top: -30%;
left: 50%;
width: 200px;
height: 200px;
transform: translateX(-50%);
background: radial-gradient(circle, color-mix(in srgb, var(--accent) 20%, transparent), transparent 70%);
pointer-events: none;
}
.profile-card:hover {
border-color: color-mix(in srgb, var(--accent) 55%, transparent);
transform: translateY(-4px);
box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}
.profile-card h3 { margin: 0 0 .25rem; font-size: 1.15rem; }
/* Avatar-Kreis mit Akzent-Ring.
WICHTIG: hier kommen fertig zugeschnittene Gesichts-Ausschnitte rein
(assets/img/avatar-*.jpg), NICHT die großen Team-Karten — die sind bei
dieser Größe nur Matsch. Siehe `avatar`-Feld in assets/js/data-modis.js. */
.avatar {
width: 108px;
height: 108px;
border-radius: 50%;
margin: 0 auto 1rem;
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background: linear-gradient(140deg, var(--accent), var(--accent-2));
box-shadow:
0 0 0 2px var(--card-bg),
0 0 0 4px color-mix(in srgb, var(--accent) 55%, transparent),
0 10px 26px rgba(0, 0, 0, .45);
transition: box-shadow .3s ease, transform .3s ease;
}
.avatar img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
/* Leichter Glanz oben, damit der Kreis nicht flach wirkt */
.avatar::after {
content: "";
position: absolute;
inset: 0;
border-radius: 50%;
background: linear-gradient(165deg, rgba(255, 255, 255, .18), transparent 55%);
pointer-events: none;
}
.avatar-initial {
font-family: var(--font-head);
font-weight: 800;
font-size: 2.4rem;
line-height: 1;
color: var(--accent-contrast);
text-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}
.profile-card:hover .avatar {
transform: translateY(-2px);
box-shadow:
0 0 0 2px var(--card-bg),
0 0 0 4px var(--frame, var(--accent)),
0 14px 32px rgba(0, 0, 0, .5);
}
/* Fest lila bei JEDER Profilkarte (Modis, Scouts, Creator) — Wunsch von
Dogi, nachdem ihm Michis zufällig lila geloster Ring gefallen hat.
Fester Hex-Wert statt var(--accent-2), damit es auch auf den roten
Agentur-Seiten (Scout/Creator) lila bleibt statt orange zu werden. */
.profile-card { --frame: #8b5cf6; }
.profile-card .avatar {
/* Fester lila-Verlauf statt var(--accent-2), damit der Avatar-Hintergrund
auch auf roten Agentur-Seiten sauber lila bleibt statt lila+orange zu mischen. */
background: linear-gradient(140deg, var(--frame, var(--accent)), #6d28d9);
box-shadow:
0 0 0 2px var(--card-bg),
0 0 0 4px color-mix(in srgb, var(--frame, var(--accent)) 60%, transparent),
0 10px 26px rgba(0, 0, 0, .45);
}
.profile-card::before {
background: radial-gradient(circle,
color-mix(in srgb, var(--frame, var(--accent)) 20%, transparent), transparent 70%);
}
.profile-card:hover { border-color: color-mix(in srgb, var(--frame, var(--accent)) 60%, transparent); }
.profile-card .role { color: var(--accent); font-weight: 600; font-size: .85rem; margin-bottom: .6rem; }
.profile-card .quote { font-style: italic; font-size: .9rem; }
.profile-card .socials { display: flex; justify-content: center; gap: .6rem; margin-top: .8rem; }
.profile-card .socials a {
border: 1px solid var(--border);
border-radius: 999px;
padding: .35rem .8rem;
font-size: .78rem;
color: var(--text-muted);
}
.profile-card .socials a:hover { color: var(--accent); border-color: var(--accent); }
/* ---------- Placeholder-Bild-Boxen (bis echte Fotos da sind) ---------- */
.img-placeholder {
aspect-ratio: 4 / 3;
border-radius: var(--radius);
background: repeating-linear-gradient(135deg, var(--bg-alt), var(--bg-alt) 10px, var(--card-bg) 10px, var(--card-bg) 20px);
border: 1px dashed var(--border);
display: flex;
align-items: center;
justify-content: center;
color: var(--text-muted);
font-size: .8rem;
text-align: center;
padding: 1rem;
}
/* ---------- Timeline (Zeitreise) ---------- */
.timeline { position: relative; margin: 2rem 0; padding-left: 2rem; border-left: 2px solid var(--border); }
.timeline-item { position: relative; padding-bottom: 2.4rem; }
.timeline-item::before {
content: "";
position: absolute;
left: -2.45rem;
top: .2rem;
width: 14px; height: 14px;
border-radius: 50%;
background: var(--accent);
box-shadow: 0 0 0 4px var(--bg);
}
.timeline-item .date { color: var(--accent); font-weight: 700; font-size: .85rem; }
/* ---------- Gallery / Lightbox ---------- */
.filter-bar { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.filter-btn {
border: 1px solid var(--border);
background: transparent;
color: var(--text-muted);
padding: .5rem 1rem;
border-radius: 999px;
cursor: pointer;
font-size: .85rem;
}
.filter-btn.active, .filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.gallery-item { cursor: pointer; }
.lightbox {
position: fixed; inset: 0; background: rgba(0,0,0,.85);
display: none; align-items: center; justify-content: center; z-index: 200; padding: 5vh 5vw;
}
.lightbox.open { display: flex; }
.lightbox img, .lightbox .img-placeholder { max-height: 85vh; max-width: 90vw; }
.lightbox-close {
position: absolute; top: 20px; right: 30px; color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none;
}
/* ---------- Formulare ---------- */
form.app-form { display: grid; gap: 1rem; max-width: 640px; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 600; font-size: .9rem; }
.field input, .field select, .field textarea {
background: var(--bg-alt);
border: 1px solid var(--border);
border-radius: 10px;
padding: .75rem .9rem;
color: var(--text);
font-family: var(--font-body);
}
.field textarea { min-height: 120px; resize: vertical; }
.field .error-msg { color: #ff6b6b; font-size: .8rem; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #ff6b6b; }
.field.has-error .error-msg { display: block; }
.form-status { padding: .9rem 1.1rem; border-radius: 10px; font-size: .9rem; display: none; }
.form-status.show { display: block; }
.form-status.success { background: rgba(143,217,234,.12); border: 1px solid var(--accent); }
.form-status.error { background: rgba(255,107,107,.1); border: 1px solid #ff6b6b; }
.tabs { display: flex; gap: .6rem; margin-bottom: 1.8rem; flex-wrap: wrap; }
.tab-btn {
border: 1px solid var(--border); background: var(--card-bg); color: var(--text-muted);
padding: .7rem 1.3rem; border-radius: 999px; cursor: pointer; font-weight: 600;
}
.tab-btn.active { border-color: var(--accent); color: var(--accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
/* ---------- Footer ---------- */
footer.site-footer {
border-top: 1px solid var(--border);
padding: 3rem 0 2rem;
margin-top: 4rem;
position: relative;
z-index: 1;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); }
.footer-grid ul { display: grid; gap: .5rem; }
.footer-grid a { color: var(--text-muted); font-size: .9rem; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom {
margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem;
font-size: .8rem; color: var(--text-muted);
}
/* ---------- Foto-Collage (Polaroid-Scrapbook, z.B. Dogfather & Casper) ---------- */
.collage-wrap {
position: relative;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: flex-end;
gap: 1.6rem 1rem;
padding: 2.5rem 0 1.5rem;
max-width: 900px;
margin: 0 auto;
}
.collage-item {
background: #fff;
padding: 10px 10px 30px;
border-radius: 6px;
box-shadow: 0 16px 30px rgba(0, 0, 0, .4);
width: 190px;
transition: transform .25s ease, box-shadow .25s ease;
cursor: default;
}
.collage-item:nth-child(1) { transform: rotate(-7deg) translateY(12px); }
.collage-item:nth-child(2) { transform: rotate(4deg) translateY(-10px); z-index: 2; width: 210px; }
.collage-item:nth-child(3) { transform: rotate(-3deg) translateY(4px); }
.collage-item:nth-child(4) { transform: rotate(8deg) translateY(-6px); }
.collage-item:nth-child(5) { transform: rotate(-9deg) translateY(10px); }
.collage-item:hover {
transform: scale(1.08) rotate(0deg) !important;
z-index: 5;
box-shadow: 0 22px 40px rgba(0, 0, 0, .55);
}
/* Alle Fotoflächen bekommen denselben Rahmen-Look wie die Avatare:
feine Linie in der Rahmenfarbe, dunkle Trennkante, weicher Schlagschatten.
Die Farbe steuert die Variable --frame — Standard ist die Markenfarbe.
Andere Farben über die Klassen .frame-silver / .frame-lila / .frame-gold /
.frame-rot setzen (siehe unten). */
.collage-photo {
--frame: var(--accent);
position: relative;
aspect-ratio: 1 / 1;
border-radius: 10px;
overflow: hidden;
background: repeating-linear-gradient(135deg, #e8ebee, #e8ebee 10px, #f6f7f9 10px, #f6f7f9 20px);
box-shadow:
0 0 0 2px color-mix(in srgb, var(--frame) 62%, transparent),
0 0 0 4px rgba(0, 0, 0, .55),
0 0 26px color-mix(in srgb, var(--frame) 22%, transparent),
0 14px 34px rgba(0, 0, 0, .45);
transition: box-shadow .3s ease, transform .3s ease;
}
.collage-photo:hover {
transform: translateY(-3px);
box-shadow:
0 0 0 2px var(--frame),
0 0 0 4px rgba(0, 0, 0, .55),
0 0 38px color-mix(in srgb, var(--frame) 38%, transparent),
0 18px 42px rgba(0, 0, 0, .5);
}
/* Farbvarianten für Abwechslung */
.frame-silver { --frame: #c7ccd1; }
.frame-lila { --frame: var(--accent-2); }
.frame-gold { --frame: #d8b25a; }
.frame-rot { --frame: #d94a5c; }
.frame-tuerkis{ --frame: #6ee7d8; }
.collage-photo img {
width: 100%;
height: 100%;
object-fit: cover;
/* dezenter Marken-Look: Sättigung/Kontrast leicht angehoben, Farbton via Overlay */
filter: saturate(1.15) contrast(1.08) brightness(1.02);
}
.collage-photo::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(155deg, rgba(143, 217, 234, .22), rgba(139, 92, 246, .14));
mix-blend-mode: overlay;
pointer-events: none;
}
.collage-photo .img-placeholder {
position: absolute;
inset: 0;
border-radius: 0;
border: none;
color: #6b7280;
}
.collage-caption {
text-align: center;
font-family: "Comic Sans MS", "Segoe Print", cursive;
color: #2a2a2a;
font-size: .85rem;
margin-top: .5rem;
}
@media (max-width: 620px) {
.collage-item, .collage-item:nth-child(2) { width: 140px; }
}
/* ---------- Hero-Atmosphäre (Startseite): Polarlicht oben → Rauch Mitte → Nebel unten ----------
Drei Zonen, die weich ineinander übergehen, plus 4 Husky-/Hasen-Silhouetten mit leuchtend
blauen Augen, die deutlich erkennbar (aber nicht grell) darin stehen. ---------- */
.hero-atmosphere {
position: absolute;
inset: 0;
z-index: 0;
overflow: hidden;
pointer-events: none;
}
/* Verbindender Farbverlauf über die ganze Höhe: babyblau (oben) → neutral (Mitte) → silbrig (unten) */
.atmosphere-blend {
position: absolute;
inset: 0;
/* Fallback für Browser ohne color-mix() */
background: linear-gradient(
to bottom,
rgba(143, 217, 234, .18) 0%,
rgba(139, 92, 246, .12) 38%,
rgba(154, 166, 178, .10) 68%,
rgba(210, 216, 222, .14) 100%
);
background: linear-gradient(
to bottom,
color-mix(in srgb, var(--accent) 22%, transparent) 0%,
color-mix(in srgb, var(--accent-2) 14%, transparent) 38%,
rgba(154, 166, 178, .10) 68%,
rgba(210, 216, 222, .14) 100%
);
mix-blend-mode: screen;
opacity: .8;
}
/* ---- Zone 1: Polarlicht (oben) ---- */
.aurora-band {
position: absolute;
width: 150%;
height: 60%;
left: -25%;
border-radius: 50%;
filter: blur(65px);
opacity: .22;
mix-blend-mode: screen;
animation: aurora-drift 30s ease-in-out infinite;
}
.aurora-band.a1 { top: -16%; background: radial-gradient(ellipse at center, var(--accent) 0%, transparent 70%); animation-duration: 26s; }
.aurora-band.a2 { top: 4%; background: radial-gradient(ellipse at center, var(--accent-2) 0%, transparent 70%); animation-duration: 36s; animation-delay: -9s; opacity: .18; }
.aurora-band.a3 { top: 16%; background: radial-gradient(ellipse at center, #6ee7d8 0%, transparent 70%); animation-duration: 44s; animation-delay: -18s; opacity: .14; }
@keyframes aurora-drift {
0%, 100% { transform: translateX(-4%) translateY(0) scaleY(1); }
50% { transform: translateX(4%) translateY(-3%) scaleY(1.18); }
}
/* ---- Zone 2: Rauch (Mitte) ---- */
.smoke-blob {
position: absolute;
top: 32%;
border-radius: 50%;
background: radial-gradient(circle, rgba(210, 214, 220, .16), transparent 72%);
filter: blur(40px);
animation: smoke-float 30s ease-in-out infinite;
}
@keyframes smoke-float {
0%, 100% { transform: translate(0,0) scale(1); }
50% { transform: translate(3%, -4%) scale(1.12); }
}
/* ---- Zone 3: Nebel (unten) ---- */
.fog-ground {
position: absolute;
bottom: -8%;
left: -15%;
width: 130%;
height: 42%;
background: linear-gradient(to top, rgba(220, 224, 228, .28), transparent 85%);
filter: blur(30px);
animation: fog-drift 40s ease-in-out infinite;
}
@keyframes fog-drift {
0%, 100% { transform: translateX(-3%); }
50% { transform: translateX(3%); }
}
@media (prefers-reduced-motion: reduce) {
.aurora-band, .smoke-blob, .fog-ground { animation: none; }
}
/* ==========================================================================
KINO-HINTERGRUND — das große Trio-Artwork (Dogfather · Dogi · HasiDog)
Aufbau in drei Schichten, damit der Text immer perfekt lesbar bleibt:
1. ::before = das Artwork selbst, mit langsamer Ken-Burns-Fahrt
2. ::after = Abdunkelung (Vignette + Verlauf), blendet unten in die Seite
3. darüber = die bestehende Polarlicht/Rauch/Nebel-Atmosphäre, gedimmt
========================================================================== */
.hero-cinematic {
padding: clamp(5rem, 13vw, 9rem) 0;
isolation: isolate;
}
.hero-artwork {
position: absolute;
inset: 0;
z-index: 0;
overflow: hidden;
pointer-events: none;
}
.hero-artwork::before {
content: "";
position: absolute;
inset: 0;
/* Zwei Ebenen: das scharfe Artwork komplett sichtbar (contain — auf
dieser Seite läuft der Text ÜBER dem Bild mit Polarlicht-Effekten,
ein Banner-oberhalb-des-Texts-Layout wie auf den anderen Seiten
würde das Design zerstören). Darunter dieselbe Szene verwaschen als
Cover, die jeden Rand auffüllt, den "contain" freilässt — dadurch
wirkt es trotzdem randlos, obwohl die scharfen Pixel garantiert
nie beschnitten werden. */
background-image: url("../img/universe-trio.jpg"), url("../img/universe-trio-blur.jpg");
background-size: contain, cover;
background-position: center, center;
background-repeat: no-repeat, no-repeat;
}
.hero-artwork::after {
content: "";
position: absolute;
inset: 0;
background:
/* Vignette: Mitte frei, Ränder dunkel — lenkt den Blick auf die Figuren */
radial-gradient(ellipse 118% 86% at 50% 44%,
rgba(0, 0, 0, .10) 0%, rgba(0, 0, 0, .52) 68%, rgba(0, 0, 0, .84) 100%),
/* Verlauf: oben dunkel für die Navigation, unten sauberer Übergang in die Seite */
linear-gradient(to bottom,
rgba(0, 0, 0, .62) 0%,
rgba(0, 0, 0, .30) 26%,
rgba(0, 0, 0, .34) 58%,
rgba(0, 0, 0, .78) 88%,
var(--bg) 100%);
}
/* Atmosphäre über dem Artwork nur noch als feiner Schleier */
.hero-cinematic .hero-atmosphere { opacity: .5; }
/* Text bekommt eine weiche Abschattung, damit er auf jedem Bildausschnitt sitzt */
.hero-cinematic h1,
.hero-cinematic .lead,
.hero-cinematic .eyebrow { text-shadow: 0 2px 18px rgba(0, 0, 0, .75), 0 1px 3px rgba(0, 0, 0, .9); }
/* ==========================================================================
CHARAKTER-SHOWCASE — die zwei Artworks groß, scharf und komplett sichtbar
========================================================================== */
.char-showcase {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: clamp(1.1rem, 4vw, 2.4rem);
max-width: 760px;
margin: 0 auto;
}
@media (max-width: 620px) {
.char-showcase { grid-template-columns: 1fr; max-width: 320px; }
}
.char-card {
position: relative;
display: block;
width: 100%;
max-width: 330px;
margin-inline: auto;
border-radius: 20px;
overflow: hidden;
text-decoration: none;
background: #080c11;
border: 1px solid rgba(255, 255, 255, .10);
box-shadow: 0 26px 60px rgba(0, 0, 0, .58);
animation: char-float 11s ease-in-out infinite;
transition: transform .38s cubic-bezier(.2, .7, .3, 1),
box-shadow .38s ease,
border-color .38s ease;
}
.char-card:nth-child(2) { animation-delay: -5.5s; }
.char-card img {
display: block;
width: 100%;
aspect-ratio: 599 / 1212; /* exaktes Seitenverhältnis der Artworks — kein Zuschnitt */
object-fit: cover;
transition: transform .55s cubic-bezier(.2, .7, .3, 1);
}
/* eigener Glow pro Welt */
.char-card.dogfather { border-color: rgba(96, 175, 255, .30); }
.char-card.dogfather:hover,
.char-card.dogfather:focus-visible {
border-color: rgba(96, 175, 255, .75);
box-shadow: 0 34px 70px rgba(0, 0, 0, .62), 0 0 70px rgba(96, 175, 255, .30);
}
.char-card.hasidog { border-color: rgba(199, 204, 209, .28); }
.char-card.hasidog:hover,
.char-card.hasidog:focus-visible {
border-color: rgba(199, 204, 209, .70);
box-shadow: 0 34px 70px rgba(0, 0, 0, .62), 0 0 70px rgba(143, 217, 234, .26);
}
.char-card:hover, .char-card:focus-visible { transform: translateY(-10px); }
.char-card:hover img, .char-card:focus-visible img { transform: scale(1.045); }
.char-meta {
position: absolute;
left: 0; right: 0; bottom: 0;
padding: 3.6rem .9rem 1.1rem;
text-align: center;
background: linear-gradient(to top,
rgba(4, 8, 12, .94) 14%, rgba(4, 8, 12, .58) 52%, transparent 100%);
}
.char-meta > span { display: block; }
.char-name {
font-family: var(--font-head);
font-weight: 800;
font-size: 1.02rem;
letter-spacing: .13em;
text-transform: uppercase;
color: #fff;
text-shadow: 0 2px 14px rgba(0, 0, 0, .85);
}
.char-sub {
font-size: .76rem;
color: rgba(255, 255, 255, .70);
margin-top: .18rem;
}
.char-go {
font-size: .74rem;
font-weight: 700;
letter-spacing: .05em;
color: var(--accent);
margin-top: .5rem;
opacity: .85;
transition: opacity .3s ease, transform .3s ease;
}
.char-card:hover .char-go,
.char-card:focus-visible .char-go { opacity: 1; transform: translateX(3px); }
@keyframes char-float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-9px); }
}
@media (prefers-reduced-motion: reduce) {
.char-card, .char-card img { animation: none; transition: none; }
}
/* ==========================================================================
SEITEN-HINTERGRÜNDE
Jede Seite kann ihr eigenes Artwork hinter den Kopfbereich legen. Das Bild
wird nicht fest im CSS hinterlegt, sondern pro Seite über zwei Variablen
gesetzt — so bleibt eine einzige Regel für alle Seiten:
<section class="hero page-bg"
style="--page-bg:url('assets/img/bg-x.jpg');
--page-bg-mobile:url('assets/img/bg-x-mobile.jpg');">
Aufbau: Bild (::before) → Abdunkelung (::after) → Inhalt.
Die Abdunkelung sorgt dafür, dass Überschriften immer lesbar bleiben und
der Rand sauber in die Seitenfarbe ausläuft.
========================================================================== */
/* ---- 1) Das Motiv trägt die GANZE Seite ----
Liegt fest hinter allem (position:fixed), leicht weichgezeichnet und
abgedunkelt. Dadurch ist das Bild beim Scrollen überall präsent, ohne
dass Texte und Karten darunter leiden. */
body.mit-hintergrund { background-color: transparent; }
body.mit-hintergrund::before {
content: "";
position: fixed;
inset: -2%;
z-index: -3;
background-image: var(--page-bg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
/* Weichzeichnen + leicht abdunkeln: ruhiger Untergrund, der die Augen
beim Lesen nicht anstrengt. */
filter: blur(4px) brightness(.62) saturate(.95);
}
/* Abdunkelung für den Seitenkörper — bewusst kräftig, damit langes Lesen
angenehm bleibt. Das Motiv bleibt als ruhige Stimmung im Hintergrund. */
body.mit-hintergrund::after {
content: "";
position: fixed;
inset: 0;
z-index: -2;
pointer-events: none;
background: linear-gradient(to bottom,
color-mix(in srgb, var(--bg) 80%, transparent) 0%,
color-mix(in srgb, var(--bg) 92%, transparent) 45%,
color-mix(in srgb, var(--bg) 95%, transparent) 100%);
}
/* ---- 2) Kopfbereich: ECHTES <img> statt CSS-Hintergrund ----
Nach mehreren Anläufen mit background-size (cover schnitt Ränder ab,
contain ließ Lücken, "100% auto" schnitt oben/unten ab sobald die Box
nicht exakt im Bildseitenverhältnis war) die einzige Lösung, die IMMER
beides garantiert — volle Breite UND das komplette Bild sichtbar
ein normales <img width:100% height:auto>, das seine Höhe selbst
bestimmt statt in eine vorgegebene Box gepresst zu werden. Es kann
dadurch gar nicht mehr beschnitten werden, ganz gleich welches
Seitenverhältnis das Foto hat.
<section class="hero page-bg">
<div class="hero-banner"><img src="assets/img/bg-x.jpg" alt="" /></div>
<div class="container">...</div>
</section>
Das Bild sitzt dadurch als eigener Banner OBERHALB der Überschrift
(statt als Hintergrund dahinter) — dafür garantiert zuverlässig, auf
jeder Seite, mit jedem Bild, ohne weitere Handarbeit. */
.hero-banner {
position: relative;
line-height: 0; /* verhindert einen Mini-Spalt unter dem Bild */
}
.hero-banner img {
display: block;
width: 100%;
height: auto;
}
/* Weicher Übergang unten, damit das Foto nicht hart in die Seite schneidet */
.hero-banner::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(to bottom,
rgba(0, 0, 0, .05) 0%,
transparent 45%,
color-mix(in srgb, var(--bg) 55%, transparent) 82%,
var(--bg) 100%);
pointer-events: none;
}
.page-bg.hero {
padding: clamp(2.4rem, 5vw, 3.4rem) 0 clamp(3rem, 7vw, 4.5rem);
}
.page-bg.hero > .container { margin-inline: auto; }
@media (max-width: 760px) {
/* Der weichgezeichnete Grund-Layer darf ruhig den Handy-Zuschnitt nehmen —
der ist nur Stimmung im Hintergrund, wird nicht "als Bild" wahrgenommen.
Der scharfe .page-bg-Layer bleibt beim VOLLEN Original, damit auf dem
Handy garantiert nichts vom eigentlichen Motiv fehlt. */
body.mit-hintergrund::before { background-image: var(--page-bg-mobile, var(--page-bg)); }
}
/* ==========================================================================
HIERARCHIE-PYRAMIDE — Team-Mitglieder stufenweise unter VanVan
Eine zentrale Linie läuft von oben (unter VanVans großer Karte) nach
unten durch alle Ebenen. Jede Ebene ist eine eigene, zentrierte Reihe;
die Kartengröße nimmt von Stufe zu Stufe leicht ab, wodurch die
Hierarchie auch optisch spürbar wird — oben groß und wichtig, nach
unten hin kompakter. An jeder Ebene sitzt ein leuchtender Knoten auf
der Linie, wie bei einem Organigramm.
========================================================================== */
.pyramid {
position: relative;
padding-top: 2.6rem;
display: flex;
flex-direction: column;
gap: clamp(2.4rem, 5vw, 3.6rem);
}
/* Die zentrale, senkrechte Verbindungslinie */
.pyramid::before {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 50%;
width: 2px;
transform: translateX(-50%);
background: linear-gradient(to bottom,
color-mix(in srgb, var(--accent) 70%, transparent),
color-mix(in srgb, var(--accent-2) 55%, transparent) 55%,
transparent 100%);
box-shadow: 0 0 12px color-mix(in srgb, var(--accent) 45%, transparent);
}
.pyramid-tier {
position: relative;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: flex-start;
gap: clamp(1rem, 3vw, 2rem);
}
/* Leuchtender Knoten pro Ebene, sitzt genau auf der Linie */
.pyramid-tier::before {
content: "";
position: absolute;
top: -1.5rem;
left: 50%;
width: 12px;
height: 12px;
border-radius: 50%;
transform: translate(-50%, -50%);
background: var(--accent);
box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 18%, transparent),
0 0 18px color-mix(in srgb, var(--accent) 65%, transparent);
z-index: 2;
}
.pyramid-tier .profile-card {
width: 100%;
transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.pyramid-tier .profile-card:hover { transform: translateY(-6px) scale(1.02); }
/* Fünf Größenstufen — je tiefer, desto kompakter */
.pyramid-tier[data-tier="1"] .profile-card { max-width: 260px; }
.pyramid-tier[data-tier="2"] .profile-card { max-width: 240px; }
.pyramid-tier[data-tier="3"] .profile-card { max-width: 222px; }
.pyramid-tier[data-tier="4"] .profile-card { max-width: 206px; }
.pyramid-tier[data-tier="5"] .profile-card { max-width: 192px; }
.pyramid-tier[data-tier="1"] .avatar { width: 108px; height: 108px; }
.pyramid-tier[data-tier="2"] .avatar { width: 98px; height: 98px; }
.pyramid-tier[data-tier="3"] .avatar { width: 90px; height: 90px; }
.pyramid-tier[data-tier="4"] .avatar { width: 82px; height: 82px; }
.pyramid-tier[data-tier="5"] .avatar { width: 76px; height: 76px; }
.pyramid-tier[data-tier="3"] .profile-card h3,
.pyramid-tier[data-tier="4"] .profile-card h3,
.pyramid-tier[data-tier="5"] .profile-card h3 { font-size: 1.02rem; }
.pyramid-tier[data-tier="4"] .role,
.pyramid-tier[data-tier="5"] .role { font-size: .78rem; }
@media (max-width: 700px) {
.pyramid-tier { gap: 1rem; }
.pyramid-tier .profile-card { max-width: min(78vw, 240px) !important; }
}
/* ==========================================================================
BEWERBEN-SPLIT — zwei Welten, zwei Spalten, kleine Trennwand in der Mitte
Passend zum Hintergrundbild: Community/Team Dogi (blau) links,
Agentur/Spicy Media (rot) rechts.
========================================================================== */
.bewerben-split {
display: flex;
align-items: stretch;
gap: clamp(1.4rem, 4vw, 3.2rem);
max-width: 980px;
margin: 0 auto;
}
.bewerben-side {
flex: 1 1 0;
min-width: 0;
display: flex;
flex-direction: column;
gap: 1.2rem;
}
.bewerben-side-label {
text-align: center;
font-family: var(--font-head);
font-weight: 800;
font-size: .74rem;
letter-spacing: .1em;
text-transform: uppercase;
margin-bottom: .2rem;
}
.bewerben-side-blau .bewerben-side-label { color: #8fd9ea; text-shadow: 0 0 14px rgba(143, 217, 234, .5); }
.bewerben-side-rot .bewerben-side-label { color: #d94a5c; text-shadow: 0 0 14px rgba(217, 74, 92, .5); }
.bewerben-side .card { height: auto; }
/* Die kleine Trennungswand: ein leuchtender Steg von blau nach rot,
mit einem Blitz-Knoten in der Mitte — passend zur Lichtgrenze im Bild. */
.bewerben-wall {
flex: none;
width: 3px;
align-self: stretch;
position: relative;
border-radius: 3px;
background: linear-gradient(to bottom,
transparent 0%,
#8fd9ea 18%,
#b285c9 50%,
#d94a5c 82%,
transparent 100%);
box-shadow: 0 0 16px rgba(143, 217, 234, .35), 0 0 16px rgba(217, 74, 92, .3);
}
.bewerben-wall span {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 42px;
height: 42px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.1rem;
background: linear-gradient(135deg, #8fd9ea 0%, #8fd9ea 48%, #d94a5c 52%, #d94a5c 100%);
border: 2px solid rgba(255, 255, 255, .18);
box-shadow: 0 0 0 6px rgba(10, 12, 16, .55),
0 0 20px rgba(143, 217, 234, .4),
0 0 20px rgba(217, 74, 92, .35);
}
@media (max-width: 760px) {
.bewerben-split { flex-direction: column; gap: 2.2rem; width: 100%; }
.bewerben-side { width: 100%; }
.bewerben-side .card { width: 100%; box-sizing: border-box; }
.bewerben-wall {
width: 100%;
height: 3px;
background: linear-gradient(to right, transparent 0%, #8fd9ea 18%, #b285c9 50%, #d94a5c 82%, transparent 100%);
}
}
/* ==========================================================================
TEAM-DOGI-HINTERGRUND — die große Team-Collage hinter dem Team-Abschnitt
========================================================================== */
.team-bg {
position: relative;
isolation: isolate;
overflow: hidden;
}
.team-bg::before {
content: "";
position: absolute;
inset: 0;
z-index: -2;
background-image: url("../img/team-dogi-bg.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
/* Abdunkelung, damit Text und Avatare klar davor stehen und die Ränder
sauber in die Seite auslaufen */
.team-bg::after {
content: "";
position: absolute;
inset: 0;
z-index: -1;
background:
radial-gradient(ellipse 110% 80% at 50% 50%,
rgba(0, 0, 0, .58) 0%, rgba(0, 0, 0, .80) 65%, rgba(0, 0, 0, .93) 100%),
linear-gradient(to bottom, var(--bg) 0%, transparent 14%, transparent 86%, var(--bg) 100%);
}
@media (max-width: 760px) {
.team-bg::before {
background-image: url("../img/team-dogi-bg-mobile.jpg");
}
}
/* Kurzes, dezentes Abblenden während ein Seitenwechsel geholt wird */
body.seite-laedt main { opacity: .55; transition: opacity .15s ease; }
/* ==========================================================================
MUSIK-KNOPF — kleiner schwebender Knopf unten rechts, auf jeder Seite
Klick öffnet ein Feld mit den Spotify-Playern von Hasidog und Van-Van.
Bewusst schwebend (position:fixed) statt als eigener Seitenabschnitt:
so ist die Musik überall mit einem Klick erreichbar, nimmt aber nirgends
Platz weg. Die Player werden erst beim ersten Öffnen geladen.
========================================================================== */
.music-widget {
position: fixed;
right: 22px;
bottom: 22px;
z-index: 120;
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 12px;
}
/* Musik gehört zu Hasidog UND Van-Van, also zu beiden Welten — deshalb
auch hier fest halb babyblau, halb rot, statt der Theme-Farbe. */
.music-toggle {
width: 54px;
height: 54px;
flex: none;
border-radius: 999px;
font-size: 1.45rem;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: #0a0c10;
border: 1px solid rgba(255, 255, 255, .18);
background: linear-gradient(90deg, #8fd9ea 0%, #8fd9ea 49%, #d94a5c 51%, #d94a5c 100%);
box-shadow: 0 12px 30px rgba(0, 0, 0, .45),
0 0 18px rgba(143, 217, 234, .35),
0 0 18px rgba(217, 74, 92, .3);
transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}
.music-toggle:hover,
.music-toggle:focus-visible {
transform: translateY(-2px) scale(1.05);
filter: brightness(1.12);
box-shadow: 0 16px 38px rgba(0, 0, 0, .5),
0 0 26px rgba(143, 217, 234, .5),
0 0 26px rgba(217, 74, 92, .45);
}
.music-widget.open .music-toggle { transform: rotate(12deg); }
.music-panel {
width: min(330px, calc(100vw - 44px));
max-height: min(74vh, 640px);
overflow-y: auto;
padding: 1rem 1.1rem 1.2rem;
border-radius: var(--radius);
border: 1px solid var(--border);
background: var(--card-bg);
box-shadow: 0 24px 60px rgba(0, 0, 0, .6);
animation: music-panel-in .22s ease-out;
}
.music-panel[hidden] { display: none; }
@keyframes music-panel-in {
from { opacity: 0; transform: translateY(10px) scale(.97); }
to { opacity: 1; transform: none; }
}
.music-panel-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: .6rem;
}
.music-panel-head strong { font-size: .95rem; }
.music-close {
background: none;
border: 0;
color: var(--text-muted);
font-size: 1rem;
line-height: 1;
padding: .2rem .3rem;
cursor: pointer;
border-radius: 6px;
}
.music-close:hover { color: var(--accent); }
.music-artist-label {
margin: .9rem 0 .4rem;
font-size: .7rem;
font-weight: 800;
letter-spacing: .06em;
text-transform: uppercase;
color: var(--text-muted);
}
/* Spotify bringt seinen eigenen abgerundeten Rahmen mit — hier nur Größe setzen. */
.music-panel iframe {
display: block;
width: 100%;
border: 0;
border-radius: 12px;
}
@media (max-width: 620px) {
.music-widget { right: 14px; bottom: 14px; }
.music-toggle { width: 48px; height: 48px; font-size: 1.25rem; }
}
@media print { .music-widget { display: none !important; } }
@media (prefers-reduced-motion: reduce) {
.music-panel { animation: none; }
.music-toggle { transition: none; }
}
/* ---------- Live-Status-Punkt ---------- */
.live-dot {
display: inline-block;
width: 10px;
height: 10px;
border-radius: 50%;
background: #e05260; /* rot = offline (Standard) */
box-shadow: 0 0 8px rgba(224, 82, 96, .55);
margin-right: .45rem;
vertical-align: middle;
transition: background .3s ease, box-shadow .3s ease;
}
.live-dot.is-live {
background: #22c55e; /* grün = live */
animation: live-pulse 1.6s infinite;
}
/* Solange der Status noch geladen wird: neutral grau, damit nie kurz
fälschlich "offline" aufblitzt. */
.live-dot.is-unknown {
background: #6b7280;
box-shadow: none;
}
@keyframes live-pulse {
0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .55); }
70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@media (prefers-reduced-motion: reduce) {
.live-dot.is-live { animation: none; }
}
/* ---------- Badges / Hierarchy ---------- */
.badge { display: inline-block; font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; padding: .2rem .6rem; border-radius: 999px; background: var(--bg-alt); border: 1px solid var(--border); color: var(--text-muted); }
.badge.rank-1 { border-color: var(--accent); color: var(--accent); }
/* ---------- QR ---------- */
.qr-card { text-align: center; }
.qr-card .img-placeholder { width: 160px; height: 160px; margin: 0 auto 1rem; aspect-ratio: auto; }
/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.muted { color: var(--text-muted); }
.small { font-size: .85rem; }
.todo-note {
border: 1px dashed var(--accent-2);
background: rgba(139,92,246,.08);
padding: 1rem 1.2rem;
border-radius: 10px;
font-size: .85rem;
color: var(--text-muted);
margin: 1.5rem 0;
}
.todo-note strong { color: var(--accent-2); }