/* Custom styles for Focuzcutz43 LLC */

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

/* Custom selection color */
::selection {
    background-color: #0D9488;
    color: white;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* Navbar scroll state */
.navbar-scrolled {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Hero image gradient overlay */
.hero-image-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.15) 0%, transparent 50%);
}

/* Service card hover effect */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

/* Gallery image hover */
.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .service-card,
    .gallery-item img,
    button,
    a {
        transition: none;
    }
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid #0D9488;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    nav, #back-to-top, .gallery-item {
        display: none;
    }
    body {
        color: #000;
        background: #fff;
    }
}
