/* Custom style adjustments over Tailwind */

/* Fix white icon on datetime inputs for webkit */
.css-date-fix::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Glassmorphism navbar styling */
.nav-scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* Smooth zoom animation for hero image */
.image-scale-anim {
    animation: slowZoom 20s ease-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #C5A365;
}

html {
    scroll-behavior: smooth;
}

/* Service Card hover effect enhancer */
.service-card {
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 163, 101, 0.05), transparent);
    transition: 0.5s;
    z-index: 1;
    transform: skewX(-20deg);
}
.service-card:hover::after {
    left: 150%;
}
.service-card > * {
    position: relative;
    z-index: 2;
}
