@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,700;1,400&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");
body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #3d5495;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

#SITE_CONTAINER {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#PAGES_CONTAINER {
  flex-grow: 1;
  padding: 40px 0;
}

#SITE_FOOTER_WRAPPER {
  background-color: #0e1821;
  color: #c5d0d9;
}

.content-container, #SITE_FOOTER, main, #SITE_HEADER {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 25px;
}

#SITE_HEADER {
  padding-top: 20px;
  padding-bottom: 0;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-and-tagline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 40px;
}

.logo img {
  width: 310px;
  height: auto;
}

.tagline {
  text-align: right;
  font-family: "Libre Baskerville", "EB Garamond", serif;
}

.tagline p {
  font-size: clamp(16px, 4vw, 25px);
  line-height: 1.2em;
  font-style: italic;
  margin: 0;
}

.tagline h1 {
  font-size: clamp(18px, 4.5vw, 27px);
  line-height: 1.2em;
  font-weight: bold;
  margin: 0;
}

.navigation-menu {
  width: 100%;
}

.navigation-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.navigation-menu li a {
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.navigation-menu li a:hover {
  background-color: #ede9e1;
  color: #444;
  text-decoration: none;
}

.navigation-menu .has-dropdown {
  position: relative;
}

.navigation-menu .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  background: #ffffff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 160px;
  z-index: 100;
  flex-direction: column;
  gap: 0;
}

.navigation-menu .has-dropdown:hover .dropdown {
  display: flex;
}

.navigation-menu .dropdown li a {
  display: block;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.header-divider {
  width: 100%;
  border-top: 1px solid #3d5495;
  margin-top: 20px;
}

.gallery-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery-grid li a {
  display: block;
  text-align: center;
  text-decoration: none;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-grid a:hover img {
  transform: scale(1.02);
}
.gallery-grid h2 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: normal;
  color: #000000;
  margin: 15px 0 0 0;
}

main h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
}

main p {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 1em;
}

.bio-figure {
  float: right;
  width: 40%;
  margin: 0 0 1em 2em;
}

.bio-figure img {
  width: 100%;
  height: auto;
}

.bio-figure figcaption {
  font-size: 15px;
  margin-top: 10px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#SITE_FOOTER {
  padding: 20px 15px;
}

.footer-container p {
  text-align: left;
  font-size: 12px;
  margin: 0;
}

.gallery-page h1 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.gallery-page .subtitle {
  text-align: center;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 40px;
}

.photo-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.photo-grid figure {
  margin: 0;
  text-align: center;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background-color: #f5f5f5;
}
.photo-grid figcaption {
  font-size: 14px;
  margin-top: 10px;
  color: #555;
  font-style: italic;
  padding: 0 5px;
}

.artwork-page {
  text-align: center;
}
.artwork-page .artwork-display {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-bottom: 30px;
  padding: 0 25px;
  box-sizing: border-box;
}
.artwork-page .artwork-display img {
  max-width: min(100vw - 50px, 1600px);
  max-height: 85vh;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.artwork-page .artwork-display figcaption {
  font-size: 20px;
  font-family: "Libre Baskerville", "EB Garamond", serif;
  margin-top: 20px;
  color: #000000;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.artwork-page .artwork-nav {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.artwork-page .artwork-nav a {
  display: inline-block;
  padding: 8px 16px;
  margin: 5px;
  font-size: 14px;
  color: #3d5495;
  text-decoration: none;
  border: 1px solid #3d5495;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.artwork-page .artwork-nav a:hover {
  background-color: #3d5495;
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 599px) {
  #PAGES_CONTAINER {
    padding: 20px 0;
  }
  .logo-and-tagline {
    flex-direction: column;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 15px;
  }
  .logo img {
    width: 80%;
    max-width: 280px;
  }
  .tagline {
    text-align: center;
  }
  .navigation-menu ul {
    gap: 3px 8px;
  }
  .navigation-menu li a {
    padding: 6px 8px;
    font-size: 14px;
  }
  .gallery-grid {
    gap: 20px;
  }
  .photo-grid {
    gap: 16px;
  }
  .bio-figure {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }
  main h1,
  .gallery-page h1 {
    font-size: 20px;
  }
  .gallery-page .subtitle {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .artwork-page .artwork-display figcaption {
    font-size: 17px;
    margin-top: 15px;
  }
  .artwork-page .artwork-nav {
    margin-top: 20px;
  }
  .artwork-page .artwork-nav a {
    padding: 10px 14px;
    font-size: 13px;
  }
  #SITE_FOOTER {
    padding: 15px 20px;
  }
}

/*# sourceMappingURL=style.css.map */