/* Custom Stylesheet for TecnoLlevant Valencia S.L. */

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.animate-slow-zoom {
    animation: slowZoom 20s infinite alternate ease-in-out;
}

/* Before and After Interactive Slider styling */
.before-after-slider {
    touch-action: none;
    user-select: none;
}

.slider-handle {
    transition: box-shadow 0.2s ease;
}

.slider-handle:hover {
    box-shadow: 0 0 25px rgba(195, 157, 113, 0.9);
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #141211;
}

::-webkit-scrollbar-thumb {
    background: #2e2621;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b2824e;
}

/* Glassmorphism helpers */
.glass-panel {
    background: rgba(20, 18, 17, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
