/* style.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    height:100vh;
    overflow:hidden;
    position:relative;
    color:#fff;
}

.hero{
    width:100%;
    height:100vh;

    background:url('background_img.jpg');
    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    position:relative;
}

/* Overlay */

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
    z-index:1;
}

/* Logo */

.logo{
    position:absolute;
    top:30px;
    left:50%;
    transform:translateX(-50%);
    z-index:3;
}

.logo img{
    width:260px;
    max-width:90%;
}

/* Content */

.content{
    position:relative;
    z-index:2;
    max-width:800px;
    padding:20px;
}

.small-text{
    font-size:30px;
    font-weight:500;
    opacity:0.9;
}

.content h1{
    font-size:70px;
    font-weight:700;
    margin-top:10px;
    margin-bottom:20px;
}

.content p{
    font-size:18px;
    line-height:1.8;
    color:#ddd;
    margin-bottom:40px;
}

/* Countdown */

.countdown{
    background:#fff;
    color:#111;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:30px 40px;

    border-radius:5px;

    margin:auto;
    width:fit-content;

    box-shadow:0 10px 40px rgba(0,0,0,0.4);
}

.box{
    min-width:90px;
}

.box h2{
    font-size:45px;
    font-weight:600;
}

.box span{
    font-size:14px;
    color:#666;
}

.separator{
    font-size:40px;
    margin:0 10px;
    color:#555;
}

/* Button */

.btn{
    display:inline-block;
    margin-top:40px;

    padding:15px 40px;

    border:1px solid #fff;

    color:#070606;
    text-decoration:none;

    font-size:14px;
    font-weight:600;

    transition:0.4s ease;
}

.btn:hover{
    background:#f82c2c;
    color:#000;
}

/* Responsive */

@media(max-width:768px){

    .logo img{
        width:180px;
    }

    .content h1{
        font-size:45px;
    }

    .countdown{
        flex-wrap:wrap;
        padding:20px;
    }

    .box{
        min-width:70px;
    }

    .box h2{
        font-size:30px;
    }

    .separator{
        display:none;
    }

}

/* POPUP STYLE */

.popup{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.75);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:999;
}

.popup-content{

    width:90%;
    max-width:700px;

    background:#111;

    padding:40px;

    border-radius:15px;

    text-align:center;

    position:relative;

    animation:popupAnim 0.4s ease;

    border:1px solid rgba(255,255,255,0.1);

    box-shadow:0 0 40px rgba(0,0,0,0.5);
}

.popup-content h2{
    font-size:28px;
    margin-bottom:20px;
    color:#fff;
}

.popup-content p{
    color:#ddd;
    line-height:1.8;
    margin-bottom:15px;
    font-size:17px;
}

.popup-content ul{
    list-style:none;
    margin:20px 0;
}

.popup-content ul li{
    margin:10px 0;
    font-size:18px;
    font-weight:600;
    color:#fff;
}

.popup-content h3{
    margin-top:25px;
    font-size:30px;
    color:#fff;
}

.close-btn{
    position:absolute;
    top:5px;
    right:20px;

    font-size:35px;
    cursor:pointer;
    color:#fff;
}

.close-btn:hover{
    color:red;
}

/* Animation */

@keyframes popupAnim{

    from{
        transform:scale(0.7);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }
}

@media(max-width:768px){

    .popup-content{
        padding:25px;
    }

    .popup-content h2{
        font-size:22px;
    }

    .popup-content h3{
        font-size:24px;
    }

}
footer p{
    position:absolute;
    bottom:15px;
    width:100%;
    text-align:center;
    color:#fdfdfd;
    z-index:2;
}