body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fafafa;
  color: #2E1300;
}

/* Header */
.site-header {
  background-color: #DFD9C7;
  color: #2E1300;
  padding: 1rem 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 60px;
  height: auto;
}

.site-title {
  font-size: 1.8rem;
  margin: 0;
  white-space: nowrap;
  color: #2E1300;
}

.main-nav {
  margin-top: 0.5rem;
}

.main-nav a {
  margin-right: 1.5rem;
  text-decoration: none;
  color: #2E1300;
  font-weight: bold;
}

.main-nav a:last-child {
  margin-right: 0;
}

.main-nav a:hover {
  text-decoration: underline;
}

/* Gallery styles */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 200px);
  gap: 1rem;
  padding: 2rem;
  justify-content: center;
}

.artwork {
  position: relative;
  width: 200px;
  overflow: hidden;
  border: 2px solid #ccc;
}

.artwork img {
  width: 100%;
  display: block;
  transition: filter 0.3s ease;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 0.5rem;
}

.artwork:hover img {
  filter: brightness(60%);
}

.artwork:hover .overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

.artwork:hover .title {
  opacity: 1;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #DFD9C7;
  color: #2E1300;
}
}
