
    @font-face {
      font-family: 'Lato-Thin';
      src: url('./Lato-Thin.ttf') format('truetype');
      font-weight: 300;
    }

    div.c {
  text-indent: 1em;
}

    body {
      margin: 0;
      font-family: 'Lato-Thin', sans-serif;
      font-size: clamp(0.9rem, 1.5vw, 1.1rem);
      color: grey;
    }

   header {
    background: white;
    padding: 1vh 2vw;
    min-height: 8vh;
    box-sizing: border-box;
    /* border-bottom: 1px solid #eee; */ /* remove this */
  }

    header .section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: auto;
      width: 100%;
    }

  header .site-title h2 {
    font-size: clamp(1.6rem, 3vw, 2.8rem); /* larger responsive title */
    font-weight: 700;
    margin: 0;
  }

    header nav a {
      margin-left: 2vw;
      text-decoration: none;
      color: #888;
      font-weight: 600;
      font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    }

    .section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
    }


    h2 { font-size: 1.8em; margin-bottom: 20px; }
    h3 { font-size: 1.2em; }

    header .site-title a {
  text-decoration: none;
  color: inherit;
}




.gallery-wrapper {
  display: grid;
  justify-content: center; /* centers header and grid together */
}

.gallery-wrapper h3 {
  grid-column: 1 / -1;
  text-align: left;
  margin-bottom: 40px; /* add vertical space before images */
  padding-left: 0.5rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 90px 160px; /* vertical horizontal */
  max-width: 1400px;
  margin: auto;
}

.card {
  background: white;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  max-height: calc(90vh - 8vh - 4vh);
  object-fit: contain;
  margin: 0;
}

/* unified left alignment under image */
.card-body {
  padding: 0;
  margin-top: 4px;
  text-align: left;
  line-height: 1.2;
}

.card-body h3,
.card-body p {
  margin: 2px 0;
  padding: 0 4px; /* slight inset to match image edge visually */
  font-size: clamp(0.8rem, 1vw, 1rem);
  color: #555;
}

    footer {
      text-align: center;
      padding: 20px;
      font-size: 0.8em;
      color: #666;
    }

    button {
  font-family: 'Lato-Thin', sans-serif;
  font-weight: 300;
  background: DimGray;
  color: #fff;
  border: solid;
  border-radius: 6px;
  padding: 10px 26px;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  cursor: pointer;
  transition: background 0.25s ease;
}

button:hover { background: #444; }
button:active { background: #000; }


    @media (max-width: 768px) {
      header .section {
        flex-direction: column;
        align-items: flex-start;
      }
      .section {
        padding: 20px 10px;
      }
      .gallery {
        gap: 10px;
      }
    }


