/* Custom Overrides for Premium Feel */
body {
    background-color: #0f172a; /* Slate 900 */
    color: #f8fafc; /* Slate 50 */
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Gold Gradient Text Utility */
.text-gradient-gold {
    background: linear-gradient(90deg, #d4af37, #f59e0b, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #14b8a6;
}

/* Form Focus Styles */
input:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.2);
}
