/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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



/* TITLE */
.page-title {
  font-family: 'Mountains of Christmas', cursive;
  color: #d4cfe0;
  text-align: center; 
  opacity: 0.6;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

h1 {
  text-align: center;
}


/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

/* BOX BASE */
.box {
  background: #0b0b0b;
  border: 1px solid rgba(181, 155, 207, 0.25);
  height: 70vh;
  overflow-y: auto;
  padding: 15px;
}

/* TEXT BOX */
.text-box {
  font-size: 16px;
  line-height: 1.6;
}

/* IMAGE BOX */
.image-box img {
  width: 100%;
  margin-bottom: 10px;
  opacity: 0.85;
}

/* SCROLLBAR (Webkit) */
.box::-webkit-scrollbar {
  width: 1px;
}

.box::-webkit-scrollbar-track {
  background: #080808;
}

.box::-webkit-scrollbar-thumb {
  background: rgba(181, 155, 207, 0.4);
}

/* MOBILE FALLBACK */
@media (max-width: 1200px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
