/*=================================================
           COMING SOON BEAUTY STORE
                STYLE.CSS
==================================================*/


/*=============================
        FONT
=============================*/

@font-face{
    font-family:'BTitr';
    src:url('fonts/BTitr.ttf') format('truetype');
    font-display:swap;
}


/*=============================
      ROOT COLORS
=============================*/

:root{

    --white:#ffffff;

    --light:#fff8fb;

    --pink:#ffd8e7;

    --rose:#ff7b9c;

    --red:#d7264c;

    --gold:#e8c46a;

    --sky:#bde9ff;

    --blue:#4ea9ff;

    --dark:#2f2f38;

    --glass:rgba(255,255,255,.23);

    --border:rgba(255,255,255,.45);

    --shadow:0 30px 60px rgba(0,0,0,.18);

}


/*=============================
      RESET
=============================*/

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'BTitr',Tahoma,sans-serif;

background:linear-gradient(
135deg,
#ffffff,
#ffeef4,
#bfe7ff,
#fff8fb
);

background-size:400% 400%;

animation:bgMove 15s ease infinite;

min-height:100vh;

overflow-x:hidden;

overflow-y:auto;

display:flex;

justify-content:center;

align-items:flex-start;

padding:40px 0;

position:relative;

color:var(--dark);

}


/*=============================
      BACKGROUND
=============================*/

.background{

position:absolute;

width:100%;

height:100%;

overflow:hidden;

z-index:-5;

}


/*=============================
     FLOATING CIRCLES
=============================*/

.circle{

position:absolute;

border-radius:50%;

filter:blur(45px);

opacity:.55;

animation:float 8s ease-in-out infinite;

}

.c1{

width:320px;

height:320px;

background:#ff6b9a;

top:-120px;

right:-100px;

}

.c2{

width:260px;

height:260px;

background:#71c8ff;

bottom:-90px;

left:-60px;

animation-delay:2s;

}

.c3{

width:180px;

height:180px;

background:#ffe083;

top:45%;

left:10%;

animation-delay:4s;

}

.c4{

width:220px;

height:220px;

background:#ffc3d8;

right:12%;

bottom:12%;

animation-delay:1s;

}


/*=============================
      MAIN SECTION
=============================*/

.coming-soon{

width:100%;

display:flex;

justify-content:center;

align-items:center;

padding:30px;

}


/*=============================
      GLASS CARD
=============================*/

.glass-card{

width:100%;

max-width:980px;

padding:55px;

border-radius:35px;

background:var(--glass);

border:1px solid var(--border);

backdrop-filter:blur(22px);

-webkit-backdrop-filter:blur(22px);

box-shadow:var(--shadow);

position:relative;

overflow:hidden;

}


/*=============================
      LIGHT EFFECT
=============================*/

.glass-card::before{

content:"";

position:absolute;

top:-120px;

left:-120px;

width:260px;

height:260px;

background:rgba(255,255,255,.5);

border-radius:50%;

filter:blur(80px);

}

.glass-card::after{

content:"";

position:absolute;

bottom:-100px;

right:-100px;

width:240px;

height:240px;

background:rgba(255,90,120,.18);

border-radius:50%;

filter:blur(70px);

}


/*=============================
       ANIMATIONS
=============================*/

@keyframes bgMove{

0%{

background-position:0% 50%;

}

50%{

background-position:100% 50%;

}

100%{

background-position:0% 50%;

}

}

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-35px);

}

100%{

transform:translateY(0);

}

}


/*=============================
      RESPONSIVE
=============================*/

@media(max-width:992px){

.glass-card{

padding:35px;

}

}

@media(max-width:768px){

body{

padding:20px 0;

}

.coming-soon{
    padding:15px;
}

.glass-card{
width:95%;
padding:25px 18px;

}

}

@media(max-width:480px){

.glass-card{

padding:18px;

}

}

/*=================================================
        SECTION 2
LOGO + TITLES + DESCRIPTION
=================================================*/


/*--------------------------
    کارت هنگام ورود
---------------------------*/

.glass-card{

    animation:cardAppear 1.3s ease;

}


/*--------------------------
        Shine Effect
---------------------------*/

