/* assets/css/style.css */

/* Custom Animations */
@keyframes goldShimmer {
    0% { color: #AF934C; text-shadow: 0 0 5px rgba(175, 147, 76, 0.2); }
    50% { color: #d4b86a; text-shadow: 0 0 15px rgba(175, 147, 76, 0.6); }
    100% { color: #AF934C; text-shadow: 0 0 5px rgba(175, 147, 76, 0.2); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-shimmer {
    animation: goldShimmer 3s infinite ease-in-out;
}

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

/* Base Overrides */
body {
    background-color: #F9F9F9; /* Cream/Off-white */
}

/* Spinner for loading state */
.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #AF934C;
    width: 24px;
    height: 24px;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}