/* ==========================================================================
   Coming Soon Page styles (Desktop) - Minimal Sun & Premium Button Redesign
   ========================================================================== */

.coming-soon-page-container {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #ffffff 0%, #fffbf8 60%, #fff0e5 100%);
    padding: 60px 20px;
    font-family: "Poppins", sans-serif;
}

.coming-soon-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(20px);
    opacity: 0;
}

.coming-soon-wrapper.loaded {
    transform: translateY(0);
    opacity: 1;
}

/* Minimalist Glowing Sun SVG Wrapper */
.coming-soon-illustration-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 35px auto;
    position: relative;
    border-radius: 50%;
    background: transparent;
    transition: transform 0.5s ease;
}

.coming-soon-illustration-wrapper:hover {
    transform: scale(1.08);
}

.minimal-sun-svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Minimalist Sun Keyframe Animations */
.anim-spin-slow {
    animation: rotate-clockwise 25s linear infinite;
    transform-origin: 100px 100px;
}

.anim-spin-reverse {
    animation: rotate-counter-clockwise 18s linear infinite;
    transform-origin: 100px 100px;
}

.anim-pulse-slow {
    animation: pulse-ring 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    transform-origin: 100px 100px;
}

.anim-rotate {
    animation: rotate-clockwise 40s linear infinite;
    transform-origin: 0px 0px; /* Offset is translated */
}

.anim-pulse-core {
    animation: pulse-core 3s ease-in-out infinite alternate;
    transform-origin: 100px 100px;
}

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

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

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(0.96);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.04);
        opacity: 0.6;
    }
}

@keyframes pulse-core {
    0% {
        transform: scale(0.92);
        opacity: 0.95;
        fill: #FF8E3C;
    }
    100% {
        transform: scale(1.08);
        opacity: 1;
        fill: #FF6B6B;
    }
}

/* Typography styles */
.coming-soon-title {
    font-family: "Poppins", sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--tc-black);
    margin-bottom: 16px;
    line-height: 1.25;
    letter-spacing: -0.8px;
    background: linear-gradient(135deg, var(--tc-dark-orange) 0%, var(--tc-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.coming-soon-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.coming-soon-subtitle {
    font-size: 1.1rem;
    color: var(--tc-gray);
    max-width: 480px;
    margin: 0 auto 35px auto;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.coming-soon-subtitle.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Divider styles */
.coming-soon-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.coming-soon-divider.animate {
    opacity: 1;
}

.divider-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--tc-orange-light);
}

.divider-dot.dot-2 {
    width: 28px;
    border-radius: 4px;
    background-color: var(--tc-orange);
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
        background-color: var(--tc-dark-orange);
    }
}

/* Premium Redesigned Button Styles */
.coming-soon-action {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.coming-soon-action.animate {
    opacity: 1;
    transform: translateY(0);
}

.btn-coming-soon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--tc-orange) 0%, var(--tc-dark-orange) 100%);
    color: #fff !important;
    padding: 8px 8px 8px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 97, 0, 0.22);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
}

.btn-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-coming-soon:hover {
    background: linear-gradient(135deg, var(--tc-dark-orange) 0%, #e64a00 100%);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 97, 0, 0.35);
}

.btn-coming-soon:hover .btn-icon-wrapper {
    background-color: #ffffff;
    color: var(--tc-orange);
    transform: rotate(-45deg);
}

.btn-coming-soon:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(255, 97, 0, 0.2);
}
