/* AI Couple Bio Generator - Custom Styles */

/* Bio card animations */
.bio-card {
    animation: bioCardFadeIn 0.4s ease-out forwards;
    opacity: 0;
    transform: translateY(12px);
}

@keyframes bioCardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bio-card:nth-child(1) { animation-delay: 0.05s; }
.bio-card:nth-child(2) { animation-delay: 0.12s; }
.bio-card:nth-child(3) { animation-delay: 0.19s; }
.bio-card:nth-child(4) { animation-delay: 0.26s; }
.bio-card:nth-child(5) { animation-delay: 0.33s; }

/* Bio card hover effect */
.bio-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(128, 0, 0, 0.08);
}

/* Copy button pulse */
.copy-btn:active {
    transform: scale(0.92);
}

.copy-btn.copied {
    background-color: #166534;
    color: #fff;
}

/* Result section entrance */
.results-appear {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
