body {
  margin: 0;
  font-family: 'Press Start 2P', cursive;
  background: #fff8f5;
  color: #5a2c1d;
  background-image:
    radial-gradient(circle, rgba(255, 205, 178, 0.3) 2px, transparent 2px),
    radial-gradient(circle, rgba(255, 182, 108, 0.15) 1px, transparent 1px);
  background-size: 60px 60px, 30px 30px;
}

/* Navigation */
nav {
  background: #8b5e3c;
  padding: 10px;
  border-bottom: 4px solid #d99873;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: #ffe9c9;
  text-shadow: 2px 2px #5a2c1d;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #ffd66d;
  text-shadow: 0 0 8px #fff2e1, 0 0 15px #d99873;
}

/* Headings */
h1, p {
  text-align: center;
  margin-top: 20px;
  text-shadow: 2px 2px #f8d6c2;
  color: #5a2c1d;
}

h1 {
  font-size: 22px;
  margin-bottom: 5px;
}

p {
  font-size: 12px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  border: 4px solid #d99873;
  background: #fff;
  padding: 10px;
  box-shadow: 0 0 10px rgba(91, 52, 35, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: 0 0 20px rgba(217, 152, 115, 0.6);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes sure the image fills the box */
  border-radius: 5px; /* optional, matches your box style */

}

/* Artwork captions */
.gallery-item a {
  display: block;
  text-decoration: none;
  color: #8b5e3c;
  margin-top: 8px;
  font-size: 10px;
  text-shadow: 1px 1px #f8d6c2;
}

.gallery-item a:hover {
  color: #d99873;
  text-shadow: 0 0 6px #ffd66d;
}
