/* ---------- Base ---------- */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Cormorant Upright", serif;
  background-image: url("images/green-paper.png"); /* PNG background */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: #d6d4c8;
}

/* Soft overlay to fade background */
.page {
  background-color: rgba(20, 30, 20, 0.75);
  min-height: 100vh;
  padding: 30px;
}

/* ---------- Header ---------- */

header {
  text-align: center;
  margin-bottom: 30px;
}

h1 {
  font-family: "Mountains of Christmas", cursive;
  font-size: 3rem;
  color: #a6b38a;
  margin: 0;
}

.subtitle {
  font-style: italic;
  color: #9aa089;
}

/* ---------- Intro ---------- */

.intro {
  max-width: 700px;
  margin: 0 auto 40px auto;
  text-align: center;
  font-size: 1.1rem;
}

/* ---------- Galleries ---------- */

.gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-column {
  background-color: rgba(35, 50, 35, 0.6);
  border: 5px solid #4e5a44;
  padding: 15px;
  height: 400px;
  display: flex;
  flex-direction: column;
}

.gallery-column h2 {
  font-family: "Mountains of Christmas", cursive;
  text-align: center;
  color: #b5c49c;
  margin-bottom: 10px;
}

/* Scrollable image area */
.gallery {
  overflow-y: auto;
  padding-right: 5px;
}

.gallery img {
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #5e6a55;
  filter: saturate(85%) contrast(95%);
}

/* ---------- Scrollbar styling (optional) ---------- */

.gallery::-webkit-scrollbar {
  width: 3px;
}

.gallery::-webkit-scrollbar-thumb {
  background-color: #6b755c;
}

/* ---------- Footer ---------- */

footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #8f9484;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .gallery-wrapper {
    grid-template-columns: 1fr;
  }

  .gallery-column {
    height: 300px;
  }
}
