/* Custom styles for New Chinese Garden of Guyana */

/* Smooth scroll offset for fixed navbar */
html {
    scroll-padding-top: 80px;
}

/* Selection color */
::selection {
    background-color: #ffefb3;
    color: #582c33;
}

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

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

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

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #f5c518;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility for thin lines */
.line-thin {
    height: 1px;
    background: linear-gradient(to right, transparent, #d9aeb5, transparent);
}

/* Subtle text shadow for readability over images */
.text-shadow {
    text-shadow: 0 1px 3px rgba(46, 21, 25, 0.5);
}

/* Card hover lift effect */
.card-lift {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.card-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(46, 21, 25, 0.12);
}
