/* ================== Page Background ================== */
body {
  background-color: #000;
  color: #fff;
  margin: 0;
  font-family: 'Arial', sans-serif;
}

/* ================== Header ================== */
header h1 {
  font-family: 'UnifrakturCook', cursive; /* Old-school tattoo font */
  font-size: 5rem;
  text-align: center;
  margin: 50px 0;
  letter-spacing: 4px;
  font-weight: bold;
  text-shadow: 2px 2px 0 #fff, 4px 4px 0 #555; /* 3D etched effect */
}

/* ================== Posts Section ================== */
.posts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; /* space between posts */
  padding: 20px;
}

/* Individual Post */
.post {
  position: relative;
  width: 300px; /* 6x4 ratio approx */
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s;
}

.post img {
  width: 100%;
  display: block;
  transition: transform 0.3s;
}

.post:hover img {
  transform: scale(1.05); /* subtle zoom */
}

/* Title Overlay on Hover */
.post .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.5rem;
  font-family: 'UnifrakturCook', cursive;
  opacity: 0;
  transition: opacity 0.3s;
}

.post:hover .title {
  opacity: 1;
}
