body {
  background-color: white;
  font-family: "Roboto", sans-serif;
  color: black;
}

a {
  color: inherit; /* arver farven fra omkringliggende tekst */
  text-decoration: none;
}

li {
  list-style: none;
  margin-top: 1em;
  margin-left: 0;
}

/* nav mobil */

.nav_points {
  display: flex;
  justify-content: space-between; /* logo til venstre, menu/burger til højre */
  align-items: center; /* vigtig: vertikalt centreret på samme linje */
  padding: 10px 20px;
  background-color: #fff;
  flex-wrap: nowrap; /* sikrer, at børn ikke rykkes ned */
}

nav.active .menu {
  display: block;
  position: absolute;
  top: 94px;
  margin-top: 1em;
  margin-left: 0;
  width: 100%;
  height: 30vh;
  background-color: white;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  z-index: 1000;
}

button:hover {
  transform: scale(1.03);
}

.burger {
  display: flex; /* Flex for at stable linjerne */
  flex-direction: column; /* lodret stabling */
  gap: 5px; /* mellemrum mellem linjerne */
  border: none;
  background: none;
  cursor: pointer;
  margin-left: auto;
}

.burger .line {
  display: block;
  width: 25px; /* bredde på linjerne */
  height: 3px; /* tykkelse */
  background-color: #000; /* sort farve */
  border-radius: 2px; /* valgfrit, bløde kanter */
}

.menu {
  display: none;
  list-style: none;
}

.logo_white_index {
  width: 20%;
  margin-left: 2em;
  margin-top: 1em;
}

.calendly-inline-widget {
  margin-bottom: 12em;
}

/* footer */

footer {
  margin-top: 6em;
  margin-bottom: 4em;
}

.streg_1 {
  height: 1px; /* tykkelse */
  width: 90%; /* halvvejs ind på skærmen */
  background-color: black;
  margin-left: 2em;
  margin-bottom: 1em;
}

.tekst_footer {
  margin-left: 2em;
  width: 50%;
  line-height: 40px;

  font-size: 0.92em;
}

.footer_content {
  display: flex;
}

.logo_footer {
  margin-left: 8em;
  margin-top: 1em;
  height: auto;
}

@media (max-width: 850px) {
  .logo_footer {
    width: 90px;
  }
}

.streg_2 {
  height: 1px; /* tykkelse */
  width: 90%; /* halvvejs ind på skærmen */
  background-color: black;
  margin-left: 2em;
  margin-right: 2em;
  margin-bottom: 4em;
  margin-top: 2em;
}

.footer_menu {
  display: flex;
  gap: 25px;
}

#book_a_call {
  background-color: #000000; /* black background */
  color: white; /* tekst color */
  border-radius: 30px; /* valgfrit, for afrundede kanter */
  padding: 5px 20px;
  margin-right: 1.5em;
  font-size: 14px;
}

#book_a_call:hover {
  background-color: rgba(
    215,
    190,
    133,
    1
  ); /* eksempel: lilla baggrund ved hover */
  color: #000000; /* evt. ændre tekstfarve, hvis du vil */
}

@media (width>=850px) {
  .menu {
    display: flex;
    gap: 40px;
  }

  .nav_points {
    display: flex; /* Flex container */
    justify-content: space-between; /* logo til venstre, menu + burger til højre */
    align-items: center; /* vertikal centering */
    padding: 10px 20px;
    background-color: #fff; /* valgfri baggrund */
    position: relative;
    font-size: 1.2em;
    margin-right: 2em;
  }

  /* hover effekt på nav */

  .menu li #book_a_call {
    background-color: #000000; /* black background */
    color: white; /* tekst color */
    border-radius: 30px; /* valgfrit, for afrundede kanter */
    padding: 10px 20px;
    font-size: 18px;
  }
  .menu li #book_a_call:hover {
    background-color: rgba(
      215,
      190,
      133,
      1
    ); /* eksempel: lilla baggrund ved hover */
    color: #000000; /* evt. ændre tekstfarve, hvis du vil */
  }
  .menu li :hover {
    color: rgba(215, 190, 133, 1);
  }

  /* navigtion */

  .logo_white_index {
    width: 25%;
    margin-left: 2em;
    margin-top: 1em;
  }

  /* font */
  .roboto-medium {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500; /* Medium */
    font-style: normal;
    font-variation-settings: "wdth" 100; /* standard bredde */
  }

  .burger {
    display: none;
  }

  /* footer */

  .streg_1 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4em;
  }

  .streg_2 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 6em;
  }

  .tekst_footer {
    font-size: 26px;
    font-weight: 350;
    margin-left: 2.8em;
  }
  .logo_footer {
    display: block; /* vigtigt for centering */
    margin: 0 auto; /* centrerer logo */
    width: 200px; /* sæt ønsket størrelse */
    height: 150px; /* beregnes automatisk */
    max-width: 100%; /* sikrer at det ikke overskrider container */
  }

  .footer_menu {
    list-style: none; /* fjern bullets */
    display: flex; /* gør listen til flex container */
    justify-content: center; /* centrer items horisontalt */
    gap: 2em; /* afstand mellem menupunkterne */
    padding: 0; /* fjern indbygget padding */
    margin: 0; /* fjern margin */
    font-size: 20px;
    font-weight: 450;
  }
}
