/*
Theme Name:   Hello Elementor Child Z
Description:  Child theme para portfolio + quadrinhos
Template:     hello-elementor
Version:      1.0.0
*/

/* BRANCO global - todas páginas */
html, body, .custom-background {
    background-color: #ffffff !important;
    background-image: none !important;
}

/* PORTFOLIO - FUNDO PRETO + IMAGEM ESTÁTICA */
body.category-portfolio,
body.portfolio-style,
body.home,
body.front-page {
    background-color: black !important;
    background-image: url('https://renatozechetto.com/wp-content/uploads/2025/10/paraboreakulus01ORIG.jpg') !important;
    background-size: cover !important;
    background-position: left center !important;
    background-attachment: fixed !important;  /* ← ESTE FAZ FICAR ESTÁTICO */
    background-repeat: no-repeat !important;
}

/* TABLET: align LEFT */
@media (max-width: 1024px) {
    body.category-portfolio,
    body.portfolio-style,
    body.home,
    body.front-page {
        background-position: left center !important;
        background-attachment: fixed !important; /* mobile não suporta fixed */
    }
}

/* MOBILE: align LEFT */
@media (max-width: 768px) {
    body.category-portfolio,
    body.portfolio-style,
    body.home,
    body.front-page {
        background-position: left center !important;
        background-size: cover !important;
        background-attachment: fixed !important;
    }
}
