* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}





/* BODY */
body {
    margin:0;
    font-family:'Segoe UI',sans-serif;
    background: linear-gradient(rgba(232,239,236,0.9), rgba(214,225,220,0.9));
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

/* WRAPPER */
.wrapper{
    position:relative;
    width:100%;
    max-width:1000px;
    height:80vh;
}

/* TITLE */
.title{
    position:absolute;
    top:5%;
    left:50%;
    transform:translateX(-50%);
    text-align:center;
}

.title h1{
    margin:0;
    font-size:34px;
    color:#1f3c34;
}

.title p{
    margin-top:5px;
    color:#4e6f64;
}

/* CENTER IMAGE */
.center-img{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:250px;
    max-width:60vw;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.2);
}

/* ITEMS */
.item{
    position:absolute;
    background:white;
    padding:12px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    white-space:nowrap;

    transition:transform 0.3s;
    animation: float 4s ease-in-out infinite;
}

.item:hover{
    transform:translateY(-5px) scale(1.05);
}

/* FLOAT */
@keyframes float{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-8px);}
}

/* LEFT SIDE */
.i1{top:25%; left:5%;}
.i2{top:45%; left:3%;}
.i3{top:65%; left:6%;}

/* RIGHT SIDE */
.i4{top:25%; right:5%;}
.i5{top:45%; right:3%;}
.i6{top:65%; right:6%;}

/* COMING SOON */
.coming {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    
    font-size: 20px;
    font-weight: bold;
    color: #ff7a18;
    letter-spacing: 1px;

    /* 🔥 MULTIPLE ANIMATIONS */
    animation: floatText 3s ease-in-out infinite,
               glowText 2s ease-in-out infinite alternate;
}

/* 🔥 FLOAT (UP-DOWN SMOOTH) */
@keyframes floatText {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* 🔥 SOFT GLOW */
@keyframes glowText {
    from {
        opacity: 0.7;
        text-shadow: 0 0 5px #ff7a18;
    }
    to {
        opacity: 1;
        text-shadow: 0 0 15px #ff7a18, 0 0 25px #ff7a18;
    }
}



/* GLOW */
@keyframes glow{
    from{opacity:0.6; text-shadow:0 0 5px #ff7a18;}
    to{opacity:1; text-shadow:0 0 20px #ff7a18;}
}

/* MOBILE */
@media (max-width:768px){

    .wrapper{
        height:auto;
        padding:30px 10px;
    }

    .title{
        position:static;
        transform:none;
        margin-bottom:20px;
    }

    .center-img{
        position:static;
        transform:none;
        display:block;
        margin:20px auto;
        width:200px;
    }

    .item{
        position:static;
        display:block;
        margin:10px auto;
        animation:none;
    }

    .coming{
        position:static;
        margin-top:20px;
    }
}



@media (max-width:768px){

    .coming{
        position: static;   /* 🔥 remove absolute */
        transform: none;    /* reset transform */
        text-align: center;
        margin-top: 30px;

        animation: floatMobile 3s ease-in-out infinite,
                   glowText 2s ease-in-out infinite alternate;
    }
}

