/* Custom Styles for Mill Town Salon */

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F5F0E8;
}
::-webkit-scrollbar-thumb {
    background: #C06C54;
}
::-webkit-scrollbar-thumb:hover {
    background: #A3523D;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

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

/* Form Focus States */
input:focus, select:focus, textarea:focus {
    border-color: #C06C54;
}

/* Image Aspect Ratio Fixes */
img {
    vertical-align: middle;
}

/* Utility for hiding elements */
.hidden {
    display: none;
}
