/* Custom Styles for New Life Carpet Cleaning */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0A1F16;
    color: #F5F5F0;
}

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

::-webkit-scrollbar-track {
    background: #05110C;
}

::-webkit-scrollbar-thumb {
    background: #1A3C2A;
    border: 1px solid #D4AF37;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

/* Navigation Scroll Effect */
.nav-scrolled {
    background-color: rgba(5, 17, 12, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* Gold Gradient Text Utility (Tailwind handles most, but this is a fallback for inline) */
.text-gold-gradient {
    background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Input Autofill Styling for Dark Theme */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: #F5F5F0;
    -webkit-box-shadow: 0 0 0px 1000px #05110C inset;
    transition: background-color 5000s ease-in-out 0s;
}
