/* investor-home.css */

/* Hiệu ứng Fade In Up cho Hero */
.fade-up-custom {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 0.8s ease-out forwards;
}

@keyframes fadeUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hiệu ứng Bleed Image cho Section Phân Phối */
.bleed-right {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    z-index: 0;
}

/* Layer mờ cho Hero Background */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(255,255,255,0.7), rgba(255,255,255,0.9));
}

/* Card Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

/* Hover hiệu ứng cho giải thưởng */
.award-card img {
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.award-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Tối ưu cho mobile */
@media (max-width: 1024px) {
    .bleed-right {
        position: relative;
        width: 100%;
        height: 300px;
    }
}