.glass-card .shine{

    position:absolute;

    top:-120%;

    left:-40%;

    width:220px;

    height:220%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.45),

        transparent

    );

    transform:rotate(20deg);

    animation:shine 7s infinite;

    pointer-events:none;

}


/*--------------------------
        LOGO
---------------------------*/

.logo{

    width:150px;

    height:150px;

    margin:auto;

    margin-bottom:28px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.55);

    box-shadow:

    0 15px 35px rgba(0,0,0,.12),

    inset 0 0 18px rgba(255,255,255,.8);

    transition:.45s;

    overflow:hidden;

}


.logo img{

    width:80%;

    transition:.45s;

}


.logo:hover{

    transform:translateY(-8px) scale(1.06);

}


.logo:hover img{

    transform:scale(1.08) rotate(3deg);

}


/*--------------------------
      MAIN TITLE
---------------------------*/

h1{

    text-align:center;

    font-size:54px;

    color:var(--red);

    margin-bottom:10px;

    line-height:1.4;

    letter-spacing:.5px;

}


h1 span{

    display:block;

    font-size:26px;

    color:#666;

    margin-top:10px;

    font-family:Tahoma,sans-serif;

    font-weight:600;

    letter-spacing:4px;

}


/*--------------------------
      DESCRIPTION
---------------------------*/

.description{

    max-width:760px;

    margin:35px auto;

    text-align:center;

    font-size:24px;

    line-height:2.2;

    color:#444;

}


/*--------------------------
      Fade Animation
---------------------------*/

.logo{

animation:fadeTop 1s ease;

}

h1{

animation:fadeBottom 1.3s ease;

}

.description{

animation:fadeBottom 1.7s ease;

}



/*--------------------------
      Animations
---------------------------*/

@keyframes fadeTop{

0%{

opacity:0;

transform:translateY(-40px);

}

100%{

opacity:1;

transform:none;

}

}


@keyframes fadeBottom{

0%{

opacity:0;

transform:translateY(40px);

}

100%{

opacity:1;

transform:none;

}

}



@keyframes cardAppear{

0%{

opacity:0;

transform:scale(.92);

}

100%{

opacity:1;

transform:scale(1);

}

}



@keyframes shine{

0%{

left:-50%;

}

100%{

left:140%;

}

}


/*--------------------------
      Responsive
---------------------------*/

@media(max-width:992px){

h1{

font-size:44px;

}

.description{

font-size:22px;

}

}


@media(max-width:768px){

.logo{

width:120px;

height:120px;

}

h1{

font-size:36px;

}

h1 span{

font-size:20px;

letter-spacing:2px;

}

.description{

font-size:20px;

line-height:2;

}

}


@media(max-width:480px){

.logo{

width:95px;

height:95px;

}

h1{

font-size:30px;

}

.description{

font-size:18px;

}

}

/*=================================================
        SECTION 3
COUNTDOWN + PROGRESS + NEWSLETTER
=================================================*/


/*========================
      Progress Section
=========================*/

.progress-section{

    margin:45px 0;

    text-align:center;

}

.progress-section h3{

    font-size:22px;

    color:#555;

    margin-bottom:18px;

}

.progress{

    width:100%;

    max-width:620px;

    margin:auto;

    height:18px;

    border-radius:30px;

    overflow:hidden;

    background:#f1f1f1;

    box-shadow:inset 0 3px 8px rgba(0,0,0,.12);

}

.progress-bar{

    width:65%;

    height:100%;

    border-radius:30px;

    background:linear-gradient(
90deg,
#ff6b8b,
#ff2d55,
#ff9f43
);

    background-size:300%;

    animation:progressMove 5s linear infinite;

    position:relative;

}

.progress-bar span{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    color:#fff;

    font-size:12px;

}



/*========================
      Countdown
=========================*/

.countdown{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

    margin:55px 0;

}


.time-box{

    width:130px;

    height:130px;

    background:rgba(255,255,255,.45);

    border:1px solid rgba(255,255,255,.6);

    border-radius:28px;

    backdrop-filter:blur(12px);

    box-shadow:0 15px 30px rgba(0,0,0,.12);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    transition:.35s;

}

.time-box:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 45px rgba(0,0,0,.18);

}

.time-box span{

    font-size:42px;

    color:var(--red);

}

