/* Custom styles for BEAUTY by Dana Kay Salon */

/* Smooth focus outlines for accessibility */
*:focus-visible {
    outline: 2px solid #d95a2a;
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background-color: #d95a2a;
    color: white;
}

/* Subtle gradient on hero text for depth */
#hero h1 {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Prevent layout shift on images */
img {
    content-visibility: auto;
}

/* Custom animation for the scroll indicator */
@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    #hero img,
    #gallery img {
        transition: none;
    }
    
    .reveal:hover {
        transform: none;
    }
}
