/* Custom Styles for PC Bait & Tackle */

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

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

/* Custom selection color handled in HTML via Tailwind, but adding fallback */
::selection {
    background-color: #c15c42;
    color: white;
}

/* Animation utilities */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Image object-fit fallbacks */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile menu transitions */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #c15c42;
}
