.hide-mobile {
    display: none;
}

body {
    background-color: #fff9ec;
    margin: 0;
    font-family: 'Inter';
}

.wrap {
    margin: 2em;
}

header {
    display: flex;
    justify-content: space-between;
}

nav ul {
    background: white;
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    height: 100vh;
    margin: 0;
    list-style: none;
    width: 40%;
    text-align: right;
    padding: 0em 2em;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;

    li {
        margin: 2em 0;

        &:nth-of-type(1) {
            margin-bottom: 4em;
        }

        a {
            color: black;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.5rem;

            &:hover {
                color: orangered;
            }
        }
    }
}

.open {
    transform: translateX(0%);
}

h1, p {
    text-align: center;
}

h1 {
    margin-top: 3em;

    img {
        display: block;
        margin: 0 auto;
    }
}

p {
    font-size: 1.2rem;
    line-height: 1.5;
}

a.primary-cta {
    background: #FFA800;
    padding: 1em;
    width: 100%;
    box-sizing: border-box;
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    color: black;
    border-radius: .4em;
    margin-top: 2em;
}

.cat-container {
    position: relative;

    .cat {
        height: 500px;
        width: 100%;

        img {
            width: 70%;
            position: absolute;
            margin-top: 3em;
            left: 50%;
            transform: translateX(-50%);
        }
    }
    
    .inner-circle, .outer-circle {
        position: absolute;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 0;
    }
    
    .inner-circle {
        height: 300px;
        width: 300px;
        background: #f4e4c1;
        z-index: -1;
    }

    .outer-circle {
        height: 500px;
        width: 500px;
        background: white;
        z-index: -2;
    }
}

@media (min-width: 800px) {
    .wrap {
        margin: 0em 4em;
    }

    .hide-desktop {
        display: none;
    }

    .hide-mobile {
        display: block;
    }

    .header-left {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1em;

        .divider {
            height: 2em;
            width: 2px;
            background: black;
        }

        a {
            text-decoration: none;
            color: black;
            font-size: 1.25rem;
        }
    }

    nav ul {
            position: unset;
            background: none;
            display: flex;
            gap: 2em;
            height: auto;
            width: auto;
            transform: translateX(0%);

            li a {
                font-size: 1.25rem;
            }
        }
}

@media (min-width: 1000px) {
    h1, p {
        text-align: left;
    }

    h1 img {
        margin: 0;
    }

    main {
        width: 50%;
    }

    .cat-container {
        position: absolute;
        z-index: -1;
        width: 50%;
        top: 20%;
        right: 0;

        .inner-circle {
            height: 500px;
            width: 500px;
        }

        .outer-circle {
            height: 1000px;
            width: 1000px;
        }
    }
}

@media (min-width: 1000px) {
    .wrap {
        margin: 0em auto;
        padding: 0 2em;
        max-width: 1200px;
    }

    a.primary-cta {
        display: inline-block;
        width: auto;
        padding: 1em 2em;
    }

    .cat img {
        max-width: 400px;
    }
}