/*
Theme Name: Assist and Care
Theme URI: 
Author: Rishi Kumar
Author URI: https://codecrafterscreators.com/
Description: Custom WordPress theme for Assist and Care Australia.
Version: 1.0
License: 
License URI: 
Text Domain: assistandcare
Tags: 
*/

/* Global Reset and Utilities */
html {
    scroll-behavior: smooth;
}

body {
    /* Custom transition for the background color changes handled by JS if needed, 
       but GSAP handles it. We keep Tailwind's transition class just as a fallback. */
}

/* Hide scrollbar for a cleaner premium look (optional) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(128, 128, 128, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(128, 128, 128, 0.8);
}

/* Setup for reveal text animations */
.reveal-text {
    /* Translate it down by default, JS will animate it to 0 */
    transform: translateY(110%);
    opacity: 0;
}

/* Image reveal mask */
.image-reveal-inner {
    transform: scale(1.2);
}