*,
*::after,
*::before{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Perpetua Titling MT';
    src: url('fonts/PerpetuaTitlingMT-Light.woff2') format('woff2'),
        url('fonts/PerpetuaTitlingMT-Light.woff') format('woff'),
        url('fonts/PerpetuaTitlingMT-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

html{
    overflow: hidden;
}

body{
    font-family: "Inter", sans-serif;
    font-weight: 400;
    background: url("images/bg.webp") center center no-repeat #261a11;
    background-size: cover;
}

img{
    max-width: 100%;
    height: auto;
}

h1{
    font-family: 'Perpetua Titling MT';
    font-weight: 300;
}

.hide-d{
    display: none;
}

.hide-m{
    display: block;
}

.d-flex{
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
}

.hero-img,
.content-box{
    width: 50%;
}

.hero-img{
    background: url("images/desktop-bg.webp") left bottom no-repeat;
    background-size: contain;
    height: 100vh;
}

.hero-img img{
    object-fit: cover;
    height: 100%;
}

.content-box{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 5%;
    padding-right: 10%;
}

.logo{
    margin-bottom: 15px;
}

.logo img{
    max-width: 180px;
}

.logo h1{
    font-size: 32px;
    color: #f8e75f;
    margin-top: 40px;
}

.logo h1 span{
    display: block;
}

.copy p{
    font-size: 15px;
    color: #99946d;
    line-height: 1.8;
}

@media only screen and (min-width : 1824px) {
    .content-box{
        padding: 0 5%;
    }

    .logo{
        margin-bottom: 20px;
    }
    
    .logo img{
        max-width: none;
    }
    
    .logo h1{
        font-size: 50px;
        margin-top: 60px;
    }
    
    .copy p{
        font-size: 22px;
        line-height: 1.8;
    }
}

@media only screen and (max-width : 1024px) {
    .hero-img{
        width: 60%;
    }

    .content-box{
        width: 40%;
        padding: 0 4%;
    }

    .logo h1{
        font-size: 30px;
    }
    
    .copy p{
        font-size: 16px;
        line-height: 1.6;
    }
}

@media only screen and (max-width : 991px) {
    .logo img{
        max-width: 140px;
    }

    .hide-m{
        display: none;
    }

    .hide-d{
        display: block;
    }

    .d-flex{
        flex-direction: row;
        justify-content: space-between;
    }
    
    .hero-img,
    .content-box{
        width: 100%;
    }

    .hero-img {
        background-position: center bottom;
        order: 2;
        height: 80vh;
    }

    .hero-img img{
        width: 100%;
    }

    .content-box {
        margin-top: 20px;
        padding: 0 5%;
    }

    .logo h1{
        font-size: 20px;
        margin-top: 20px;
    }

    .logo h1 span{
        display: inline;
    }

    .copy p {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media only screen and (max-width : 767px) {
    .hero-img {
        height: 65vh;
    }

    .content-box {
        height: 35vh;
    }
}