/**
 * Divi Extra Modules - Effects CSS
 * Styles για τα custom effects
 */

/* ===================================
   Reveal on Scroll Effect
   =================================== */

.reveal-on-scroll {
    overflow: visible;
}

.reveal-on-scroll .reveal-line {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    vertical-align: top;
}

.reveal-on-scroll .reveal-line.active {
    animation: slideUpReveal 1.2s ease forwards;
}

@keyframes slideUpReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Parallax Image Effect
   =================================== */

.parallax-image-mask {
    overflow: hidden;
    position: relative;
}

.parallax-image-mask img {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* Desktop only */
@media (min-width: 981px) {
    .parallax-image-mask img {
        transform: scale(1.15);
    }
}

/* Mobile - reset */
@media (max-width: 980px) {
    .parallax-image-mask img {
        transform: none !important;
    }
}

/* ===================================
   Divi Extra Text Module
   =================================== */

.divi-extra-text-module {
    position: relative;
}

.divi-extra-text-module p {
    margin: 0 0 1em;
}

.divi-extra-text-module p:last-child {
    margin-bottom: 0;
}

/* Βελτιωμένη απόδοση */
.reveal-on-scroll .reveal-line,
.parallax-image-mask img {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}
