*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    overflow:hidden;
    color:#fff;
}

#heroVideo{
    position:fixed;
    right:0;
    bottom:0;
    min-width:100%;
    min-height:100%;
    object-fit:cover;
    z-index:-2;
}

.overlay{
    position:fixed;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
    z-index:-1;
}

.hero{
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.logo{
    letter-spacing:10px;
    font-size:20px;
    margin-bottom:30px;
    color:#c8a97e;
}

.hero h1{
    font-family:'Playfair Display',serif;
    font-size:70px;
    font-weight:700;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:40px;
    color:#ddd;
}

#countdown{
    font-size:30px;
    margin-bottom:40px;
    letter-spacing:5px;
}

.subscribe-form{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
}

.subscribe-form input{
    width:320px;
    padding:15px;
    border:none;
    background:rgba(255,255,255,.1);
    color:#fff;
    border:1px solid rgba(255,255,255,.2);
}

.subscribe-form button{
    padding:15px 35px;
    border:none;
    background:#c8a97e;
    color:#fff;
    cursor:pointer;
    transition:.4s;
}

.subscribe-form button:hover{
    transform:translateY(-3px);
}

.socials{
    margin-top:50px;
}

.socials a{
    color:#fff;
    text-decoration:none;
    margin:0 15px;
    transition:.3s;
}

.socials a:hover{
    color:#c8a97e;
}

@media(max-width:768px){

    .hero h1{
        font-size:45px;
    }

    #countdown{
        font-size:22px;
    }
}

#heroVideo{
    animation: zoom 20s infinite alternate;
}

@keyframes zoom{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.15);
    }
}

#heroBackground {
    background-image: url('assets/images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

