body {
  margin: 0;
  font-family: Georgia, serif;
  background-image: url("../assets/picture.png");
  background-size: cover;
  background-attachment: fixed;
  color: #f3e7d0;
}

.page {
  width: 90%;
  max-width: 1200px;
  margin: 4rem auto;
  display: flex;
  gap: 3rem;
}

/* sidebar */
.sidebar {
  width: 220px;
  padding: 1rem;
  background: rgba(15, 10, 5, 0.85);
  border: 2px solid #e78104;
  height: fit-content;
}

.sidebar h1 {
  color: #e78104;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar a {
  color: #f3e7d0;
  text-decoration: none;
}

/* gallery grid */
.gallery {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

/* individual photo */
.photo {
  background: rgba(15, 10, 5, 0.85);
  padding: 0.5rem;
  border: 1px solid #e78104;
  transform: none !important;
  transition: transform 0.25s ease;
  position: relative;
  overflow: hidden;
}

.photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.photo figcaption {
  font-size: 0.8rem;
  opacity: 0;
  position: absolute;
  bottom: 0;
  margin-top: 0.5rem;
  color: #e78104;
}

.photo:hover {
  transform: scale(1.05) rotate(-2deg);
  z-index: 2;
}
.photo:hover figcaption {
  opacity: 1;
}