/* Custom styles for The Hive Barber Co. */

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

/* Base font settings */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scroll reveal animations - progressive enhancement via prefers-reduced-motion */
.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (prefers-reduced-motion: no-preference) {
    .scroll-reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    
    .scroll-reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar scroll state */
.navbar-scrolled {
    background: rgba(254, 253, 248, 0.92) !important;
    backdrop-filter: blur(16px) !important;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

/* Custom selection color */
::selection {
    background-color: #bbf7d0;
    color: #166534;
}

/* Form focus styles */
input:focus,
textarea:focus {
    outline: none;
}

/* Image loading placeholder */
img {
    background-color: #f0fdf4;
}

/* Subtle hexagon pattern for hero */
.hero-hex-pattern {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M3 5.56L2.47 4.5L3 3.44 7.5 5.5 3 7.56 2.47 6.5zM12 5.56L11.47 4.5 12 3.44 16.5 5.5 12 7.56 11.47 6.5zM3 17.56L2.47 16.5 3 15.44 7.5 17.5 3 19.56 2.47 18.5zM12 17.56L11.47 16.5 12 15.44 16.5 17.5 12 19.56 11.47 18.5zM0 11L-1.47 10 0 9l4.5 2L0 13 1.47 12zM8.93 10L7.46 9 8.93 8l4.5 2-4.5 2-1.47-1zM17.86 10l-1.46-1L17.86 8l4.5 2-4.5 2-1.47-1zM26.8 10l-1.47-1 1.47-1 4.5 2-4.5 2-1.47-1zM0 23L-1.47 22 0 21l4.5 2L0 25 1.47 24zM8.93 23L7.46 22 8.93 21l4.5 2-4.5 2-1.47-1zM17.86 23l-1.46-1 1.46-1 4.5 2-4.5 2-1.47-1zM26.8 23l-1.47-1 1.47-1 4.5 2-4.5 2-1.47-1zM3 29.56L2.47 28.5 3 27.44 7.5 29.5 3 31.56 2.47 30.5zM12 29.56L11.47 28.5 12 27.44 16.5 29.5 12 31.56 11.47 30.5zM0 35L-1.47 34 0 33l4.5 2L0 37 1.47 36zM8.93 35L7.46 34 8.93 33l4.5 2-4.5 2-1.47-1zM17.86 35l-1.46-1 1.46-1 4.5 2-4.5 2-1.47-1zM26.8 35l-1.47-1 1.47-1 4.5 2-4.5 2-1.47-1zM3 41.56L2.47 40.5 3 39.44 7.5 41.5 3 43.56 2.47 42.5zM12 41.56L11.47 40.5 12 39.44 16.5 41.5 12 43.56 11.47 42.5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Mobile menu animation */
#mobile-menu {
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button ripple effect */
button, a {
    position: relative;
    overflow: visible;
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid #16a34a;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fefdf8;
}
::-webkit-scrollbar-thumb {
    background: #bbf7d0;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #86efac;
}
