/* Coming Soon Page Styles - Matching Palmaf Design System */

.coming-soon-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: var(--ultra-light, #F3F4F6);
}

.coming-soon-container {
    text-align: center;
    max-width: 600px;
    padding: 50px 40px;
    background: var(--light, #F9FAFB);
    border-radius: var(--radius, 8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Animated Gears Icon */
.coming-soon-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    color: var(--primary, #6366F1);
}

.coming-soon-icon svg {
    width: 100%;
    height: 100%;
}

.gear-large {
    animation: rotate 4s linear infinite;
    transform-origin: 60px 60px;
}

.gear-small {
    animation: rotate-reverse 3s linear infinite;
    transform-origin: 95px 35px;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* Typography */
.coming-soon-page h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark, #1F2937);
    margin-bottom: 16px;
}

.coming-soon-subtitle {
    font-size: 1.1rem;
    color: var(--medium, #6B7280);
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 35px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--ultra-light, #F3F4F6);
    border-radius: var(--radius, 8px);
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.progress-fill {
    height: 100%;
    width: 65%;
    background: linear-gradient(90deg, var(--primary, #6366F1), var(--primary-dark, #4F46E5));
    border-radius: var(--radius, 8px);
    animation: progress-pulse 2s ease-in-out infinite;
}

@keyframes progress-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.progress-text {
    font-size: 0.9rem;
    color: var(--medium, #6B7280);
    font-weight: 500;
}

/* Buttons - Matching site button styles */
.coming-soon-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.coming-soon-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius, 8px);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.coming-soon-actions .btn-primary {
    background: var(--primary, #6366F1);
    color: white;
    border: 2px solid var(--primary, #6366F1);
}

.coming-soon-actions .btn-primary:hover {
    background: var(--primary-dark, #4F46E5);
    border-color: var(--primary-dark, #4F46E5);
    color: white;
}

.coming-soon-actions .btn-secondary {
    background: transparent;
    color: var(--dark, #1F2937);
    border: 2px solid var(--dark, #1F2937);
}

.coming-soon-actions .btn-secondary:hover {
    background: var(--dark, #1F2937);
    color: white;
}

/* Note */
.coming-soon-note {
    font-size: 0.9rem;
    color: var(--medium, #6B7280);
    margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
    .coming-soon-container {
        padding: 40px 25px;
        margin: 0 15px;
    }

    .coming-soon-page h1 {
        font-size: 1.8rem;
    }

    .coming-soon-subtitle {
        font-size: 1rem;
    }

    .coming-soon-icon {
        width: 100px;
        height: 100px;
    }

    .coming-soon-actions {
        flex-direction: column;
    }

    .coming-soon-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
