body {
  height: 100vh;
  width: 100vw;
  display: flex;
  margin: 0;
  background-image: url("Images/background79.png");
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  overflow: hidden;
  background-size: cover; /* Resize the background image to cover the entire container */
}

.smallcolumns {
  height: 100%;
  width: 20%;
  display: block;
}

.bigcolumns {
  height: 100%;
  width: 60%;
  display: block;
}

.bigspace {
  height: 60%;
  width: 100%;
}

.smallspace {
  height: 40%;
  width: 100%;
}

.smallspace img {
  width: 200px; /* make the arrow smaller — adjust as needed */
  height: auto;
}

.center-content {
  justify-content: center;
  align-items: center;
  display: flex;
}

/* suggest the element is clickable */
.clickable:hover {
  cursor: pointer;
  filter: brightness(150%) drop-shadow(2px 8px 3px);
}

.clickable {
  filter: brightness(85%) drop-shadow(2px 8px 3px);
}

/* ------ MODAL STYLE ------ */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* dark overlay */
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

/* ----- MODAL TEXT (THOUGHT BUBBLE) ----- */
.thought {
  position: absolute;
  bottom: 10%; /* moves text upward */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 15px;
  max-width: 70%;
  text-align: center;
  font-size: 24px;
  font-family: "Georgia", serif;
  color: #000;
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* When modal is active, fade in thought */
.modal.show .thought {
  opacity: 1;
}

/* transparent colors to see divs */
.purple {
  background-color: rgba(82, 61, 100, 0.5);
}
.green {
  background-color: rgba(133, 226, 31, 0.5);
}
.orange {
  background-color: rgba(218, 99, 57, 0.5);
}
.gold {
  background-color: rgba(211, 160, 71, 0.5);
}
.yellow {
  background-color: rgba(255, 236, 167, 0.5);
}
.black {
  background-color: rgba(0, 0, 0, 0.5);
}
.slate {
  background-color: rgba(30, 23, 31, 0.5);
}
.dark-grey {
  background-color: rgba(48, 49, 49, 0.5);
}
.light-grey {
  background-color: rgba(96, 96, 96, 0.5);
}
.silver {
  background-color: rgba(192, 192, 192, 0.5);
}
.red {
  background-color: rgba(255, 0, 0, 0.5);
}

#screenFade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease; /* fade speed */
  z-index: 9999;
}
