/* assets/css/style.css */

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dark ::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #C05640;
    border-radius: 5px;
    border: 2px solid #f1f1f1;
}

.dark ::-webkit-scrollbar-thumb {
    border: 2px solid #1f2937;
}

::-webkit-scrollbar-thumb:hover {
    background: #a04532;
}

/* Glassmorphism Helper */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dark .glass {
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Overlay Gradient */
.hero-overlay {
    background: linear-gradient(to top, rgba(17, 24, 39, 0.95) 0%, rgba(17, 24, 39, 0.5) 50%, rgba(17, 24, 39, 0.3) 100%);
}

.text-shadow-sm {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Base Styles */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Image Hover Zoom Effect Helper */
.hover-zoom-img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.group:hover .hover-zoom-img {
    transform: scale(1.1);
}