.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gold-gradient {
    background: linear-gradient(135deg, #f4c430 0%, #c5a059 100%);
}

.text-gradient-gold {
    background: linear-gradient(to right, #f4c430, #d4af37, #c5a059);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #041f0f; /* Primary Deep Forest Green */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out;
}

.loader {
    border: 5px solid #0a3d20; /* Secondary */
    border-top: 5px solid #d4af37; /* Gold */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

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