/* Custom CSS for Dunamys Home Services */
/* Built on top of Tailwind CSS */

/* Smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* Custom Utilities for things Tailwind makes verbose */
.text-balance {
    text-wrap: balance;
}

/* Brand Gradient */
.bg-brand-gradient {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.text-gradient-gold {
    background: linear-gradient(to right, #eea326, #f7d41f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Micro-animations */
.hover-lift {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Navigation Link Underline Effect */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #eea326;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
