/*
Theme Name: theexpoproductions
Theme URI: https://ftshopifysolutions.com/
Author: M.Shoaib Mughal
Author URI: https://ftshopifysolutions.com/
Version: 1.0
*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    background: #000;
    color: #fff;
    height: 100vh;
    overflow: hidden;
}
/* Background Image */
.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: 50% 0%;
    background-repeat: no-repeat;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: -1;
}
.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}
.content {
    max-width: 700px;
}
h1 {
    font-size: 54px;
    letter-spacing: 2px;
    color: #ffb84d;
    margin-bottom: 10px;
}
.tagline {
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: #e6e6e6;
}
.description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ccc;
}
.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}
.count h2 {
    font-size: 36px;
    color: #ffb84d;
}
.count span {
    font-size: 12px;
    color: #aaa;
}
.launching {
    margin: 20px 0;
    letter-spacing: 3px;
    color: #ffb84d;
}
div.myCustomForm p {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
div.myCustomForm p input {
    padding: 12px;
    width: 100%;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
}
form.wpcf7-form .wpcf7-response-output {
    display: inline-block;
}
div.myCustomForm p button {
    padding: 12px 20px;
    border: none;
    background: #ffb84d;
    color: #000;
    cursor: pointer;
    font-weight: 600;
    width: 150px;
}
div.myCustomForm p span.wpcf7-not-valid-tip {
    position: absolute;
    font-size: 12px;
    margin-top: 3px;
}
.footer {
    margin-top: 40px;
    font-size: 12px;
    color: #888;
}
@media screen and (max-width: 600px) {
    .container {
        height: calc(100% - 30px);
        padding: 0;
        margin: 0 auto;
    }
    .content {
        max-width: calc(100% - 30px);
    }
    h1 {
        font-size: 36px;
        letter-spacing: 2px;
        line-height: 1em;
        font-weight: 800;
    }
    div.myCustomForm p button {
        width: 180px;
    }
}