* {
  margin: 0;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #fffcf8;
  font-family: "Menbere";
  color: #332d26;
}

p {
  margin-bottom: 8px;
}

header {
  display: flex;
  justify-content: right;
  align-items: center;

  background-color: #ffe0bc;
  height: 48px;
  position: fixed;
  width: 100%;
}

nav {
  margin-right: 32px;
}

.nav-link {
  font-family: "Bona Nova SC", sans-serif;
  color: #332618;
  margin-right: 24px;
  font-size: 20px;
}

.nav-link:hover {
  text-decoration: underline;
}

.hero-box {
  /* hodnoty jsou v poradi top right bottom left*/
  padding: 64px 160px 32px 160px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  column-gap: 48px;
}

.heading-primary {
  font-size: 64px;
  font-family: "Bona Nova SC", serif;
  letter-spacing: 2.5px;

  margin-bottom: 16px;
}

.cta {
  display: inline-block;
  margin-top: 32px;
  padding: 8px 16px;

  background-color: #332618;
  color: #fffcf8;

  letter-spacing: 2.5px;
  text-transform: uppercase;

  border: 1px solid #332618;
  border-radius: 5px;

  transition: 0.2s all;
}

.cta:hover {
  background-color: #ffffff;
  color: #332618;
  border: 1px solid #332618;
}

.hero-img {
  width: 100%;
}

.section-menu {
  margin-top: 48px;

  border-top: 1px solid #ffe0bc;
  padding-top: 32px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
}

.section {
  /* prvni hodnota je top a bottom, druha je left a right*/
  padding: 64px 180px;
}

.section-contact {
  background-color: #fff0de;
}