/**
 * Roomii Celebration - Styles
 */

/* Celebration Container */
.roomii-celebration-container {
    text-align: center;
    padding: 30px 20px;
    animation: roomiiFadeInUp 0.8s ease forwards;
    opacity: 0;
}

.roomii-celebration-container .emoji-big {
    font-size: 52px;
    display: block;
    margin-bottom: 10px;
    animation: roomiiBounce 1s ease infinite;
}

.roomii-celebration-container h2 {
    color: #FF8000;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.roomii-celebration-container .sub-text {
    color: #666;
    font-size: 17px;
    margin-bottom: 5px;
}

.roomii-celebration-container .highlight {
    color: #FF8000;
    font-weight: 600;
}

.roomii-celebration-container .small-text {
    font-size: 14px;
    color: #999;
}

/* Progress Tracker */
.roomii-progress-tracker {
    max-width: 600px;
    margin: 35px auto;
    padding: 25px 20px;
    background: #f8f8f8;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.roomii-progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.roomii-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.roomii-progress-step .step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.roomii-progress-step.active .step-icon {
    background: #FF8000;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 128, 0, 0.3);
}

.roomii-progress-step.completed .step-icon {
    background: #FF8000;
    color: white;
}

.roomii-progress-step .step-label {
    font-size: 11px;
    color: #888;
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.roomii-progress-step.active .step-label {
    color: #FF8000;
    font-weight: 600;
}

.roomii-progress-step.completed .step-label {
    color: #555;
}

.roomii-progress-line {
    position: absolute;
    top: 22px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: #e0e0e0;
    z-index: 1;
    border-radius: 2px;
}

.roomii-progress-line-fill {
    height: 100%;
    background: #FF8000;
    width: 0%;
    transition: width 1.5s ease;
    border-radius: 2px;
}

/* Share Buttons */
.roomii-share-section {
    text-align: center;
    margin-top: 30px;
    padding: 10px 0;
}

.roomii-share-section .share-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    display: block;
}

.roomii-share-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 0 5px 8px;
}

.roomii-share-btn.primary {
    background: #FF8000;
    color: white;
}

.roomii-share-btn.primary:hover {
    background: #E67300;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 128, 0, 0.35);
}

.roomii-share-btn.secondary {
    background: #333;
    color: white;
}

.roomii-share-btn.secondary:hover {
    background: #555;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.roomii-share-btn.outline {
    background: transparent;
    color: #333;
    border: 2px solid #ddd;
}

.roomii-share-btn.outline:hover {
    border-color: #FF8000;
    color: #FF8000;
    transform: translateY(-2px);
}

/* Animations */
@keyframes roomiiFadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes roomiiBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .roomii-celebration-container h2 {
        font-size: 24px;
    }
    
    .roomii-celebration-container .sub-text {
        font-size: 15px;
    }
    
    .roomii-progress-tracker {
        padding: 20px 12px;
    }
    
    .roomii-progress-step .step-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .roomii-progress-step .step-label {
        font-size: 10px;
    }
    
    .roomii-progress-line {
        top: 18px;
        left: 10%;
        right: 10%;
    }
    
    .roomii-share-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .roomii-progress-step .step-label {
        font-size: 9px;
    }
    
    .roomii-progress-step .step-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}