@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/roboto-v51-latin_latin-ext-regular.woff2') format('woff2'); 
}

body {
  background-color: white;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  font-size: 24px;
  box-sizing: border-box;
  padding: 16px;
}
header a.menu-toggle {
  display: block;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
header a.menu-toggle img {
  width: 100%;
  height: 100%;
}
header .menu-main-navigation-container {
  display: none;
}
header a, header a:visited {
  font-weight: bold;
  color: black;
  text-decoration: none;
}
header ul li.current-menu-item a {
  border-bottom: 1px solid black;
}
header .menu-home-container ul li.current-menu-item a {
  border-bottom: none;
}

header ul {
  margin: 0;
  padding: 0;
  display: flex;
  column-gap: 32px;
}
header ul li {
  list-style: none;
  text-transform: uppercase;
}
header .social {
  display: none;
}
header .social ul li a {
  display: block;
}
header .social ul li a:hover {
  border-bottom: none;
}
header .social ul li a img {
  width: 30px;
  height: 30px;
  display: block;
}

header.menu-open .menu-main-navigation-container {
  display: block;
  width: 100%;
  height: calc(100vh - (2 * 62px));
  padding-top: 32px;
  box-sizing: border-box;
}
header.menu-open .menu-main-navigation-container ul {
  flex-direction: column;
  row-gap: 32px;
}
header.menu-open .social {
  display: block;
}
header.menu-open .social ul {
  gap: 16px;
}

#wpadminbar {
  display: fixed;
}
header.logged {
  top: 46px;
}
header.logged.menu-open .menu-main-navigation-container {
  height: calc(100vh - (2 * 62px) - 46px);
}


main {
  max-width: 720px;
  margin: calc(6vh + 56px) auto 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6,p {
  margin-top: 0;
}

a {
  color: black;
}


@media screen and (min-width: 1024px) {

  header {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    font-size: 20px;
    gap: 24px;
    padding: 16px 64px 16px 16px;
  }
  header a.menu-toggle {
    display: none;
  }
  header .menu-main-navigation-container {
    display: block;
  }
  header a:hover {
    border-bottom: 1px solid black;
  }
  header .menu-home-container a:hover {
    border-bottom: none;
  }

  header .social {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
  }
  header.logged {
    top: 32px;
  }
  header.logged .social {
    top: 16px;
  }
  header .social ul {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
  }

  main {
    margin: calc(15vh + 56px) auto 0 auto;
  }
  .start main {
    margin: calc(15vh + 56px) 0 0 0;
    position: relative;
    max-width: 560px;
  }
  .start .bg {
    pointer-events: none;
    z-index:2;
    position: absolute;
    top: 130px;
    right: 1%;
    width: 100%;
    height: 300vh;
    background-color: transparent;
    background-image: url("/wp-content/themes/hanno/img/hanno_vinyl_s.png");
    background-size: 45vw;
    background-repeat: no-repeat;
    background-position: top right;
  }
}