*{
    margin: 0;
    padding:0; 
    font-family: 'Raleway', sans-serif;
    font-family: 'Truculenta', sans-serif;
   }

/* Styletile men css basically - 
så jeg nemt kan ændre uden at skal rode efter det hele*/
:Root{
    font-size: 2vw;
    --font-size-primary: 2vw;
    --font-size-secondary:  1.3vw;
    --font-primary: 'Truculenta', sans-serif;
    --font-secondary: 'Raleway', sans-serif;
    --text-primary: #1c1712 ;
    --text-secondary:#888859 ;
    --bg-primary: #e4e2e9;
    --bg-secondary:  rgba(255, 255, 255, 0.75);
}

/*  ------- Basale elementer --------- */

body{
  background-image: url(images/waves1.svg);
  background-size:cover;
  margin-top: 60px;
}

body::-webkit-scrollbar{
  display: none;
}

#differentbackground{
  background-image: url(images/waves2.svg);
  background-size: cover;
}

h1{
  font-family: var(--font-primary);
  font-size: 3.5vw;
  color: var(--text-secondary);
}

p{
  font-family: var(--font-secondary);
  font-size: var(--font-size-secondary);
  color: var(--text-primary);
}

.behind-text {
  background-color: var(--bg-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 5px;
  border-radius: 15px;
  margin-left: 100px;
  margin-right: 100px;
  margin-bottom:2vw;
  text-align: center;
}

.givemespace{
  height: 15px;
  width: auto;
}

/* ------- HEADER -------- */
/* Styles til begge navbar */

nav{
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: space-between;
  max-height: 60px;
  align-items: center;
  padding: 5px;
  border-radius: 15px;
  margin: 10px;
  position: fixed;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 999;
}

.navbar-logo {
  margin-left: 1rem;
  margin-top: 0.25rem;
  margin-right: 1rem;
}

.navbar-logo img {
  height: 60px;
}

.burger{
  height: 40px;
  margin-top: 0.25rem;
  margin-right: 1rem;
}

.navbar-links {
  list-style-type: none;
  display: flex;
  align-items: center;
  flex-wrap: nowrap; /* Så teksten forbliver ved siden af hinaden >:C */
  margin-right: 10px;
}

.navbar-links li {
  margin-left: 2rem;
  width: auto;
  height: auto;
  padding-left: 1rem;
  border-radius: 15px;
  transition: 1s;
}

.navbar-links li a {
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size:24px;
  margin-right: 1rem;
  transition: 0.5s;
}

.navbar-links li a:hover{
  color: white;
}

.navbar-links li:hover{
  background-color: var(--text-secondary);
  transform: scale(1.1);
}

/* Styles til desktop navbar */
.navbar-desktop {
  display: flex;
}

/* Styles til mobile navbar */
.navbar-mobile {
  display: none;
  position: fixed;
  margin-bottom: 1rem;
  z-index: 9999;
}

.burgermenu{
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  margin-top:20px;
}

.burgermenu li{
  width: 90%;
  height: 25px;
  margin: 0.5rem;
  border-radius: 15px;
  }

.burgermenu li a{
  font-size: 16px;
  text-decoration: none;
  color: var(--text-primary);
  display:block;
}

/* ------------ Landing -------------- */

.videocontainer {
  position: relative;
  width: 100%;
}

#video {
  margin-top: 4vw;
  margin-bottom: 1vw;
  width: 100%;
  height: auto;
}

