@font-face {
    font-family: 'Dosis';
    src: url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Dosis";
    src: url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap') format("truetype");
    font-weight: bold;
    font-style: normal;
}

*, *::before, *::after {
    box-sizing: border-box;
    border-style: none;
    list-style: none;
    margin: 0;
    padding: 0;
    text-decoration: none;
    /* margin-top: 10px; */
}
  
:root {
    --theme-color-black: #333333; /* rgba(51, 51, 51, 1) */
    --theme-color-brown: #423A3A; 
    --theme-color-red: #CD3A24;
    --theme-color-white: #FEFFFF; /* rgba(254, 255, 255, 1) */
}
  
/* ---------- MAIN BODY DECLERATIONS ---------- */

html, body {
    background-color: var(--theme-color-white);
    font-family: "Dosis";
    font-size: 14px;
    height: 100%;
    width: 100%;
}

input {
    font-family: 'Dosis';
}

.mobile-container {
    margin: 0 auto;
    max-width: 500px;
    min-width: 300px;
}

.hero-image-desktop {
    display: none;
}

/* ---------- HERO BANNER DECLERATIONS ---------- */
.hero-banner {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.hero-banner .logo-wrapper {
    /* height: 70px; */
    /* margin: 0 auto; */
    /*padding: 1rem 0;*/
    width: auto;
}
    
    .logo-wrapper img {
        display: block;
        height: 50px;
        margin: 0 auto;
        width: auto;
    }



.hero-banner .hero-image {
    background-image: url(12b.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 376px;
    width: 100%;
    clip-path: polygon(0 12%, 100% 0, 100% 93%, 0% 100%);
    transition: background 0.5s ease-in-out;
}


/* ---------- TEXT INFO DECLERATIONS ---------- */
.text-info {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    gap: 20px;
    margin-top: 30px;
}

.text-info span{
    color: #ff6600;
}

    .text-info > * {
        /* padding: 0 2.5rem 1rem; */
    }



    .text-info h2 {
        /* font-size: 50px; */
        font-weight: bold;
         /*line-height: 50px; */
        color: var(--theme-color-brown);
        letter-spacing: 5px;
        text-transform: uppercase;
    }

    .text-info p {
        color: var(--theme-color-black);
        line-height: 24px;
    }

    .text-info .email-signup {
        margin: 1rem 0 6rem;
        position: relative;
        width: 100%;
    }
    
        .email-signup .email-input {
            border: 1px solid rgba(51, 51, 51, .7);
            border-radius: 3px;
            padding: 1rem 1.5rem;
            opacity: .5;
            width: 100%;
        }

        .email-signup .email-input:focus {
            background-color: var(--theme-color-white);
            outline: 2px solid var(--theme-color-black);
            opacity: 1;
        }

        .email-signup .email-submit {
            background-color: var(--theme-color-black);
            border-bottom: 1px solid var(--theme-color-black);
            border-radius: 2px;
            color: var(--theme-color-white);
            cursor: pointer;
            font-weight: bold;
            opacity: 1;
            padding: 1rem 1.5rem;
            position: absolute;
            right: 0;
            margin-right: 2.5rem;
            z-index: 10;
        }
        
        
        .countdown-container {
            display: flex;
            gap: 20px;
        }
        .single-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: fit-content;
            height: fit-content;
            color: var(--theme-color-black);
            padding: 10px;
            gap:1rem;
            font-size: smaller;
            text-align: center;
        }

        .digit-container {
            background-color: #333A2F;
            color: #EBEDDF;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
            font-size: 24px;
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .form-section {
            margin-top: 2rem;
        }


        .forms{
            display: flex;
            flex-direction: column;
            height: fit-content;
            color: var(--theme-color-black);
            font-size: small;
            margin-top: 1rem;
        }

        label {
            width: fit-content !important;
        }

        .form-group{
            display: flex;
            gap: 5px;
            align-items: center;
        }

        

        button {
            padding: 10px 15px;
            background-color:#ff6600;
            color: white;
            border-radius: 10px;
            width: 80%;
        }

        h3 {
            margin-bottom: 10px;
        }

        button:hover{
            background-color:#CD3A24;
        }

        input{
            padding: 10px;
            border-radius: 8px;
            border: 1px solid #ccc;
            font-size: 16px;
            width: 100%;
            max-width: 300px;
            margin-bottom: 10px;
        }
        input::placeholder {
            color: #999;
        }
        

@media only screen and (min-width: 768px) {
    body {
        background-image: url(https://assets.codepen.io/6060109/destop-bg.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        flex-direction: row;
        height: 160vh;
    }

    main {
        display: flex;
        flex-direction: column;
        /* height: inherit; */
        max-width: 100%;
        margin: 0 auto;
        padding-left: 3.5rem;
    }

    .mobile-container {
        width: 45vw;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .hero-banner .logo-wrapper {
        margin-left: 3.5rem;
        width: 100%;
        display: flex;
        align-items: start;
        flex-direction: column;
        margin-top: 5pc;
    }
        .logo-wrapper img {
            margin: 0 0 0;
            padding-left: 2.5rem;
            height: 120px;
        }

    .hero-image {
        display: none;
    }

    .text-info {
        text-align: left;
        align-items: start;
    }
    
        .text-info h2 {
            font-size: 2.5rem;
            letter-spacing: 1px;
        }

        .text-info p {
            font-size: 16px;
        }

        .text-info input {
            font-size: 16px;
        }
  
        .text-info .email-signup {
            margin: 1rem 0 7rem;
        }

    .hero-image-desktop {
        display: block;
        height: 100%;
        width: 55vw;
    }

    .hero-image-desktop img {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
        height: 100%;
        object-fit: cover;
        width: 55vw;
        position: fixed;
        object-position: center center;
    }
  
   
}

@media(max-width: 500px){
    .email-signup .email-submit {
        border-bottom: 2px solid var(--theme-color-black);
    }
    .text-info .email-signup  {
        justify-content: center;
    }
    .countdown-container {
        justify-content: center;
        gap:0;
    }
    .logo-wrapper{
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    }

    .logo-wrapper img{
        height: 120px;
    }

    .hero-banner .hero-image {
        margin-top: 50px;
        
    }

    .text-info p{
        width: 80vw;
        font-size: 15px;
    }
    
    h2 {
        font-size: 50px;
        line-height: 50px;
        letter-spacing: -1px !important;
    }

    h3 {
        font-size: 30px;
    }

    .form-section p {
        text-align: center;
        width: 100vw;
        padding: 0 20px;
    }

    .form-section {
        align-items: center;
        justify-content: center;
    }

    .form-section .form-group {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    label {
        display: none;
    }

    button {
        width: 100%;
        margin-top: 10px;
    }

}