/* Custom Styles for All State Auto Glass */

/* Base styles to ensure Tailwind and Google Fonts work well together */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #020617; /* Navy 900 */
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0f172a; /* Navy 800 */
}
::-webkit-scrollbar-thumb {
    background: #334155; /* Slate 700 */
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d97706; /* Gold 500 */
}

/* Gold gradient text utility if needed beyond Tailwind config */
.text-gold-gradient {
    background: linear-gradient(to right, #fbbf24, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtle glow for gold elements */
.glow-gold {
    box-shadow: 0 0 20px rgba(217, 119, 6, 0.3);
}

/* Form focus states */
input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 1px #d97706;
}

/* Animation classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
