
/* ======== Base Layout & Typography ======== */
body {
  background-color: #f3f0e8;
  background-image: url('parchment-texture.jpg');
  background-size: cover;
  background-attachment: fixed;
  font-family: 'Georgia', serif;
  text-align: center;
  color: #3a2c1d;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 600px;
  margin: 40px auto;
  padding: 0 20px;
}

/* ======== Header ======== */
header {
  background-color: rgba(255, 248, 230, 0.95);
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #b29370;
}

h1 {
  color: #4a3b2f;
  font-size: 48px;
  margin: 0 0 40px 0;
}

.category {
  margin: 40px auto;
  width: 90%;
  max-width: 1200px;
}

.category h2 {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-left: 5px solid #b29370;
}

/* ======== Gallery & Image Styles ======== */
.gallery-link {
  margin-bottom: 40px;
}

.gallery-link img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.gallery-link span {
  display: block;
  margin-top: 12px;
  font-size: 24px;
  color: #3c3027;
  text-decoration: none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.grid img {
  width: 100%;
  height: auto;
  border: 2px solid #b29370;
  background-color: #fff;
  padding: 5px;
  border-radius: 8px;
  transition: transform 0.2s;
}

.grid img:hover {
  transform: scale(1.05);
}

/* ======== Footer ======== */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #5e4a37;
}
