* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #111;
  }

  header, nav {
    padding: 1rem 2rem;
  }
  
  header {
    position: absolute;     /* så den ligger oven på hero */
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 10;
    background: transparent; /* ingen baggrundsfarve */
    color: white;            /* så teksten er synlig på billedet */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    div img{
        width: 150px;
        height: auto;
    }
  }

  /* Mobilvenlig navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.burger {
  display: none;
  font-size: 80px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 1250px) {
  .burger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: white;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav-links.show {
    display: flex;
  }
}
  

  nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: #111;
    font-weight: bold;
    font-size: 22px;
    letter-spacing: 1.5px;

    &:hover{
        border-bottom: black 2px solid;
    }
  }


  .hero {
    position: relative;
    width: 100vw;
    height: 80vh; /* fylder hele skærmhøjden */
    object-fit: cover;
    overflow: hidden;
  }
  
  .hero img {
    object-fit: cover;
  }
  .content {
    padding: 2rem;
    max-width: 100vw;
    margin: auto;

    div{
        display: flex;
    }

  }
  .content h1 {
    font-size: 3rem;
    align-items: flex-start;
  }
  .content .dates {
    font-weight: bold;
    font-size: 3rem;
  }
  
  .heading-container{
    display: flex;
    justify-content: space-between;
    align-items: center; /* så de flugter lodret */
    gap: 10vw;
    }

  .content p {
    line-height: 1.8;
    max-width: 1000px;
  }

  .teaser-text{
    font-style: italic;
    font-size: 26px;
    margin-top: 10vh;


  }

  /* GALLERY  */

  .gallery{
    display: flex;
    justify-content: space-between;
    overflow: hidden;
  }
  
  .img1{
    width: 70vw;
  }

  .img2{
    width: 40vw;
    height: 70vh;
    object-fit: cover;
    margin-top: 40vh;
  }

  .img3{
    width: 55vw;
    height: 120vh;
    object-fit: cover;
  }


  /* SPACE */ 

  .space-100{
    height: 100px;
  }

  .space-50{
    height: 50px;
  }


  /* RICH TEXT ELEMENT */

  .text{
    width: 950px;
    margin-left: 40vw;
    font-size: 20px;
    line-height: 2;
    margin-bottom: 100px;
  }



  /* FOOTER */

  .footer {
    background-color: #5C7863;
    color: #000;
    padding: 40px 20px;
    font-family: sans-serif;
    height: 100vh;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0;
  }
  
  .logo {
    height: 300px;
    margin-top: 50vh;
    margin-left: 60px;
    align-items: baseline;
    justify-content: baseline;
    
  }
  
  /* Mobil & Tablet */

  @media (max-width: 1400px) {

    .heading-container{
      display: block;
    }

    .heading-container h1, .heading-container .dates{
      font-size: 2rem;
      line-height: 1;
    }

    .dates{
      text-align: right;
    }

    .text-container{
      max-width: 85vw;
      font-style: italic;
      font-size: 20px;
      margin-top: 10vh;
      margin-left: 5vw;
      margin-bottom: 10vh;
    }

    .space-100{
      display: none;
    }

    .img1, .img2, .img3, .img4{
      width: 100vw;
      height: auto;
      margin-top: 5vh;
    }

    .gallery {
      display: block;
    }

    .footer{
      display: block;
      height: 140vh;
    }
  }
  
/* @media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .gallery img {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .udstillinger {
    flex-direction: column;
    align-items: center;
  }

  .udstilling {
    max-width: 100%;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    max-width: 100%;
  } 
}*/