/* Custom Animations */

.fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.2s;
}

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

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

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

.fade-up {
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
}

/* 🎨 Branding Colors */
.bg-brand-red {
    background-color: #460000 !important;
}
.text-brand-red {
    color: #460000 !important;
}

.bg-brand-yellow {
    background-color: #FFD700 !important;
}
.text-brand-yellow {
    color: #FFD700 !important;
}

/* 🔲 Transparan Background */
.bg-brand-dark-trans {
    background-color: rgba(0, 0, 0, 0.15) !important;
}
.bg-brand-white-trans {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

/* 🟦 Container Khas */
.card-brand {
    border: 1px solid #7a1c1c !important;
    background-color: rgba(0, 0, 0, 0.15) !important;
    border-radius: .5rem !important;
    padding: 1rem;
}

/* 🌀 Marquee animasi lebih halus */
#donation-marquee {
    white-space: nowrap;
    display: flex;
    gap: 1rem;
    position: absolute;
    will-change: transform;
    transition: transform 0.1s linear;
}
/* Hover overlay effect */
.overlay-hover {
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.card:hover .overlay-hover {
    transform: translateY(0);
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.8);
}

/* Warna branding */
.bg-brand-red { background-color: #460000; }
.text-brand-yellow { color: #FFD54F; }
.text-brand-red { color: #460000; }
