/* Custom styles for Channell Security Systems */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f5f5f4;
}
::-webkit-scrollbar-thumb {
    background: #1B5E20;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #145217;
}

/* Selection color */
::selection {
    background: #1B5E20;
    color: white;
}

/* Smooth image loading */
img {
    image-rendering: -webkit-optimize-contrast;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .card-hover {
        transition: none;
    }
    .phone-pulse {
        animation: none;
    }
}
