/* Coming Soon Section */
.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    text-align: center;
    padding: 20px;
}

.coming-soon-content {
    max-width: 600px;
}

.coming-soon-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
}

.coming-soon-subtitle {
    font-size: 20px;
    color: var(--color-secondary);
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease forwards;
}

/* Animated Loader Dots */
.coming-soon-loader {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.coming-soon-loader span {
    width: 15px;
    height: 15px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
    animation: bounce 0.6s infinite alternate;
}

.coming-soon-loader span:nth-child(2) {
    animation-delay: 0.2s;
}

.coming-soon-loader span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Animations */
@keyframes bounce {
    from {
        transform: translateY(0);
        opacity: 0.6;
    }

    to {
        transform: translateY(-20px);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 36px;
    }

    .coming-soon-subtitle {
        font-size: 18px;
    }

    .coming-soon-loader span {
        width: 12px;
        height: 12px;
    }
}
