/* Custom styles for Ali Keller Salon */

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

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

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

::-webkit-scrollbar-thumb {
    background: #1A4D2E;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0f2e1b;
}

/* Selection color */
::selection {
    background-color: #1A4D2E;
    color: #F7F5E8;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 3px solid #1A4D2E;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Print styles */
@media print {
    nav,
    .mobile-menu,
    .hero-buttons,
    .contact-form,
    .map-section {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    h1, h2, h3 {
        color: black !important;
    }
}
