/* Additional Styles and Micro-Interactions for Juanto & Asoc. */

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax desktop effect */
.parallax-bg {
    transition: transform 0.1s linear;
}

/* Custom Selection */
::selection {
    background-color: rgba(97, 0, 0, 0.2);
    color: #5A0000;
}

/* Smooth Focus Rings */
a:focus-visible, button:focus-visible {
    outline: 2px solid #610000;
    outline-offset: 3px;
}
