/* Custom Styles for Ella Grace Salon */

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #722F37;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #521F26;
}

/* Navbar Transition */
#navbar.scrolled {
    background-color: rgba(255, 251, 248, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Mobile Menu Animation */
#mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

/* Form Input Focus Effects */
input:focus, select:focus, textarea:focus {
    outline: none;
}

/* Subtle Fade In Animation for Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Image Hover Zoom */
img {
    transition: transform 0.5s ease;
}

/* Button Hover Lift */
button, a {
    transition: all 0.3s ease;
}

/* Custom Selection Color */
::selection {
    background-color: #FCE7E9;
    color: #722F37;
}
