html {
    width: 100%;
    font-size: 62.5%;
    background-color: #DED1B7;
}

body {
    margin: 0;
    color: #362b2a;
    font-family: "Raleway", sans-serif, Arial, Helvetica;
    font-size: 1rem;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

header {
    position: relative;
}

.mobile-header,
.hamburger-menu {
    position: fixed;
    z-index: 99;
}

/* hamburger menu */

.hamburger-menu {
    cursor: pointer;
    top: 14px;
    left: 16px;
}

.bar1,
.bar2,
.bar3 {
    height: 2px;
    background-color: #362b2a;
    margin: 5px 0;
    border-radius: 10px;
    display: block;
}

.bar1,
.bar3 {
    width: 20px;
}

.bar2 {
    width: 13px;
}

.hamburger-menu nav {
    position: absolute;
    background-color: #efe3cc;
    box-sizing: border-box;
    padding: 20px;
    left: -30px;
    top: 40px;
    height: 360px;
    width: 180px;
    font-size: 1.7rem;
    border-radius: 0 10px 10px 0;
}

.hamburger-menu nav,
#menu-checkbox {
    display: none;
}

#menu-checkbox:checked ~ nav {
    display: block;
}

.hamburger-menu a {
    padding: 20px;
    text-decoration: none;
    color: #362b2a;
    position: relative;
    height: 25px;
}

.hamburger-menu a::after {
    content:'';
    position: absolute;
    display: block;
    height: 4px;
    width: 0;
    background-color: #DED1B7;
    bottom: 10px;
    transition: all ease-in-out 250ms;
}

.hamburger-menu a:hover::after {
    width: 75%;
}

.hamburger-menu a:hover {
    color: #7e6360;
}

.magnifying-glass {
    position: fixed;
    left: 60px;
    top: 17px;
    color: #362b2a;
    font-size: 1.6rem;
    z-index: 99;
}

.logo-cream {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #efe3cc;
    width: 100px;
    text-align: center;
}

.logo1 {
    font-size: 3.8rem;
    font-weight: 600;
    margin: 0;
    margin-block-end: 0;
    text-decoration: none;
    color: #efe3cc;
    z-index: 50;
}

.logo2 {
    font-size: 0.83rem;
    margin: 0;
    top: -7px;
    position: relative;
    text-decoration: none;
    color: #efe3cc;
    z-index: 50;
}

/* desktop header */

svg {
    filter: drop-shadow(3px 3px 2px rgb(0 0 0 / 0.4));
    position: absolute;
    top: 0;
    z-index: 2;
    max-width: 100%;
}

/* footer */

footer {
    background-color: #efe3cc;
}

.footer-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: space-evenly;
}

.footer-flex {
    padding-top: 7px;
}

footer a {
    text-decoration: none;
    color: #362b2a;
}

.socials1 a,
.socials2 a {
    padding: 0 3px;
}

.footer-nav a,
.footer-info a {
    padding: 5px;
}

.copyright {
    display: flex;
    justify-content: center;
}

.vl {
    background-color: #ded1b7;
    width: 2px;
    height: 90px;
    border-radius: 10px;
    margin: 0 10px;
    z-index: 55;
}

hr {
    border-color: #ded1b7;
    height: 0;
    border-style: solid;
    margin: 0;
}

@media only screen and (min-width: 950px) {
    .hamburger-menu nav {
        display: flex;
        background-color:#efe3cc00;
        font-size: 20px;
        font-weight: 500;
        top: 15px;
        left: 25px;
    }

    .hamburger-menu {
        position: relative;
        top: 30px;
    }

    .logo-cream {
        position: absolute;
        top: 40px;
        right: 10px;
        color: #efe3cc;
        width: 180px;
        text-align: center;
    }

    .logo1 {
        font-size: 7rem;
        font-weight: 600;
        margin: 0;
        margin-block-end: 0;
        z-index: 0;
    }
    
    .logo2 {
        font-size: 1.6rem;
        margin: 0;
        top: -7px;
        position: relative;
    }

    .mobile,
    .hamburger-menu label {
        display: none;
    }

    footer {
        font-size: 1.3rem;
        font-weight: 600;
    }

    .footer-nav {
        padding: 0 60px;
    }

    .footer-socials {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .footer-socials p {
        padding-right: 20px;
        font-weight: 500;
    }
}

@media only screen and (min-width: 600px) and (max-width: 949px) {
    .mobile,
    .hamburger-menu label {
        display: none;
    }

    .hamburger-menu {
        position: relative;
    }

    .hamburger-menu nav {
        display: flex;
        background-color: #efe3cc00;
        font-weight: 500;
        top: 10px;
        left: 15px;
        padding: 0;
    }

    .hamburger-menu a {
        padding: 15px;
    }

    .logo-cream {
        position: absolute;
        top: 31px;
        right: 10px;
        color: #efe3cc;
        width: 130px;
        text-align: center;
    }

    .logo1 {
        font-size: 5rem;
        font-weight: 600;
        margin: 0;
        margin-block-end: 0;
        z-index: 0;
    }
    
    .logo2 {
        font-size: 1.1rem;
        margin: 0;
        top: -7px;
        position: relative;
    }

    .footer-nav {
        padding: 0 60px;
    }

    .footer-socials {
        width: 300px;
    }
}

@media only screen and (max-width: 599px) {
    .desktop {
        display: none;
    }

    .header-background {
        position: fixed;
        z-index: 99;
    }

    .hamburger-menu nav {
        filter: drop-shadow(3px 3px 2px rgb(0 0 0 / 0.4));
    }

    .hamburger-menu a {
        display: block;
    }

    .footer-nav,
    .footer-info {
        display: flex;
        flex-direction: column;
    }

    .footer-socials {
        display: flex;
        flex-direction: column;
    }

    .socials1,
    .socials2 {
        padding-bottom: 0.5rem;
    }

    .footer-nav {
        padding: 0 2rem 0 3.5rem;
    }

    .footer-info {
        padding-right: 2rem;
    }
}