/* =========================================================================
   BIRTHDAY WIZARD CSS - Wonder Park
   Styles pour le système de réservation anniversaires
   ========================================================================= */

/* Progress Steps */
.birthday-progress .step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.birthday-progress .step-circle {
    transition: all 0.3s ease;
}

.birthday-progress .step-item.active .step-circle {
    background-color: #FF006F !important;
    color: white !important;
}

.birthday-progress .step-item.completed .step-circle {
    background-color: #28a745 !important;
    color: white !important;
}

.birthday-progress .step-line {
    background: #e9ecef !important;
}

.birthday-progress .step-item.active ~ .step-item .step-line {
    background: #28a745 !important;
}

/* Package Cards */
.package-option {
    transition: all 0.3s ease;
}

.package-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.package-option.selected .package-card {
    border-color: #FF006F !important;
    background: linear-gradient(135deg, #fff 0%, #fff5f9 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 0, 111, 0.15);
}

/* Time Slots */
.time-slot-option .slot-btn {
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.time-slot-option .slot-btn:hover {
    border-color: #FF006F;
    background: #fff5f9 !important;
}

.time-slot-option input[type="radio"]:checked + .slot-btn {
    border-color: #FF006F !important;
    background: #FF006F !important;
    color: white !important;
}

/* Venue Cards */
.venue-option {
    transition: all 0.3s ease;
}

.venue-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.venue-card:hover {
    border-color: #FF006F !important;
    background: #fff5f9 !important;
    transform: translateY(-2px);
}

.venue-option input[type="radio"]:checked + .venue-card {
    border-color: #FF006F !important;
    background: #FF006F !important;
    color: white !important;
}

.venue-option input[type="radio"]:checked + .venue-card .text-primary {
    color: white !important;
}

.venue-option input[type="radio"]:checked + .venue-card .text-success {
    color: white !important;
}

.venue-option input[type="radio"]:checked + .venue-card .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Payment Cards */
.payment-option {
    transition: all 0.3s ease;
}

.payment-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-card:hover {
    border-color: #FF006F !important;
    background: #fff5f9 !important;
    transform: translateY(-2px);
}

.payment-option input[type="radio"]:checked + .payment-card {
    border-color: #FF006F !important;
    background: #FF006F !important;
    color: white !important;
}

.payment-option input[type="radio"]:checked + .payment-card i {
    color: white !important;
}

/* Step Display */
.birthday-step {
    min-height: 400px;
    padding: 1rem 0;
}

.birthday-step.active {
    animation: fadeInUp 0.4s ease-out;
}

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

/* Service Optional */
.service-optional .form-check-input:checked {
    background-color: #FF006F;
    border-color: #FF006F;
}

/* Custom Increment Override */
.custom-increment .btn-number:hover {
    background: #FF006F !important;
    color: #FFF !important;
    border-color: #FF006F !important;
}

/* Responsive */
@media (max-width: 768px) {
    .birthday-progress .step-info {
        display: none;
    }
    
    .birthday-progress .step-circle {
        width: 30px !important;
        height: 30px !important;
    }
    
    .birthday-step {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .package-option,
    .time-slot-option,
    .venue-option,
    .payment-option {
        margin-bottom: 1rem;
    }
}
