/*
 * assets/css/main.css
 * Onavani — global stylesheet
 * Core styles are embedded in includes/header.php
 * Use this file for any overrides or additions
 */

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #bbb; }

/* Smooth anchor scrolling */
html { scroll-behavior: smooth; }

/* Focus ring for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #D85A30;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Lazy load fade-in for images */
img {
    transition: opacity 0.2s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}