@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;700;800&display=swap");

:root {
  --primary-color: #30343f;
  --white: #ffffff;
  --black: #111111;
  --gray0: #857b7b;
  --gray1: #4f4f4f;
  --gray2: #30343f;
  --red1: #ff3333;
  --blue1: #1d84b5;
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-bold: 700;
  --font-extraBold: 800;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  user-select: none;
}

body {
  font-family: "Raleway", sans-serif;
  color: var(--black);
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.text--upper {
  text-transform: uppercase;
}

/* Header/Menu */

.header {
  height: 9em;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.logo {
  height: 65px;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
}

.menu {
  height: 1.875em;
  line-height: 1.875em;
}

.menu__items {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu__item {
  padding: 0 0.625em;
}

.menu__link {
  color: var(--white);
  font-weight: var(--font-medium);
  font-size: 1.25em;
  padding: 0.31em;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: default;
}

.menu__link:hover {
  color: var(--primary-color);
  background-color: var(--white);
}



/* Main section */

.main-shop {
  width: 100%;
  padding: var(--spacing-36) auto;
}

.item-gallery {
  max-width: var(--mw-1000);
  margin: 0 auto;
  padding: var(--spacing-8);
  display: grid;
  gap: 1rem;
  /* grid-auto-rows: 22rem; */
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
}


/* Footer */

.footer {
    width: 100%;
    height: 21.25em;
    background-color: var(--primary-color);
    margin-top: 4.25em;
    display: flex;
    flex-direction: column;
  }
  
  .footer__content {
    max-width: 76.25em;
    width: 90%;
    margin: 0 auto;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  
  .footer-menu__items {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
  }
  
  .footer-menu__link {
    font-weight: var(--font-medium);
    font-size: 1.25em;
    color: var(--white);
    padding: 0.31em;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: default;
  }
  
  .footer-menu__link:hover {
    color: var(--primary-color);
    background-color: var(--white);
  }
  
  .footer__image {
    height: 7.5em;
    overflow: hidden;
    ;
  }
  
  .footer__image img {
    width: 100%;
  }
  
  .footer__copyright {
    font-weight: var(--font-medium);
    font-size: 1.25em;
    color: var(--white);
    text-align: center;
    padding: 1em 0;
  }
  
  