* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  color: #222;
}

body {
  background-color: #f5f1e8;
}

h1 {
  font-size: 99px;
}

.cicrle h1 {
  font-size: 2rem;
  margin: 1.5rem 0 1rem;
  text-align: center;
}

h2 {
  font-size: 1.5rem;
  margin: 1.25rem 0 0.75rem;
}

h3 {
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem;
}

p {
  margin-bottom: 1rem;
}

.image-nav {
  padding-right: 8px;
  width: 175px;
}

button {
  border-radius: 61px;
  border: none;
  padding: 20px;
  background-color: #6e1e24;
  color: white;
  font-size: 24px;
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.2);
  height: 90px;
  width: 292px;
}

.headline {
  margin: 5rem;
  display: flex;
  justify-content: center;
  padding-top: 5rem;
}

.cicrle {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  background-color: #e2e0dc;
  border-radius: 30rem 30rem /6rem 6rem;
}

.bild {
  transform: scale(1.05);
  position: relative;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

:root {
  --fg: #222;
  --muted: #555;
  --rule: #ddd;
  --accent: #444;
  --bg: #fff;
  --page: #fafafa;
}

.text,
.speisekarte {
  max-width: 980px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 4rem 4rem;
  background: url(img/woodtex2.png);
  padding: 2rem;
}

.bg {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 12px;
}

footer {
  background-color: #2b2b2b;
}

.footer-menu {
  padding: 2%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 510px;
  flex-wrap: wrap;
}

.footerimg {
  width: 340px;
  height: auto;
}

.links {
  display: flex;
  flex-direction: column;
  list-style: none;
  transition: 0.5s;
}

.links a {
  text-decoration: none;
  color: white;
  font-size: 2rem;
}

.links a:hover {
  transition: 20ms;
  color: #7c2a32;
  transform: scale(1.05);
  text-decoration: underline;
}

.image-nav {
  padding-right: 8px;
  width: 175px;
}

.navigator {
  position: absolute;
  top: 31px;
  left: 50%;
  transform: translateX(-50%);
  height: 63px;
  max-width: 696px;
  width: 90%;
  padding: 10px;
  border-radius: 114px;
  background-color: #2b2b2b;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  z-index: 120;
  gap: 8px;
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.navigator a {
  text-decoration: none;
  color: #f5f1e8;
  display: inline-block;
  padding: 6px 10px;
}

.navigator li:hover {
  transition: 120ms;
  color: #7c2a32;
  transform: scale(1.05);
  text-decoration: underline;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 35px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 300;
}

.hamburger div {
  width: 100%;
  height: 4px;
  background-color: #2b2b2b;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.hamburger.open div:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  background-color: #f5f1e8;
}
.hamburger.open div:nth-child(2) {
  opacity: 0;
}
.hamburger.open div:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  background-color: #f5f1e8;
}

.close-menu {
  position: sticky;
  top: 20px;
  align-self: flex-end;
  margin-right: 20px;
  font-size: 3rem;
  color: #f5f1e8;
  cursor: pointer;
  z-index: 400;
  display: none;
}

.navigator.active .close-menu {
  display: block;
}

@media (max-width: 1024px) {
  .footer-menu {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .navigator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 150px 20px 20px 20px;
    background-color: #2b2b2b;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1);
    transform: translateX(-100%);
    z-index: 250;
  }

  .navigator.active {
    transform: translateX(0);
  }

  .navigator .image-nav {
    width: 240px;
    margin-bottom: 30px;
  }

  .navigator li a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 2rem;
    color: #f5f1e8;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  h1 {
    font-size: 65px;
  }

  .cicrle h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  a {
    word-break: break-word;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 26px;
  }
  p {
    font-size: 16px;
  }

  button {
    width: 150px;
    height: 50px;
    font-size: 16px;
  }
}
