/* assets/css/style.css */

/* Custom Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUp 1s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}

/* Utilities */
.text-shadow-sm {
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.pattern-dots {
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a; 
}
::-webkit-scrollbar-thumb {
    background: #c5a059; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #b08d4b; 
}

/* Form focus ring override for aesthetics */
input:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.2);
}