.time-box label{

    margin-top:10px;

    font-size:20px;

    color:#666;

}



/*========================
      Newsletter
=========================*/

.newsletter{

    margin-top:45px;

    text-align:center;

}

.newsletter h3{

    font-size:25px;

    color:#444;

    margin-bottom:25px;

}

.newsletter form{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}

.newsletter input{

    width:420px;

    max-width:90%;

    height:58px;

    border:none;

    border-radius:60px;

    padding:0 25px;

    font-size:18px;

    background:rgba(255,255,255,.85);

    outline:none;

    transition:.35s;

}

.newsletter input:focus{

    box-shadow:0 0 0 4px rgba(255,107,139,.25);

}

.newsletter button{

    height:58px;

    padding:0 35px;

    border:none;

    border-radius:60px;

    cursor:pointer;

    font-family:'BTitr';

    font-size:20px;

    color:#fff;

    background:linear-gradient(
90deg,
#ff4f7b,
#d7264c
);

    transition:.35s;

}

.newsletter button:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(215,38,76,.35);

}

#message{

    margin-top:18px;

    min-height:30px;

    font-size:18px;

    color:#1b8f47;

}



/*========================
      Animations
=========================*/

@keyframes progressMove{

0%{

background-position:0%;

}

100%{

background-position:300%;

}

}



/*========================
      Responsive
=========================*/

@media(max-width:768px){

.time-box{

width:105px;

height:105px;

}

.time-box span{

font-size:34px;

}

.time-box label{

font-size:17px;

}

.newsletter h3{

font-size:21px;

}

.newsletter form{

flex-direction:column;

align-items:center;

}

.newsletter input{

width:100%;

}

.newsletter button{

width:220px;

}

}

@media(max-width:480px){

.countdown{

gap:12px;

}

.time-box{

width:82px;

height:82px;

border-radius:18px;

}

.time-box span{

font-size:26px;

}

.time-box label{

font-size:14px;

}

}

/*=================================================
        SECTION 4
BUTTONS + SOCIAL + FOOTER
=================================================*/


/*========================
        MAIN BUTTON
=========================*/


.buttons{

    text-align:center;

    margin-top:35px;

}


.main-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:250px;

    height:65px;

    border-radius:50px;

    text-decoration:none;

    color:#fff;

    font-size:24px;

    background:linear-gradient(
        135deg,
        #ff416c,
        #d7264c
    );

    box-shadow:

    0 15px 35px rgba(215,38,76,.35);

    position:relative;

    overflow:hidden;

    transition:.4s;

}


/* نور متحرک روی دکمه */

.main-btn::before{

    content:"";

    position:absolute;

    width:80px;

    height:150px;

    background:rgba(255,255,255,.35);

    transform:rotate(35deg);

    left:-120px;

    top:-40px;

    transition:.7s;

}


.main-btn:hover::before{

    left:300px;

}


.main-btn:hover{

    transform:translateY(-7px);

    box-shadow:

    0 25px 45px rgba(215,38,76,.45);

}





/*========================
        SOCIAL ICONS
=========================*/


.social{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}



.social a{

    width:55px;

    height:55px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#d7264c;

    font-size:25px;

    background:rgba(255,255,255,.65);

    box-shadow:

    0 10px 25px rgba(0,0,0,.12);

    transition:.35s;

    position:relative;

    overflow:hidden;

}



.social a::after{

    content:"";

    position:absolute;

    width:0;

    height:0;

    background:#d7264c;

    border-radius:50%;

    transition:.4s;

    z-index:-1;

}



.social a:hover{

    color:white;

    transform:translateY(-8px) rotate(8deg);

}



.social a:hover::after{

    width:100px;

    height:100px;

}




/*========================
          FOOTER
=========================*/


footer{

    margin-top:45px;

    text-align:center;

    color:#777;

    font-size:16px;

}


footer p{

    opacity:.8;

}





/*========================
      MUSIC BUTTON
=========================*/


.music{

    position:absolute;

    top:25px;

    left:25px;

}


.music button{

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:white;

    color:#d7264c;

    cursor:pointer;

    box-shadow:

    0 8px 20px rgba(0,0,0,.15);

    transition:.3s;

}


