/* ===== Reset ===== */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* ===== Full-page background ===== */
.page {
  min-height: 100vh;
  display: grid;
  place-items: center;

  /* 🔁 swap image path as needed */
  background-image: url("/assets/images /moviecolors.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== Overlay text box ===== */
.coming-soon {
  background: rgba(255, 255, 255, 0.85);
  padding: 1.25rem 1.75rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.coming-soon p {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2b2b2b;
}

/* ===== Fixed Back to Home button ===== */
.home-button {
  position: fixed;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 10;

  padding: 0.55rem 1rem;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.9);
  color: #2b2b2b;
  text-decoration: none;

  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;

  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.home-button:hover {
  background: #ffffff;
}

.home-button:focus-visible {
  outline: 2px solid #000;
  outline-offset: 3px;
}
