* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #9cb3d9;
  font-family: 'Segoe UI', sans-serif;
}

.office {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #555050;
  overflow: hidden;
  padding: 40px;
}

.window {
  width: 120px;
  height: 100px;
  background: #0c98c7c8;
  border: 4px solid #bc8e5a;
  position: absolute;
  top: 40px;
  right: 50px;
  box-shadow: inset 0 0 10px #fa81afd5;
}

.door {
  width: 100px;
  height: 250px;
  background: #8d6e63;
  border: 1.5rem solid #190701;
  position: absolute;
  bottom: 0;
  left: 20px;
  border-radius: 4px;
  box-shadow: inset -2px -2px 10px rgba(0,0,0,0.2);
}

.table {
  width: 250px;
  height: 40px;
  background: #bcaaa4;
  position: absolute;
  bottom: 80px;
  left: 150px;
  border-radius: 10px;
}

.laptop-screen {
  width: 80px;
  height: 50px;
  background: #19242a;
  position: absolute;
  bottom: 120px;
  left: 200px;
  border-radius: 4px;
}

.bulletin-board {
  width: 300px;
  height: 220px;
  background: #6d591b;
  border: 2px solid #e9bd6cf1;
  position: absolute;
  top: 50px;
  left: 30px;
  box-shadow: inset 0 0 5px #fbc02d;
}

.sticky-notes div {
    text-align: center;
  width: 80px;
  height: 90px;
  position: absolute;
  border: 1px solid #ccbd5c;
}



.sticky-1 {
     top: 80px; left: 50px; 
     background: #c996ae;
     transform: rotate(-10deg);
}

.sticky-2 { 
    top: 140px; left: 115px;
    background: #5edc47ef;
    transform: rotate(25deg);
 }

.sticky-3 {
     top: 90px; left: 200px;
    background: #dc943d;
    transform: rotate(-30deg);
 }


.calender {
  width: 100px;
  height: 80px;
  background: #cfd8dc;
  position: absolute;
  top: 450px;
  left: 400px;
  border: 2px solid #0d1113;
  box-shadow: inset 0 0 5px #b0bec5;
}

.open-mails {
  width: 50px;
  height: 30px;
  background: #fff;
  border: 2px solid #90a4ae;
  position: absolute;
  bottom: 90px;
  left: 260px;
  transform: rotate(3deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.convo div {
  width: 200px;
  padding: 10px;
  border-radius: 20px;
  background: #929bd1;
  border: 1px solid #6b52e9c8;
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translateX(-50%);
  opacity: 0;
  animation: bubbleFade 12s infinite;
}

.convo .coridor-talks {
  animation-delay: 2s;
}
.convo .gossips {
  animation-delay: 4s;
}
.convo .greetings {
  animation-delay: 6s;
}
.convo .celebrations {
  animation-delay: 8s;
}
.convo .random {
  animation-delay: 10s;
}

@keyframes bubbleFade {
  0%, 100% {
    opacity: 0;
    transform: translate(-70%, 80px);
  }
  10%, 30% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  40%, 90% {
    opacity: 0;
  }
}

.week {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        padding: 5px;
      }

.week .day {
        flex: 1 0 25%;
        background: #eceff1;
        border: 1px solid #90a4ae;
        text-align: center;
        font-size: 0.6rem;
        padding: 2px;
        box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
}

.plants {
    position: absolute;
    display: flex;
    bottom: 40px;
    right: 200px;
}

.big-plant {
position: relative;
margin-bottom: 10px;
}

.shoot {
width: 80px;
height: 80px;
border-radius: 20px 20px 0 0;
background: #2d8031;
margin: 0 auto;
border-radius: 4px;
}

.stem {
width: 20px;
height: 40px;
background: #3d1d04e7;
margin: 2px auto;
}

.pot {
width: 50px;
height: 30px;
background: #7b5b50;
border-radius: 0 0 6px 6px;
margin: 0 auto;
}


.menu {
  background-color: #1F2A2E;
  border: 2px solid #00B8D4;
  box-shadow: 0 0 12px rgba(0, 184, 212, 0.3);
  color: #E0F7FA;
  padding: 30px;
  max-width: 500px;
  margin: 0px auto;
  text-align: center;
  border-radius: 12px;
}

.menu h2 {
  font-size: 2.2rem;
  color: #E1F5FE;
}

.menu a {
  color: #80DEEA;
  display: block;
  margin: 12px 0;
  text-decoration: none;
  padding: 8px 0;
  transition: background 0.3s ease, color 0.3s ease;
  border-radius: 6px;
  font-weight: 500;
}

.menu a:hover {
  background: rgba(0, 184, 212, 0.15);
  color: #ffffff;
}

