/* Custom Styles for Cassandra's Family Cuts */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Base Transitions */
a, button {
    transition: all 0.2s ease-in-out;
}

/* Scroll Reveal Animation Classes */
.reveal-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* These are handled by JS, but we ensure content is visible if JS fails 
   by not adding 'hidden' by default. The JS adds the 'hidden' state 
   only after a small delay or on scroll if we wanted to hide initially, 
   but per rules, content must be visible. 
   
   For this implementation, we'll use a simple fade-in on load for the hero,
   and scroll-triggered fade-up for the rest.
*/

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Mobile Menu Animation */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

#mobile-menu.open {
    max-height: 400px;
}

/* Custom Selection Color */
::selection {
    background-color: #C06C44;
    color: white;
}

/* Image Aspect Ratio Fixes */
img {
    max-width: 100%;
    height: auto;
}
