/* Custom Styles for Hair Arena Barbershop */

/* Base Typography */
html {
    scroll-behavior: smooth;
}

body {
    /* Fallback if images don't load */
    background-color: #020617;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #14b8a6;
}

/* Selection Color */
::selection {
    background: #14b8a6;
    color: #020617;
}

/* Animations for Scroll Reveal */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 1; /* Default visible for accessibility */
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }

/* Active state for animations (toggled via JS) */
.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Delays for staggered animations */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Mobile Menu Transitions */
#mobile-menu {
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

/* Focus styles for accessibility */
button:focus, a:focus, input:focus, textarea:focus {
    outline: 2px solid #14b8a6;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .reveal-up, .reveal-left, .reveal-right {
        opacity: 1;
        transform: none;
    }
    nav, footer {
        display: none;
    }
}
