/* Custom styles to augment Tailwind */

html {
    scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-track {
    background: #0F172A;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 5px;
}

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

/* Gold Glow Effects */
.shadow-gold {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Animation Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form Focus States */
input:focus, textarea:focus, select:focus {
    box-shadow: 0 0 0 1px #D4AF37;
}

/* Success Message */
#success-message {
    display: none;
    background-color: #064E3B; /* emerald-900 */
    border: 1px solid #10B981;
    color: #34D399;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
    border-radius: 4px;
}
