/* fonte 
Overskrift - Noto Serif Display:
font-family: 'Noto Serif Display', serif;

Brødtekst - Houschka Pro Medium:
font-family: houschka-pro, sans-serif;
font-weight: 500;
font-style: normal;

Andre tykkelser af brødtekst:
Houschka Pro Thin:
font-family: houschka-pro, sans-serif;
font-weight: 200;
font-style: normal;

Houschka Pro Light:
font-family: houschka-pro, sans-serif;
font-weight: 300;
font-style: normal;

Houschka Pro DemiBold:
font-family: houschka-pro, sans-serif;
font-weight: 600;
font-style: normal;

Houschka Pro Bold:
font-family: houschka-pro, sans-serif;
font-weight: 700;
font-style: normal;

Houschka Pro ExtraBold:
font-family: houschka-pro, sans-serif;
font-weight: 800;
font-style: normal;

*/


:root {
	/* farver */
  --white: #F9F9F9;
	--black: #271F16;
	--lightblue: #DFE7F0;
	--blue: #A1ABC3; 
	--yellow: #F6D877;
	--price: #888888;
	--lightgrey: #E8E8E8;

  }

  * {
	  margin: 0;
	  padding: 0;
  }

  html {
	  background-color: var(--white);
	  margin: auto;
  }


  /* typografi */

  h1 {
	  color: var(--black);
	  font-family: 'Noto Serif Display', serif;
	  text-align: center;
	  font-weight: lighter;
	  font-size: 2.5rem;
  }

  h2 {
	color: var(--black);
	font-family: 'Noto Serif Display', serif;
	text-align: center;
	font-weight: lighter;
  }

  h3 {
	color: var(--black);
	font-family: houschka-pro, sans-serif;
	font-weight: 500;
	font-style: normal;
  }

  h4 {
    color: var(--black);
    font-family: houschka-pro, sans-serif;
    font-weight: 600;
    font-style: normal;
    line-height: 2.3rem;
    font-size: 1.1rem;
  }
  
  h5 {
    color: var(--price);
    font-family: houschka-pro, sans-serif;
    font-weight: 500;
    font-style: normal;
  }

  p {
	font-family: houschka-pro, sans-serif;
	font-weight: 500;
	font-style: normal;
  }

    /* HEADER */

  header {
	height: 200px;
	margin: 0% 7%;
}

header a {
  font-size: 0.8rem;
  text-decoration: none;
  justify-content: space-between;
}

.cart {
  display: flex;
  justify-content:  flex-end;
  padding-right: 5%;
  padding-top: 1.3%;
}

.cart a {
	padding-right: 1%;
}

.cart span {
  font-family: houschka-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0% 5%;
}

.webshop {
  padding-top: 4%;
}

.galleri {
  padding-top: 4%;
}

.logohead {
  width: 13rem;
  z-index: 1;
  margin-top: -1.5rem;
}

.om {
  padding-top: 4%;
}

.kontakt {
  padding-top: 4%;
} 

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-family: houschka-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
}

  /* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.webshop:hover .dropdown-content {display: block;}

/* Show the dropdown menu on hover */
.galleri:hover .dropdown-content {display: block;}

.overskrift_kontakt {
  margin: 5% 0 7%;
}

/*Kontaktformula*/

#kontakt {
	background-color: #E8E8E8;
}

.kontakt_row {
	display: flex;
  justify-content: center;
  width: 100%;
}

.container2 {
	font-family: houschka-pro, sans-serif;
	font-weight: 500;
	font-style: normal;
  padding: 2% 0;
}

