body {
    margin: 0;
      padding: 5px;
      background-color: #FAF7F0;
      color: #163D4E;
      font-family: "Segoe UI", Roboto, sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 10px;
    width: 100%;
    margin: 0 auto;
}

.logo-link {
   display: inline-block;
   width: 190px;
   height: 170px;
    background: url('/images/logo.png') no-repeat center / contain;
}

.logo-link:hover {
    background-image: url('/images/logo-blink.png');
}

.nav-menu {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  font-size: 1rem;
  width: 100%;
  max-width: 1400px;
  padding: 10px;
}

.nav-menu a {
  color: #E37A00;
  text-decoration: none;
  font-weight: 800;
  position: relative; 
}

    main {
      max-width: 800px;
      margin-top: 15px;
      line-height: 1.6;
      text-align: left;
    }

   h1, h2, h3 {
      color: #163D4E;
    }

    h1 {
      font-size: 1.8em;
      margin-bottom: 0.4em;
      text-align: center;
    }

    h2 {
      font-size: 1.3em;
      margin-top: 1.8em;
   }

    h3 {
      font-size: 0.8em;
      margin-top: 1.8em;
    }

    p {
      font-size: 0.9em;
      color: #3A4A4F;
      margin-bottom: 1em;
    }

    footer {
      margin-top: 40px;
      font-size: 0.9em;
      color: #6B7C85;
    }

    a {
      color: #1E9CCF;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .image-row {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin: 20px 0;
      flex-wrap: wrap;
    }

    .image-row img {
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .image-row img:hover {
      transform: scale(1.05);
    }

    /* Snapshot sectie */
    #snapshots {
      width: 100%;
      max-width: 900px;
      margin-top: 60px;
      padding: 20px;
      background: #ffffffc7;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    #snapshots h2 {
      color: #E37A00;
      border-bottom: 2px solid #E37A00;
      padding-bottom: 6px;
      margin-bottom: 20px;
    }

    #snapshot-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    #snapshot-grid img {
      width: 130px;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      transition: transform 0.2s ease;
    }

    #snapshot-grid img:hover {
      transform: scale(1.05);
    }