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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Cormorant Upright", serif;
  background-image: url("images/mosaic-bg.png");
  background-size: cover;
  background-attachment: fixed;
  color: #ede9e6;
}

/* Dreamy overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    rgba(40, 35, 45, 0.75),
    rgba(30, 35, 30, 0.85)
  );
  z-index: -1;
}

/* ---------- Title ---------- */

.title-area {
  position: sticky;
  top: 0;
  
  backdrop-filter: blur(6px);
  padding: 20px 0;
  text-align: center;
  z-index: 10;
  border-bottom: 1px solid rgba(200, 180, 210, 0.3);
}

h1 {
  font-family: "Mountains of Christmas", cursive;
  font-size: 3rem;
  margin: 0;
  color: #e4c6df;
  text-shadow: 0 0 8px rgba(200, 160, 220, 0.4);
}

/* ---------- Collage ---------- */

.collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  padding: 10px;
}

/* Columns are visually glued */
.column {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ---------- Images ---------- */

.column img {
  width: 100%;
  display: block;
  border-radius: 2px;
  filter: 
    saturate(90%)
    contrast(95%)
    brightness(98%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Subtle emotional hover */
.column img:hover {
  filter:
    saturate(110%)
    contrast(100%)
    brightness(105%);
  transform: scale(1.01);
}

/* ---------- Scrollbar ---------- */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#b59ac7, #7c8b6f);
}

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

@media (max-width: 1200px) {
  .collage {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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


@media (max-width: 700px) {
  .collage {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 2.2rem;
  }
}
