/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0d1117;
}

.portfolio-coming-soon{
    position:relative;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    background:#0b1120;
}

/* Animated Background */

.bg-animation{
    position:absolute;
    inset:0;
    background:linear-gradient(-45deg,#0ea5e9,#2563eb,#7c3aed,#06b6d4);
    background-size:400% 400%;
    animation:gradient 12s ease infinite;
}

.bg-animation::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

@keyframes gradient{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

/* Glass Card */

.coming-card{
    position:relative;
    z-index:2;
    width:90%;
    max-width:650px;
    padding:60px 45px;
    text-align:center;
    color:#fff;
    border-radius:25px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.15);
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.badge{
    display:inline-block;
    padding:8px 18px;
    background:#14b8a6;
    border-radius:50px;
    font-size:14px;
    margin-bottom:25px;
}

.coming-card h1{
    font-size:48px;
    margin-bottom:15px;
    color:#fff;
}

.coming-card h2{
    font-size:30px;
    color:#38bdf8;
    margin-bottom:20px;
}

.coming-card p{
    color:#d1d5db;
    line-height:1.8;
    font-size:17px;
    margin-bottom:35px;
}

/* Button */

.btn{
    display:inline-block;
    padding:15px 40px;
    text-decoration:none;
    color:#fff;
    background:#2563eb;
    border-radius:50px;
    transition:.35s;
    font-weight:600;
}

.btn:hover{
    background:#1d4ed8;
    transform:translateY(-4px);
}

/* Footer Info */

.footer-info{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    color:#cbd5e1;
    font-size:15px;
}

/* Responsive */

@media(max-width:768px){

    .coming-card{
        padding:40px 25px;
    }

    .coming-card h1{
        font-size:36px;
    }

    .coming-card h2{
        font-size:24px;
    }

    .coming-card p{
        font-size:15px;
    }

    .footer-info{
        flex-direction:column;
        gap:10px;
    }
}