.videocontainer .behind-text{
  margin: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* --------- Tre Kolonner og billedekort --------- */
.trekolonner{
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 5px;
  margin-left: 6.6%;
  margin-right:6.6%;
  margin-bottom: 2vw;
}

.trekolonner img{
  border-radius: 15px;
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 0 1px 0 1px;
  }

.billedekort {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.korteffekt{
  transition: 1s;
}

.korteffekt:hover{
  transform: scale(1.05);
}

/* --------------- Info boks og firekort ------------- */

.infoboks {
  background-color: var(--bg-secondary);
  height: auto;
  padding: 5px;
  border-radius: 15px;
  margin-left: 6.6%;
  margin-right: 6.6%;
  margin-bottom: 2vw;
  text-align: left;
}

.firekortcontainer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.row {
  display: flex;
  flex-direction: row;
  margin-bottom: 1.5rem;
}

.firekort {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  max-width: 600px;
  height: auto;
  text-align: justify;
}

.ikoner {
  width: 100px;
  margin-bottom: 1rem;
  height: auto;
}

.infoboks h2 {
 font-family: var(--font-primary);
 font-size: 32px;
 color: var(--text-primary);
 margin-left: 2rem;
 margin-top: 1rem;
 margin-bottom: 1.5rem;
}

.row p {
  font-family: var(--font-secondary);
  font-size: 20px;
  color: var(--text-primary); 
  margin:1.5rem;
  text-align: justify;
}

/* ------------------ Undersider ------------------- */

.titlepic{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: 100px;
  margin-right: 100px;
}

.titlepic img{
  border-radius: 15px;
  height: auto;
  width: 100%;
  margin-top:1rem;
  margin-bottom: 1rem;
}

.info{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.info h1{
  margin:1rem;
}

.info .row{
  display: flex;
  justify-content: space-evenly;
  margin-left: 2rem;
  margin-right: 2rem;
 
}

.info .row img{
  border-radius: 15px;
  height: auto;
  width: 100%;
  margin-bottom:1rem;
  max-height: 450px;
}



iframe{
  border-radius: 15px;
  height: auto;
  width: 100%;
  max-width: 400px;
  margin-bottom:1rem;
}


/* ---------------- footer -------------- */

.footer {
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    border-radius: 15px;
    margin: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .footer-logo {
    margin-right: 1rem;
  }
  
  .footer-logo img {
    height: 40px;
  }
  

  .footer-text li {
    color: var(--text-primary);;
    list-style-type: none;
    margin-bottom: 5px;
    margin-left: 1rem;
    font-family: var(--font-secondary);
    font-size: var(--font-size-secondary);
  }
  
  .footer-text li:first-child{
    font-family:var(--font-primary);
    color:var(--text-secondary);
    font-weight: bold;
    font-size: var(--font-size-primary);
    padding-bottom: 0.2rem;
  }


/* --------------- RESPONSIVE DESIGN-------------------- */

/* ---------------- PC -------------------- */

@media (min-width: 900px) {

/* ----------- navbar --------- */
    .navbar-desktop {
        display: flex;
      }
    
      .navbar-mobile {
        display: none;
      }

      .navbar-logo img {
        height: 60px;
      }


      .info {
        flex-direction: row;
        flex-wrap: wrap;
      }
    
      .billededel {
        width: 50%;
      }
   
}

/* ------------------ tablet if i need it? ----------------- */
@media (max-width: 950px) {

/* navbar */
    .navbar-desktop {
        display: flex;
        max-height: 40px;
      }

    
    .navbar-mobile {
        display: none;
      }

    .navbar-logo img {
        height: 50px;
      }

    .navbar-links li a{
      font-size: 2vw;
      margin:auto;
    }

      /* trekolonner med undersider  */
      .billedekort {
        flex-direction: column;
      }
    
      .trekolonner img {
        border-radius: 15px;
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .korteffekt{
      transition: none
    }
    
    .korteffekt:hover{
      transform: none
    }

 /* infoboksen */ 
  .infoboks {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .firekortcontainer {
    flex-direction: column;
    align-items: center;
  }

  .row {
    margin-bottom: 2rem;
    flex-direction: column;
  }

  .row p{
    margin: 0.5rem;
    padding-left:2rem;
  }

  .firekort{
    max-width: 400px;
    height: auto;
    text-align: justify;
    flex-direction: row;
  }

  .infoboks h2{
    font-size: 26px;
  }

/* undersider */

.info .row p{
  padding-left:0;
}


.titlepic img {
  margin: 1rem; 
}

}

/* ------------------ Mobil ----------------- */

@media (max-width: 550px) {

   /* ----------- navbar --------- */
    .navbar-desktop {
      display: none;
    }
  
    .navbar-logo img {
        height: 40px;
      }


    .navbar-mobile {
      display: flex;
      max-height: 40px;
    }

    .burgermenu{
      margin-top:80px;
    }

    .behind-text{
      margin:10px;
      width:auto;
    }
  
    /* trekolonner og titelkort */

    .billedekort {
      flex-direction: column;
      
    }

    .korteffekt{
      transition: none
    }
    
    .korteffekt:hover{
      transform: none
    }

    .trekolonner img {
      border-radius: 15px;
      max-width: 100%;
      margin-bottom: 1rem;
    }

    #video{
      margin-top: 3rem;
    }

    h1{
      font-size: 24px;
    }

    /* infoboks fra grid til coloumn */
    .infoboks {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .firekortcontainer {
      flex-direction: column;
      align-items: center;
    }

    .row {
      margin-bottom: 2rem;
      flex-direction: column;
    }

    .firekort{
      max-width: 250px;
      height: auto;
      text-align: justify;
      flex-direction: row;
    }

    .row p {
      margin: 0.5rem;
      font-size: 12px;
      padding-left:2rem;
    }

    .infoboks h2{
      font-size: 16px;
    }
    
    .ikoner {
      width:50px;
      height: auto;
      margin: auto;
      }
  
/* undersider */

.info .row p{
  padding-left:0;
}


.titlepic {
  margin:10px;
}

.titlepic img {
  margin: 1rem; 
}


 /* footer */ 

.footer{
      margin-top:1rem;
    }

  .footer-text li{
    font-size: 14px ;
  }

  .footer-text li:first-child{
    font-size:16px;
  }

  }
