/* Reset og grundopsætning */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    line-height: 1.6;
  }
  
  /* Header med gennemsigtighed og menu */
  header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    z-index: 1000;
  }
  
  .logo {
    height: 40px;
  }
  
  nav {
    display: flex;
    gap: 20px;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #f39c12;
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .menu-toggle span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
  }
  
  @media screen and (max-width: 768px) {
    nav {
      display: none;
      flex-direction: column;
      background: rgba(0,0,0,0.9);
      position: absolute;
      top: 60px;
      right: 30px;
      padding: 10px;
      border-radius: 5px;
    }
  
    nav.active {
      display: flex;
    }
  
    .menu-toggle {
      display: flex;
    }
  }
  
  /* Hero / banner billede med fast logo */
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .hero .background {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: -1;
  }
  
  .hero .background.active {
    opacity: 1;
  }
  
  .logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  
  .overlay-logo {
    width: 100%;
    max-width: 1000px;
    height: auto;
  }
  
  @media screen and (max-width: 768px) {
    .overlay-logo {
      width: 80%;
      max-width: 300px;
    }
  }
  
  /* Om Mig sektion */
  .about {
    padding: 100px 30px 60px;
    background-color: #f8f2f2;
    text-align: center;
    color: #000;
  }
  
  /* Galleri-slider med teasere */
  .gallery-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    margin: 20px auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .gallery-slide-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
  }
  
  .slide.active {
    opacity: 1;
    position: relative;
    z-index: 2;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .slide .caption {
    position: absolute;
    bottom: 20px;
    left: 30px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
  }
  
  /* Pil-knapper */
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 40px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
  }
  
  .slider-btn:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  .slider-btn.prev {
    left: 10px;
  }
  
  .slider-btn.next {
    right: 10px;
  }
  
  @media screen and (max-width: 768px) {
    .gallery-slider {
      max-width: 100%;
      height: auto;
      flex-direction: column;
    }
  
    .slide img {
      height: auto;
    }
  
    .slider-btn {
      font-size: 30px;
    }
  }
  
  /* Sociale medier sektion */
  .social {
    background-color: #222;
    text-align: center;
    padding: 40px 20px;
  }
  
  .social-icons img {
    width: 32px;
    margin: 0 10px;
    filter: brightness(1.2);
    transition: transform 0.2s ease-in-out;
  }
  
  .social-icons img:hover {
    transform: scale(1.2);
  }
  
  /* Footer */
  footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
  }