.bum {
	width: 100%;
  display: flex;
  justify-content: center;
}

   /* MEDIA RULES TIL COMPUTER */
  @media only screen and (min-width: 600px) {
    #mobil {
      display: none;
      }
        /* MAIN */
      /*Kontaktformula*/
    #kontakt {
      background-color: #E8E8E8;
    }

    .kontakt_row {
      display: flex;
      justify-content: center;
      width: 100%;
    }

    .container2 {
      font-family: houschka-pro, sans-serif;
      font-weight: 500;
      font-style: normal;
      padding: 2% 0;
    }

    .bum {
      width: 100%;
      display: flex;
      justify-content: center;
    }

      /*Kode hentet fra https://www.w3schools.com/howto/howto_css_contact_form.asp */

    /* Felter styles - OBS input type text og submit gælder også for Nyhedsbrev */
    input[type=text], input[type=submit], #navn, #emne  {
      padding: 12px;
      display: inline-block;
      border: transparent;
      width: 50%;
      border-bottom: 1px solid grey;
    }

    input[type=text],  #besked {
      background-color: transparent;
      border-bottom: 1px solid grey;
    }

    #navn, #emne, #mail {
      width: 250px;
    }

    label {
      padding-bottom: 15%;
    }

    input[type=text], #emne {
      background-color: transparent;
      border-bottom: 1px solid grey;
    }

    /* Send besked knappen styles for kontaktformular + nyhedsbrev */
    input[type=submit] {
      background-color: var(--blue);
      color: white;
      border: none;
      display: flex;
    }

    /*Send besked knap styles kun for kontaktformular*/
    .container2 input[type=submit] {
      padding: 12px;
      margin: 8px 0;
      display: inline-block;
      border: transparent;
      width: 25%;
      margin: 0 7%;
    }


    input[type=submit]:hover {
      opacity: 0.8;
    }

    label p {
      margin: 2% 7% 1% 7%;
    }

    #besked {
      width: 90%;
      margin: 0 7%;
    }

    /*Mapbox*/

    .maptitle {
      text-align: left;
      margin: 7% 7% 0 7%;
    }

    .map{
        overflow:hidden;
        padding-bottom:56.25%;
        position:relative;
        height:0;
        margin: 1% 7%;
    }

    .map iframe{
        left:0;
        top:0;
        height:65%;
        width: 100%;
        position:absolute;
    }

    /* Flexbox Nyhedsbrev */

    .nyhedsbrev {
      width: 80%;
      display: flex;
      margin: 2% 7%;
    }

    .nyhed1 {
    width:70%;
    }

    .nyhed2 {
    width:70%;
    }

    /* Foto Nyhedsbrev */
    .kopfoto{
      width: 80%;
    }

    /* Add some padding to containers */
    .container {
    padding: 20px;
    }

    .container p {
    text-align: center;
    margin: 7% 12%;
    }

    /*Levering og returnering*/

    .levering_row {
      display: flex;
      width: 90%;
      margin: 07%;
    }

    #levering p {
      width:80%;
      padding: 5%;
    }

    .flex2 {
      display: none;
      visibility: hidden;
    }

    /* MAIN SLUT */
  
        /* FOOTER */
  
    footer {
      background-image: url('../images/baggrund2.png');
      background-repeat: no-repeat;
      height: 600px;
    }
    
    #footer {
      display: flex;
      flex-direction: row;
      justify-content: center;
      justify-content: space-around;
      margin-left: 12%;
    }
    
    .links {
      display: flex;
      flex-direction: column;
      color: var(--white);
      width: 33%;
      margin-top: 20rem;
    }
    
    .links a {
      color: var(--white);
      text-decoration: none;
      line-height: 2rem;
    }
    
    .logofoot {
      width: 33%;
      margin-top: 20rem;
    }
    
    .billede {
      width: 15rem;
      text-align: center;
    }
    
    .some {
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      justify-content: space-between;
      align-items: center;
      width: 33%;
      margin-top: 20rem;
    }
  
    #copyright{
        padding-top: 5.5%;
        text-align: center;
        color: var(--lightgrey);
        font-size: 0.5rem;
    }
  }

   /* MEDIA RULES TIL MOBIL */
  @media only screen and (max-width: 600px) {
    html {
      margin: 0 auto;
    }
  
    #com {
      display: none;
      visibility: hidden;
    }
  
    /* HEADER */
    #mobil {
      display: visible;
      background-color: var(--white);
    }
  
    .head {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      padding-top: 7%;
    }
  
    #menuikon {
      display: flex;
      justify-content: flex-start;
      width: 20%;
    }
  
    .logohead2 {
      display: flex;
      justify-content: center;
      width: 60%;
    }
  
    .cart2 {
      display: flex;
      justify-content: flex-end;
      width: 20%;
      margin-right: -2%;
    }

    .cart2 span {
      font-family: houschka-pro, sans-serif;
      font-weight: 500;
      font-style: normal;
    }
  
      /* The Overlay (background) */
    .overlay {
        height: 100%;
        width: 0;
        position: fixed; 
        z-index: 1; 
        left: 0;
        top: 0;
        background-color: var(--white); 
        overflow-x: hidden; 
        transition: 0.5s;
    }
    
    .overlay-content {
        position: relative;
        width: 100%; 
        padding: 5%;
        margin-top: 10%;
    }
    
    .overlay-content a {
      text-decoration: none;
      font-size: 1rem;
      line-height: 2.5rem;
      display: block; 
      transition: 0.3s; 
    }
    
  
    .overlay .closebtn {
      display: flex;
      justify-content: flex-end;    
      margin-top: 1.5rem;
      margin-right: 2.5rem;
    }
  
    .menupunkter {
      background-color: var(--white);
      border: none;
      display: flex;
      flex-direction: column;
      }
  
    .content {
      display: none;
      overflow: hidden;
    }
  
    .content a {
        font-family: houschka-pro, sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 0.8rem;
        color: var(--price);
        margin-left: 5%;
    }
  
    .logohead3 {
      display: flex;
      justify-content: center;
      width: 375px;
      margin-top: 250px;
    }
    /* SLUT HEADER */
  
    /* MAIN */
      /*Kontaktformula*/
      #kontakt {
        background-color: #E8E8E8;
      }
  
      .kontakt_row {
        display: flex;
        flex-direction: column;
        width: 100%;
      }
  
      .container2 {
        font-family: houschka-pro, sans-serif;
        font-weight: 500;
        font-style: normal;
        padding: 2% 0;
      }
  
        /*Kode hentet fra https://www.w3schools.com/howto/howto_css_contact_form.asp */
  
      /* Felter styles - OBS input type text og submit gælder også for Nyhedsbrev */
      input[type=text], input[type=submit], #navn, #emne  {
        border: transparent;
        width: 100%;
        border-bottom: 1px solid grey;
      }
  
      input[type=text],  #besked {
        background-color: transparent;
        border-bottom: 1px solid grey;
      }
  
      #navn, #emne, #mail {
        width: 70%;
      }
  
      label {
        padding-bottom: 15%;
      }
  
      input[type=text], #emne {
        background-color: transparent;
        border-bottom: 1px solid grey;
      }
  
      /* Send besked knappen styles for kontaktformular + nyhedsbrev */
      input[type=submit] {
        background-color: var(--blue);
        color: white;
        border: none;
        display: flex;
      }
  
      /*Send besked knap styles kun for kontaktformular*/
      .container2 input[type=submit] {
        padding: 12px;
        margin: 8px 0;
        display: inline-block;
        border: transparent;
        width: 40%;
        margin: 3% 7%;
      }
  
  
      input[type=submit]:hover {
        opacity: 0.8;
      }
  
      label p {
        margin: 2% 7% 1% 7%;
      }
  
      #besked {
        width: 85%;
        margin: 0 7%;
      }
  
      /*Mapbox*/
  
      .maptitle {
        text-align: left;
        margin: 7% 7% 0 7%;
      }
  
      .map{
          overflow:hidden;
          padding-bottom:56.25%;
          position:relative;
          height: 200px;
          margin: 1% 7%;
      }
  
      .map iframe{
          left:0;
          top:0;
          height:100%;
          width: 100%;
          position:absolute;
      }
  
      /* Flexbox Nyhedsbrev */
  
      .nyhedsbrev {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 15%;
      }

      /* Add some padding to containers */
      .container p {
        text-align: center;
      }
  
      /* Foto Nyhedsbrev */
      .kopfoto{
        width: 100%;
      }
  
  
      /*Levering og returnering*/

      #levering {
        margin-top: 15%;
        padding: 5%;
      }
  
      .levering_row {
        display: flex;
        flex-direction: column;
      }
  
      #levering p {
        width:90%;
      }
    /* MAIN SLUT */
  
    /* FOOTER */
  
    footer {
      background-image: url('../images/baggrund2.png');
      background-repeat: no-repeat;
      height: 600px;
      width: 100%;
    }
  
    #footer {
      display: flex;
      flex-direction: column-reverse;
    }
  
    .some {
      display: flex;
      flex-direction: row;
      padding-top: 40%;
      margin: 5% 30%;
      justify-content: center;
      justify-content: space-between;
      align-items: baseline;
    }
  
    .logofoot {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .billede{
      width: 75%;
    }
  
    .links {
      display: flex;
      flex-direction: column;
    }
  
    .links a {
      color: var(--white);
      text-decoration: none;
      line-height: 2rem;
      text-align: center;
    }
  
    #copyright{
      margin-top: 14%;
      color: var(--lightgrey);
      text-align: center;
      font-size: 0.5rem;
    }
  }