@font-face {
  font-family: 'SangBleu';
  src: url('fonts/SangBleuKingdom-Regular.woff') format('woff');
}

@font-face {
  font-family: 'SangBleuEmpire';
  src: url('fonts/SangBleuEmpire-RegularItalic.woff') format('woff');
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'SangBleu', sans-serif;
  background-color: white;
  color: black;
  overflow-x: hidden;
  min-height: 100vh;
}

header {
  padding: 20px 20px 0;
  text-align: center;
}

.site-title {
  font-family: 'SangBleuEmpire', serif;
  font-size: 2.5em;
  margin-bottom: 8px;
}

.site-links {
  font-size: 0.75em;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.site-links a {
  color: black;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  position: relative;
  flex: 1;
}

main img {
  max-width: 80vw;
  max-height: 70vh;
  cursor: pointer;
  object-fit: contain;
  display: block;
}

#caption {
  margin-top: 20px;
  font-size: 16px;
  text-align: center;
  }

/* VERSION MOBILE */
@media screen and (max-width: 600px) {
  html, body {
    height: 100vh;
    overflow: hidden;
  }

  main {
    padding: 40px 20px 60px;
  }

  main img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
  }

  main img.landscape {
    position: absolute;
    top: 250%;
    transform: translateY(-50%);
  }

  #caption {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    font-size: 14px;
    text-align: center;
    margin: 0;
  }
}

#aboutOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: white;
  z-index: 999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

@media screen and (min-width: 601px) {
  #aboutOverlay img {
    max-width: 40vw; 
    max-height: 60vh;