@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Tangerine:wght@400;700&display=swap');

* {
    padding: 0px;
    margin: 0px;
}

body {
    font-family: "Playfair";
    background-color: #f8f6f1;
}

::selection {
    background-color: #b1b0ac;
}

.increase-size-on-hover {
    transition: transform 0.2s ease-in-out;
}

.increase-size-on-hover:hover {
    transform: scale(1.1);
}

.underline-text-on-hover::after {
    content: "";
    position: absolute;
    background-color: #100c0c;
    height: 2px;
    width: 0%;
    left: 0px;
    bottom: 10px;
    transition: all 0.5s ease-in-out;
}

.underline-text-on-hover:hover::after {
    width: 100%;
}

.underline-text-on-hover-color-white::after {
    content: "";
    position: absolute;
    background-color: #f8f6f1;
    height: 2px;
    width: 0%;
    left: 0px;
    bottom: 10px;
    transition: all 0.5s ease-in-out;
    z-index: 10;
}

.underline-text-on-hover-color-white:hover::after {
    width: 100%;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    z-index: 1;
}

.logo {
    font-family: "Tangerine";
    font-size: 50px;
    font-weight: bolder;
    text-decoration: none;
    color: #100c0c;
    margin: 20px;
    z-index: inherit;
}

.menu-button {
    background-color: transparent;
    border: none;
    width: 50px;
    height: 50px;
    margin: 20px;
    z-index: inherit;
}

.menu-button-image {
    width: 100%;
    height: 100%;
    z-index: inherit;
}

.grid-container {
    display: grid;
    grid-template: "item-1 item-2";
}

@media (max-width: 750px) {
    .grid-container {
        display: grid;
        grid-template: "item-1" "item-2";
    }
}

.item-1 {
    grid-area: item-1;
    margin: 10%;
    border: #100c0c solid 1px;
    border-radius: 8px;
    padding: 25px;
}

.item-1 > img {
    width: 35vw;
}

#item-1-product-name {
    font-size: xx-large;
}

#item-1-product-price {
    font-size: x-large;
}

.item-2 {
    grid-area: item-2;   
    margin: 10%;
    border: #100c0c solid 1px;
    border-radius: 8px;
    padding: 25px;
}

.item-2 > img {
    width: 35vw;
}

#item-2-product-name {
    font-size: xx-large;
}

#item-2-product-price {
    font-size: x-large;
}

@media (max-width: 750px) {
    .item-1 > img {
        width: 70vw;
    }  
    .item-2 > img {
        width: 70vw;
    }    
}

.dropdown {
    color: #100c0c;
    background-color: #fff;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    box-shadow: rgba(213, 217, 217, 0.5) 0 2px 5px 0;
    font-size: 13px;
    height: 30px;
    text-align: center;
}

.dropdown {
    cursor: pointer;
}

.navigation-menu {
    background-color: #100c0c;
    position: fixed;
    transition: left 0.5s ease-out;
    width: 100%;
    height: 100%;
    top: 0px;
    z-index: 3;
    left: 100%;
}

.navigation-menu-div {
    top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-end;
    z-index: inherit;
    height: 100%;
}

.navigation-menu-slogan {
    position: absolute;
    font-family: "Tangerine";
    font-size: 70px;
    color: #f8f6f1;
    text-align: center;
    margin-right: 20%;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
}

@media (max-width: 1000px) {
    .navigation-menu-slogan {
        font-size: 50px;
    }
}

@media (max-width: 750px) {
    .navigation-menu-slogan {
        font-size: 30px;
        left: 30%;
    }
}

@media (max-width: 600px) {
    .navigation-menu-slogan {
        display: none;
    }
}

.navigation-menu-div > a {
    position: relative;
    margin-right: 5%;
    text-align: right;
    color: #f8f6f1;
    font-size: 50px;
    text-decoration: none;
    z-index: inherit;
}

.menu-close-button {
    position: absolute;
    background-color: transparent;
    border: none;
    z-index: inherit;
    width: 40px;
    margin: 20px;
}

.menu-close-button > img {
    width: 100%;
    height: 100%;
    z-index: inherit;
}