@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&display=swap');

/* ============================================
   COMING SOON SECTION
   ============================================ */

.coming-soon-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 280px);
    background: transparent;
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding: 40px 20px;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.coming-soon-content {
    text-align: center;
    animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.coming-soon-text {
    font-family: 'Poppins', sans-serif;
    font-size: 8vw;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.6);
    letter-spacing: 2px;
    line-height: 1.2;
}

/* Tablet */
@media (max-width: 1024px) {
    .coming-soon-section {
        min-height: calc(100vh - 240px);
    }

    .coming-soon-text {
        font-size: 10vw;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .coming-soon-section {
        min-height: calc(100vh - 220px);
    }

    .coming-soon-text {
        font-size: 10vw;
    }
}

@media (max-width: 480px) {
    .coming-soon-section {
        min-height: calc(100vh - 200px);
        padding: 30px 15px;
    }

    .coming-soon-text {
        font-size: 10vw;
        letter-spacing: 1px;
    }
}
