/* Additional custom styles for Bone-anza Barn */

/* Smooth scroll offset for fixed navbar */
section[id] {
    scroll-margin-top: 80px;
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6B2D5B, #E8A838);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #4A1E3F, #C88820);
}

/* Selection color */
::selection {
    background: rgba(107, 45, 91, 0.2);
    color: #4A1E3F;
}

/* Focus visible styles */
:focus-visible {
    outline: 3px solid #E8A838;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero-section,
    .geo-deco,
    .animate-float,
    .animate-float-delayed {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal {
        opacity: 1;
        transform: none;
    }
}
