.html {
  font-size: 62.5%;
  display: block;
}

.none,
.hamburger__control,
.hamburger__close {
  display: none;
}

.base {
  display: block;
  background-color: #071000;
  color: #eff7e8;
  text-shadow: 1px 1px 0 #071000, -1px -1px 0 #071000, 1px -1px 0 #071000,
    -1px 1px 0 #071000;
  line-height: 1.45;
  font-size: 1.87rem;
  font-weight: 300;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  position: relative;
  padding: 0;
  margin: 0;
  box-sizing: content-box;
  height: 1000px;
}

.img {
  max-inline-size: 100%;
}

.header {
  display: block;
  height: 72px;
  padding: 10px 0;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  background-color: #071000;
}

.header__img {
  height: calc(72px - 20px);
  display: block;
}

main,
footer,
.header__nav {
  min-width: 567px;
  max-width: 662px;
  margin: 0 auto;
}

.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

menu {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: row;
  padding: 0;
  margin: 0;
  list-style: none;
}

menu li {
  margin-left: 48px;
}

nav menu {
  flex-grow: 1;
}

.hero {
  position: absolute;
  top: 72px;
  width: 100%;
  height: calc(100vh - 72px - 86px);
  z-index: -1;
}

.hero__bg {
  width: 100%;
  height: 100%;
  background-image: url("/static/images/salon.webp");
  background-size: cover;
  background-position: 85%;
  filter: grayscale(100%) contrast(1) blur(0) brightness(20%);
}

.hero::before,
.hero::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.hero::after {
  background-color: #223512;
  mix-blend-mode: darken;
}

.hero::before {
  mix-blend-mode: lighten;
}

@media (max-width: 567px) {
  .base {
    font-size: 1.5rem;
    line-height: 3;
  }

  main,
  footer,
  .header__nav {
    min-width: 0;
    width: auto;
    padding: 0 7px;
  }

  nav menu {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #071000;
  }

  .hamburger__control {
    position: fixed;
    top: calc(72px / 2 - 3px);
    right: 48px;
    font: 0 "";
  }

  #hamburger:checked + menu {
    display: block;
  }

  .hamburger {
    display: block;
    position: relative;
    height: 42px;
    width: 42px;
    z-index: 10;
  }

  nav input {
    display: block;
  }

  menu li {
    margin-top: 48px;
  }

  .hamburger__patty {
    display: block;
    background-color: #eff7e8;
    margin: 5px;
    height: 5px;
  }

  .hamburger__close {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    text-align: center;
    font-weight: bold;
    line-height: 42px;
    font-size: 20px;
  }

  .hamburger:has(~ :checked) div:not(.hamburger__close) {
    opacity: 0;
  }

  .hero__bg {
    background-image: url("/static/images/salon-sm.webp");
  }

  .hamburger:has(~ :checked) .hamburger__close {
    display: block;
  }
}

h1,
h2,
h3,
h4 {
  font-size: 1.87rem;
  font-weight: bold;
  color: #e94d95;
}

.link,
.label {
  cursor: pointer;
}

.link {
  color: #eff7e8;
  text-decoration: underline #5b8e30;
  min-block-size: 44px;
  min-inline-size: 44px;
}

.link:hover {
  color: #e73e8c;
  text-decoration-color: #e73e8c;
}

footer {
  display: grid;
  grid-template-columns: 43.5px auto 1fr;
}

footer *:not(.social) {
  grid-column-start: 2;
}

.social {
  line-height: 44px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 29px;
  grid-column: 1 / 3;
  margin-top: 14.5px;
  padding-left: 43.5px;
}

.social--insta {
  background-image: url("/static/images/instagram.svg");
}

.social--insta:hover {
  background-image: url("/static/images/instagram2.svg");
}

.social--face {
  background-image: url("/static/images/facebook.svg");
}

.social--face:hover {
  background-image: url("/static/images/facebookbg.svg");
}

.social__img {
  width: 29px;
  height: 29px;
  vertical-align: middle;
  margin-right: 14.5px;
  position: relative;
}
