* {
  box-sizing: border-box;
}
html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
  background: #000 url('/damask_bats_and_demons_background.png') repeat;
  background-size: auto;
  color: #eee;
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: lighter;
  display: flex;
  flex-direction: column;
}
a {
  color: #eee;
  text-decoration: none;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.noselect {
  user-select: none;
  cursor: default;
}
#container {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.custom-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #111;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.custom-header a.hdr-logo {
  display: block;
  width: 300px;
  /* smaller logo width */
  height: 55px;
  /* smaller logo height */
  background-image: url('/kelliphotologo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: clamp(12px, 1.2vw, 16px);
}
.nav-links a {
  color: #f0c862;
}
.nav-links a:hover {
  text-decoration: underline;
}
.site-footer {
  background: #222;
  padding: 1rem;
  text-align: center;
  color: #aaa;
  margin-top: auto;
}
.footer-nav {
  margin-bottom: 0.5em;
}
.footer-nav a {
  color: #f0c862;
  margin: 0 10px;
}
.footer-nav a:hover {
  text-decoration: underline;
}
nav.breadcrumbs {
  font-size: clamp(14px, 1.2vw, 18px);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
}
#albums {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
#albums a {
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}
#albums .info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 1em;
  font-weight: bold;
  font-size: clamp(12px, 1.1vw, 14px);
}
#albums h3 {
  font-size: clamp(16px, 1.5vw, 20px);
  margin-bottom: 0.2em;
}
#media {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
#media li {
  list-style: none;
  border: 2px solid #fff;
  border-radius: 5px;
  background: #111;
  padding: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#media img {
  max-width: 100%;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 5px;
}
@media (max-width: 768px) {
  #albums a {
    width: 100%;
    height: 190px;
  }
}
nav.pagination {
  color: #666;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
}
nav.pagination .page {
  margin-right: 0.2em;
}
nav.pagination .page.current {
  font-weight: bold;
}
nav.pagination a {
  color: #666;
}
#zip {
  color: #666;
  margin-bottom: 2rem;
}
#zip a {
  color: #3399ff;
}
form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
input,
textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  background: #111;
  color: #eee;
}
button[type="submit"] {
  background-color: #f0c862;
  color: #111;
  padding: 0.8rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
button[type="submit"]:hover {
  background-color: #e0b850;
}
.custom-page {
  max-width: 800px;
  margin: 2rem auto;
  background: #111;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  line-height: 1.6;
}
.portrait-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