.music button:hover{

    transform:scale(1.1);

}





/*========================
      CLICK RIPPLE
=========================*/


.main-btn:active,
.newsletter button:active{

    transform:scale(.94);

}





/*========================
      RESPONSIVE
=========================*/


@media(max-width:768px){


.main-btn{

    width:210px;

    height:58px;

    font-size:20px;

}


.social{

    gap:15px;

}


.social a{

    width:48px;

    height:48px;

    font-size:21px;

}


.music{

    top:15px;

    left:15px;

}


}


@media(max-width:480px){


footer{

    font-size:14px;

}


}

/*=================================================
        SECTION 5
FINAL EFFECTS + ANIMATIONS
=================================================*/


/*========================
    CARD 3D EFFECT
=========================*/


.glass-card{

    transform-style:preserve-3d;

    transition:transform .35s ease;

}



/*========================
       GLOW EFFECT
=========================*/


h1,
.main-btn,
.logo{

    animation:
    glowPulse 3s infinite alternate;

}



@keyframes glowPulse{


from{

filter:
drop-shadow(
0 0 0px rgba(255,90,120,.2)
);

}


to{

filter:
drop-shadow(
0 0 18px rgba(255,90,120,.45)
);

}

}





/*========================
      LOGO ROTATION
=========================*/


.logo::before{

content:"";

position:absolute;

width:170px;

height:170px;

border-radius:50%;

border:2px dashed rgba(215,38,76,.35);

animation:rotateCircle 12s linear infinite;


}



@keyframes rotateCircle{


from{

transform:rotate(0deg);

}


to{

transform:rotate(360deg);

}

}





/*========================
      FLOATING PARTICLES
=========================*/


.particles::before,
.particles::after{


content:"";

position:absolute;

width:8px;

height:8px;

background:white;

border-radius:50%;

box-shadow:

30px 50px white,
100px 130px #ffd8e7,
220px 80px white,
350px 200px #ff7b9c,
500px 100px white,
700px 250px #bde9ff,
900px 80px white;


animation:
particlesMove 12s infinite linear;


}



@keyframes particlesMove{


0%{

transform:
translateY(100vh)
rotate(0deg);

opacity:0;

}


20%{

opacity:1;

}


100%{

transform:
translateY(-120vh)
rotate(360deg);

opacity:0;

}


}





/*========================
      TEXT REVEAL
=========================*/


.description{

animation:

textReveal 2s ease;

}



@keyframes textReveal{


from{

opacity:0;

letter-spacing:8px;

}


to{

opacity:1;

letter-spacing:normal;

}

}





/*========================
      BUTTON FLOAT
=========================*/


.main-btn{

animation:
buttonFloat 4s ease-in-out infinite;

}



@keyframes buttonFloat{


0%{

transform:translateY(0);

}


50%{

transform:translateY(-8px);

}


100%{

transform:translateY(0);

}

}





/*========================
      SOCIAL FLOAT
=========================*/


.social a:nth-child(1){

animation:
socialMove 3s infinite;

}


.social a:nth-child(2){

animation:
socialMove 3s infinite .3s;

}


.social a:nth-child(3){

animation:
socialMove 3s infinite .6s;

}


.social a:nth-child(4){

animation:
socialMove 3s infinite .9s;

}


.social a:nth-child(5){

animation:
socialMove 3s infinite 1.2s;

}



@keyframes socialMove{


0%,100%{

transform:translateY(0);

}


50%{

transform:translateY(-8px);

}

}





/*========================
      MOBILE OPTIMIZE
=========================*/


@media(max-width:768px){


.glass-card{

transform:none!important;

}


.particles{

display:none;

}


}

.particle{

position:absolute;

width:6px;

height:6px;

background:white;

border-radius:50%;

opacity:.7;

animation:
particleFloat 10s infinite;

}


@keyframes particleFloat{


0%{

transform:
translateY(0);

opacity:0;

}


50%{

opacity:1;

}


100%{

transform:
translateY(-300px);

opacity:0;

}

}

@media(max-width:768px){

.circle{
filter:blur(20px);
opacity: .35;
}

.glass-card{
backdrop-filter:blur(8px);
-webkit-backdrop-filter:blur(8px);
}
}