2026-05-03 15:38:07 +02:00
|
|
|
/* ── Image pages ── */
|
|
|
|
|
.page--image {
|
|
|
|
|
background: var(--color-primary, #1a1a2e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scene-image {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-03 18:39:42 +02:00
|
|
|
/* Placeholder shown when image not yet available */
|
2026-05-03 15:38:07 +02:00
|
|
|
.placeholder-image {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.placeholder-label {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.5rem;
|
2026-05-03 18:39:42 +02:00
|
|
|
color: rgba(255, 255, 255, 0.75);
|
2026-05-03 15:38:07 +02:00
|
|
|
text-align: center;
|
2026-05-03 18:39:42 +02:00
|
|
|
padding: 1.5rem 2.5rem;
|
|
|
|
|
border: 1px dashed rgba(255, 255, 255, 0.25);
|
|
|
|
|
border-radius: 4px;
|
2026-05-03 15:38:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.placeholder-story {
|
2026-05-03 18:39:42 +02:00
|
|
|
font-size: 0.75rem;
|
2026-05-03 15:38:07 +02:00
|
|
|
text-transform: uppercase;
|
2026-05-03 18:39:42 +02:00
|
|
|
letter-spacing: 0.15em;
|
|
|
|
|
opacity: 0.6;
|
2026-05-03 15:38:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.placeholder-scene {
|
2026-05-03 18:39:42 +02:00
|
|
|
font-size: 1.15rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
line-height: 1.4;
|
2026-05-03 15:38:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── Text pages ── */
|
|
|
|
|
.page--text {
|
2026-05-03 18:39:42 +02:00
|
|
|
background: var(--cream, #faf8f2);
|
|
|
|
|
/* Subtle paper texture via SVG noise */
|
|
|
|
|
background-image:
|
|
|
|
|
url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
|
|
|
|
|
background-repeat: repeat;
|
2026-05-03 15:38:07 +02:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-page-inner {
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-05-03 18:39:42 +02:00
|
|
|
gap: 0;
|
2026-05-03 15:38:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scene-ornament {
|
|
|
|
|
margin-top: auto;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-03 18:39:42 +02:00
|
|
|
/* ── Imprint page ── */
|
|
|
|
|
.page--imprint {
|
|
|
|
|
background: var(--cream, #faf8f2);
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: flex-end;
|
2026-05-03 15:38:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── Table of contents ── */
|
|
|
|
|
.page--toc {
|
2026-05-03 18:39:42 +02:00
|
|
|
background: var(--cream, #faf8f2);
|
2026-05-03 15:38:07 +02:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toc-list {
|
|
|
|
|
list-style: none;
|
|
|
|
|
counter-reset: toc;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-05-03 18:39:42 +02:00
|
|
|
gap: 0.7rem;
|
2026-05-03 15:38:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toc-list li {
|
|
|
|
|
counter-increment: toc;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: baseline;
|
2026-05-03 18:39:42 +02:00
|
|
|
gap: 0.8rem;
|
2026-05-03 15:38:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toc-list li::before {
|
|
|
|
|
content: counter(toc, decimal-leading-zero);
|
2026-05-03 18:39:42 +02:00
|
|
|
min-width: 2.2rem;
|
|
|
|
|
flex-shrink: 0;
|
2026-05-03 15:38:07 +02:00
|
|
|
}
|
|
|
|
|
|
2026-05-03 19:14:43 +02:00
|
|
|
/* ── Section title page ── */
|
|
|
|
|
.page--section {
|
|
|
|
|
background: var(--cream, #faf8f2);
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.section-title-inner {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.8rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.section-rule {
|
|
|
|
|
display: block;
|
|
|
|
|
width: 3rem;
|
|
|
|
|
height: 1px;
|
|
|
|
|
background: rgba(30, 27, 24, 0.25);
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-03 15:38:07 +02:00
|
|
|
/* ── Finale page ── */
|
|
|
|
|
.page--finale {
|
2026-05-03 18:39:42 +02:00
|
|
|
background: var(--midnight, #0d0d2b);
|
2026-05-03 15:38:07 +02:00
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.finale-image {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.finale-overlay {
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
padding-bottom: 1in;
|
|
|
|
|
text-align: center;
|
2026-05-03 18:39:42 +02:00
|
|
|
background: linear-gradient(to top, rgba(13, 13, 43, 0.75) 0%, transparent 55%);
|
2026-05-03 15:38:07 +02:00
|
|
|
}
|