/* Custom styles for Sportsmans Paradise */

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

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

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

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

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

/* Selection color */
::selection {
    background: #c5dfc9;
    color: #1d3524;
}

/* Reveal animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar scroll effect */
.navbar-scrolled {
    background: rgba(250, 250, 247, 0.95);
    backdrop-blur-sm;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-scrolled .text-white,
.navbar-scrolled .mix-blend-difference {
    color: #1d3524 !important;
    mix-blend-mode: normal !important;
}

.navbar-scrolled .mobile-link {
    color: #1d3524 !important;
}

/* Mobile menu animation */
.mobile-menu-open {
    opacity: 1 !important;
    pointer-events: auto !important;
}

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

/* Image hover effects */
img {
    transition: transform 0.7s ease;
}

/* Thin line accents */
.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, #97c39e, transparent);
}
