body {
  margin: 0;
  overflow: hidden;
  font-family: Georgia, serif;
}

/* Blurred garden background */
.background {
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url("garden.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  transform: scale(1.1);
  z-index: -1;
}

/* Centered scene */
.scene {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Sign above door */
.sign {
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.7);
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
}

/* Door + plants */
.entrance {
  display: flex;
  align-items: center;
}

.door {
  width: 180px;
  cursor: pointer;
  transition: transform 0.3s;
}

.door:hover {
  transform: scale(1.03);
}

.plants {
  width: 120px;
}

.mat {
  margin-top: 0.5rem;
  width: 140px;
}

/* Butterflies */
.butterfly {
  position: absolute;
  width: 60px;
  animation: float 12s infinite linear;
}

.butterfly.one {
  top: 20%;
  left: 10%;
}

.butterfly.two {
  top: 60%;
  left: 80%;
  animation-duration: 15s;
}

.butterfly.three {
  top: 40%;
  left: 50%;
  animation-duration: 18s;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-40px); }
  100% { transform: translateY(0); }
}
