/*
Theme Name: Josh Configurator Child
Template: woostify
Version: 0.1.0
Description: Universal child theme for model configurator pages.
*/

/* =========================================================
   PASTEL BODY GRADIENT
   Applies ONLY to model configurator pages
   ========================================================= */

body.page-template-page-model-configurator {
    background: linear-gradient(
        135deg,
        #f8cdda,   /* soft pink */
        #cdb4ff,   /* pastel lavender */
        #bde0fe,   /* baby blue */
        #caffbf    /* mint */
    );
    background-size: 400% 400%;
    animation: josh-body-gradient 35s ease infinite;
}

/* Smooth, slow ambient shift */
@keyframes josh-body-gradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Ensure Woostify wrappers stay transparent */
body.page-template-page-model-configurator .site,
body.page-template-page-model-configurator #page,
body.page-template-page-model-configurator .content-area,
body.page-template-page-model-configurator .container {
    background: transparent !important;
}
