/* ---------------------------------------------------------
   Hintergrund-Varianten für Doorway-Page und andere Seiten
   – modern, subtil, professionell
   – per Klasse aktivierbar
--------------------------------------------------------- */


/* 1) Subtiler Verlauf */
.bg-gradient {
    background: linear-gradient(
        180deg,
        #FCEDBA 0%,
        #F8E7A8 100%
    );
}




/* 2) Subtiles Noise-Pattern (benötigt tiny PNG) */
.bg-noise {
    background-color: #FCEDBA;
    background-image: url('images/noise_200-40-10-monochrome.png');
    background-size: 200px 200px;
}




/* 3) Subtiler Lichtschein / Vignette */
.bg-light {
    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,0.99) 0%,   /* 0% = ganz in der Mitte des Kreises */
            rgba(255,255,255,0) 70%     /* 70% = 70% des Radius vom Zentrum nach außen */
        ),
        #ffeeaa;
}




/* 4) Subtile diagonale Struktur */
.bg-pattern {
    background:
        repeating-linear-gradient(
            135deg,
            rgba(255,255,255,0.15) 0px,
            rgba(255,255,255,0.15) 2px,
            rgba(255,255,255,0) 2px,
            rgba(255,255,255,0) 6px
        ),
        #FCEDBA;
}
