:root {
    --orange: #FF4E22;
    --bg: #E5E5E5;
    --text-dark: #111;
    --text-muted: #666;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    background: var(--bg);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
  }
  
  /* Header */
  header {
    padding: 2vh 4vw;
  }
  
  .logo-container img {
    width: 15vw;
    max-width: 150px;
  }
  
  /* Hero */
  .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
    padding: 5vh 4vw;
  }
  
  .hero h1 {
    font-size: 6vw;
    line-height: 1.2;
    max-width: 1000px;
    font-weight: 400;
  }
  
  .hero .orange {
    color: var(--orange);
  }
  
  .hero .italic {
    font-style: italic;
    font-weight: 200;
  }
  
  /* Gallery */
  .gallery {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 10vh auto;
  }
  
  .top-image img {
    width: 100%;
  }
  
  .top-image p {
    font-size: 1vw;
    margin-top: 1vh;
  }
  
  .bottom-images {
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
    margin-top: 4vh;
  }
  
  .bottom-image {
    flex: 1 1 calc(33.333% - 1.34vw);
    display: flex;
    flex-direction: column;
  }
  
  .bottom-image img {
    width: 100%;
    height: 18vw; /* Ens højde på tværs – justér om nødvendigt */
    object-fit: cover;
    background-color: #d2d2d2;
    display: block;
  }
  
  .bottom-image p {
    font-size: 1vw;
    margin-top: 1vh;
  }

  .minimal-footer {
    text-align: center;
    padding: 8vh 2vw;
    font-family: 'Inter', sans-serif;
  }
  
  .footer-heading {
    font-size: 2vw;
    font-weight: 600;
    margin-bottom: 2vh;
  }
  
  .footer-contact p {
    margin: 1vh 0;
    font-size: 1.2vw;
    font-weight: 300;
  }
  
  .footer-contact a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    transition: opacity 0.2s ease;
  }
  
  .footer-contact a:hover {
    opacity: 0.7;
  }
  
  /* Responsiv tilpasning */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 8vw;
    }
  
    .top-image p,
    .bottom-image p {
      font-size: 3vw;
    }
  
    .bottom-images {
      flex-direction: column;
    }
  
    .bottom-image {
      flex: 1 1 100%;
    }

    .bottom-image img {
        height: 60vw;
      }
  
    .logo-container img {
      width: 35vw;
    }

    .footer-heading {
        font-size: 5vw;
      }
    
      .footer-contact p {
        font-size: 4vw;
      }
  }
  