:root
{
    /* Brand colors */
    --color-primary: #8F9980;
    /* Maybe colors: #7fa06b */
    --color-forest: #223326;
    --color-cream: #F7F3EC;
    --color-beige: #EFE7DB;
    --color-olive: #B7B8A5;
    --color-stone: #D9D2C5;
    --color-white: #FFFFFF;
    --color-charcoal: #2C2C2C;

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Manrope', Arial, sans-serif;

    /* Layout */
    --container-width: 1300px;
    --section-space: 40px;
}

*,
*::before,
*::after
{
    box-sizing: border-box;
    max-width: 100%;
    height: auto;
}

html
{
    scroll-behavior: smooth;
}

body
{
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-forest);
    background-color: var(--color-cream);
}

img
{
    display: block;
    max-width: 100%;
    height: auto;
}

a
{
    color: inherit;
    text-decoration: none;
}

ul
{
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
p
{
    margin: 0;
    line-height: 1.2;
}

p{
    margin-bottom: 30px;
}

.container
{
    width: var(--container-width);
    margin-inline: auto;
}

main .container,
footer .container{
    padding: 0 30px 100px;
}

.visually_hidden
{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.content{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    min-height: 900px;
    width: 100%;
    background-color: #EFE7DB;
    background-image: url('../images/coming_soon_bg_mobile.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content img{
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: 200px;
    margin-bottom: 30px;
}

.content h1{
    font-size: 45px;
    font-weight: 400;
    color: #223326;
    font-family: var(--font-serif);
    margin: 0;
    text-align: center;
    letter-spacing: 20px;
}

.content h1 span{
    font-size: 35px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 25px;
    display: block;
}

.content h1 span::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 15%;
    height: 3px;
    background-color: #223326;
}

.content p{
    font-size: 16px;
    font-weight: 700;
    color: #223326;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 40%;
    text-align: center;
}

.socials{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    grid-gap: 10px;
    gap: 10px;
    margin-top: 10px;
}

.socials h2{
    width: 100%;
    text-align: center;
    font-size: 36px;
}

.socials a img{
    max-width: 60px;
    filter: brightness(1000);
    width: 30px;
}

.site_footer
{
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 30px;
}

.site_footer_copyright
{
    margin: 0;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@media screen and (min-width:769px){

    .content{
        background-image: url('../images/coming_soon_bg.webp');
    }

    .content h1{
        font-size: 80px;
    }

    .content h1 span{
        font-size: 65px;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .content p{
        font-size: 24px;
    }
}

@media screen and (min-width:1025px){
    .content h1{
        font-size: 120px;
    }

    .content h1 span{
        font-size: 90px;
    }

    .content p{
        font-size: 36px;
    }
}