/*
 * Bildplatzhalter – neutrale Grautöne bis echte Assets kommen
 * Kein Einfluss auf Layout oder Text-Sichtbarkeit
 */

/* Fehlende Bilder = neutral-dunkle Fläche, kein Farbausbruch */
.hero__background {
    background-color: #1a1a1a;
}

.world-card__image {
    background-color: #2a2a2a;
}

.split__image {
    background-color: #e8e4df;
    min-height: 400px;
}

/* Produktwelt-spezifische Stimmungen – SEHR subtil */
.hero--home    .hero__background { background: linear-gradient(160deg, #1e0f06 0%, #2d1506 100%); }
.hero--choco   .hero__background { background: linear-gradient(160deg, #1e0f06 0%, #3d1f0d 100%); }
.hero--aquamaris .hero__background { background: linear-gradient(160deg, #0a1628 0%, #1b3a5c 100%); }
.hero--caviar  .hero__background { background: linear-gradient(160deg, #050505 0%, #1c1c1c 100%); }

.world--choco    .world-card__image { background: linear-gradient(160deg, #1e0f06, #5c2d0e); }
.world--aquamaris .world-card__image { background: linear-gradient(160deg, #0a1628, #1b3a5c); }
.world--caviar   .world-card__image { background: linear-gradient(160deg, #050505, #2a2a2a); }

/* Split-Images: Stimmungsfarben nur wenn kein Bild geladen */
.section--choco .split__image    { background: linear-gradient(160deg, #1e0f06, #3d1f0d); }
.section--aquamaris .split__image { background: linear-gradient(160deg, #0a1628, #1b3a5c); }
.section--caviar .split__image   { background: linear-gradient(160deg, #050505, #1c1c1c); }
