@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200&family=Open+Sans:wght@300;400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #ffffff;
  color: #3a3530;
}

/* HEADER */
header {
  background: #ffffff;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e0d9d3;
  position: sticky;
  top: 0;
  z-index: 100;
}

header img.logo {
  height: 60px;
  width: auto;
}

nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  margin-left: 2rem;
  transition: color 0.2s;
}

nav a:hover {
  color: #000000;
}

/* MAIN CONTENT */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem;
  text-align: center;
}

main img.hero {
  width: 100%;
  max-width: 400px;
  border-radius: 4px;
  margin-bottom: 2rem;
}

main p.bio {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #6b5f57;
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.2s;
  image-rendering: -webkit-optimize-contrast;
  -ms-interpolation-mode: bicubic;
}

/* FOOTER */
footer .copy {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.45rem !important;
  letter-spacing: 0.08em;
  color: #b0a49a;
  margin-top: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
