/*
Theme Name: Roseta Child
Theme URI: https://www.cryoutcreations.eu/wordpress-themes/roseta
Description: Child theme pro úpravy patičky (copyright + logo)
Author: Bc. Filip Pavlíček
Template: roseta
Version: 1.0
*/

/* =====================================================
   ZÁKLAD – nic nerozbíjí, jen doplňuje
   ===================================================== */

/* jistota, že se nic nerozpadne */
body {
    margin: 0;
    padding: 0;
}

/* =====================================================
   PATIČKA – vlastní obsah
   ===================================================== */

.custom-footer-content {
    text-align: center;
    padding: 20px 0;
}

/* text copyrightu */
.custom-footer-text {
    margin-bottom: 14px;
    font-style: italic;
    font-size: 14px;
    opacity: 0.85;
}

/* logo */
.custom-footer-logo img {
    max-width: 20px;
    height: auto;
    opacity: 0.85;
    transform: scale(1);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* hover efekt loga */
.custom-footer-logo a:hover img {
    opacity: 1;
    transform: scale(1.04);
}

/* =====================================================
   RESPONSIVE – mobil
   ===================================================== */

@media (max-width: 768px) {
    .custom-footer-logo img {
        max-width: 140px;
    }

    .custom-footer-text {
        font-size: 13px;
    }
}


/* LP BOXES – hover efekt přes rodiče (Roseta overlay fix) */
.lp-box-image {
    overflow: hidden;
}

.lp-box-image .zoom {
    transition: transform .3s ease, opacity .3s ease;
    opacity: 0.5;
    transform: scale(1);
}

/* hover se chytá na rodiče */
.lp-box-image:hover .zoom {
    transform: scale(1.1);
    opacity: 1;
}

