/* Reset + Base */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Georgia, serif;
  background-color: #eae3d3;
}

.container {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

/* Tree Image Background */
.background-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  object-fit: contain;
  z-index: 1;
}

/* Text Overlay */
.text-overlay {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #2d2d2d;
  z-index: 2;
}

.text-line {
  font-size: 1.4rem;
  margin: 0.4rem 0;
  opacity: 0;
  animation: fadeIn 1.5s forwards;
}

.text-line:nth-child(1) { animation-delay: 0.5s; }
.text-line:nth-child(2) { animation-delay: 1.5s; }
.text-line:nth-child(3) { animation-delay: 2.5s; }

.enter-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.6rem 1.8rem;
  font-size: 1rem;
  font-family: Georgia, serif;
  background-color: #2d402d;
  color: #f5f1e8;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
  transition: background-color 0.3s ease;
  opacity: 0;
  animation: fadeIn 1.5s forwards;
  animation-delay: 4s;
  vertical-align: middle;
}

.enter-button:hover {
  background-color: #3a503a;
}

.soft-benediction {
  font-size: 1.3rem;
  font-style: italic;
  margin-top: 1rem;
  opacity: 0;
  animation: fadeIn 1.5s forwards;
  animation-delay: 5.5s;
}

/* Fade animation */
@keyframes fadeIn {
  to { opacity: 1; }
}
