body {
  margin: 0;
  font-family: "Courier New", monospace;
  background: #0d0c0a;
  color: #f2e7d5;
}

/* 🌲 fond forêt nocturne */
.world {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, #2f4a33 0%, #14110e 60%, #0b0a08 100%);
}

/* ☕ café central */
.cafe {
  width: 900px;
  max-width: 95%;
  display: flex;
  border: 2px solid #6b4c34;
  background: rgba(30, 20, 15, 0.92);
  box-shadow: 0 0 80px rgba(0,0,0,0.85);
}

/* 🌿 ambiance côtés */
.side {
  width: 130px;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

/* 🌱 plantes */
.plant {
  width: 16px;
  height: 16px;
  background: #3c7a4b;
  box-shadow: 0 4px #2a5a37;
}

/* 📚 livres */
.book {
  width: 22px;
  height: 14px;
  background: #6b4c34;
  box-shadow: inset 3px 0 #8a5f3d;
}

/* ☕ centre café */
.center {
  flex: 1;
  padding: 50px 40px;
  background: rgba(20, 15, 12, 0.65);
  text-align: center;
}

/* 🐺 titre */
h1 {
  margin: 0;
  letter-spacing: 6px;
  color: #f3d19c;
}

/* 🌙 sous-titre */
.subtitle {
  font-size: 12px;
  margin: 10px 0 30px;
  opacity: 0.8;
  border-top: 1px solid #6b4c34;
  border-bottom: 1px solid #6b4c34;
  padding: 8px;
}

/* ☕ boutons interactifs */
.menu a {
  display: block;
  text-decoration: none;
  color: #b7e3c2;
  margin: 12px 0;
  padding: 10px;
  border: 1px solid transparent;
  transition: 0.3s;
}

.menu a:hover {
  border: 1px solid #f3d19c;
  color: white;
  transform: translateX(5px);
  background: rgba(0,0,0,0.2);
}

/* 🌿 footer */
.footer {
  margin-top: 30px;
  font-size: 11px;
  opacity: 0.6;
}

/* ✨ petit effet ambiance */
.glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,220,160,0.18), transparent 70%);
  pointer-events: none;
  animation: pulse 6s infinite ease-in-out;
}

@keyframes pulse {
  0%,100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}
