@font-face {
  font-family: "Natural Mono";
  src: url("../fonts/LinLibertine_R.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  background: #eae1df;
  color: #0f0f0f;
  font-family: "Natural Mono", monospace;
}

.bigtitle{
  text-align: center;
  color: brown;
  font-size: 5rem;

}
.filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem 0;
}

.filters button {
  background: #ffffff;
  color: #0f0f0f;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  transition: background 150ms ease, transform 120ms ease, box-shadow 120ms ease;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}

.filters button:hover {
  transform: translateY(-2px);
  background: #f6f6f6;
}

.filters button.active,
.filters button[aria-pressed="true"] {
  background: #0f0f0f;
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.filters button:focus {
  outline: 3px solid rgba(15,15,15,0.08);
  outline-offset: 2px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
  
}

.artwork {
  display: flex;
  flex-direction: column;
  background: #ffecd1;
  max-width: 30rem;
  align-items: center;
  padding-top: 1rem;
  transition: transform 0.2s ease;

}

.artwork:hover {
  transform: translateY(-4px);
}

.artwork img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
  color: white;
  position: relative;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  margin-bottom: 1rem;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.artwork-button {
  all: unset;
  cursor: pointer;
  display: block;
  width: 90%;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}