/* Wedding Checklist - Premium Theme */

.checklist-phase {
    animation: phaseSlide 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.checklist-phase:nth-child(1) { animation-delay: 0.1s; }
.checklist-phase:nth-child(2) { animation-delay: 0.2s; }
.checklist-phase:nth-child(3) { animation-delay: 0.3s; }
.checklist-phase:nth-child(4) { animation-delay: 0.4s; }
.checklist-phase:nth-child(5) { animation-delay: 0.5s; }
.checklist-phase:nth-child(6) { animation-delay: 0.6s; }

@keyframes phaseSlide {
    to { opacity: 1; transform: translateY(0); }
}

.checklist-item {
    transition: all 0.3s ease;
}

.checklist-item:hover {
    transform: translateX(4px);
    background-color: rgba(253, 245, 230, 0.5);
}

.checklist-item.completed {
    opacity: 0.6;
}

.checklist-item.completed .task-text {
    text-decoration: line-through;
    color: #9ca3af;
}

.progress-ring {
    transition: stroke-dashoffset 0.5s ease;
}

.progress-bar-fill {
    transition: width 0.8s ease-out;
}

.priority-high { border-left: 3px solid #dc2626; }
.priority-med { border-left: 3px solid #f59e0b; }
.priority-low { border-left: 3px solid #10b981; }

.phase-header {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.phase-header:hover {
    background-color: rgba(253, 245, 230, 0.3);
}

.phase-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.phase-content.open {
    max-height: 2000px;
}

.stats-card {
    animation: statPop 0.4s ease-out;
}

@keyframes statPop {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.category-badge {
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 9999px;
    font-weight: 500;
}
