@import url("https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap");

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

.main {
  height: 100vh;
  width: 100%;
  background-color: #f5f5f5;
  position: relative;
}

.clock {
  width: 100px;
  height: 100px;
  border: 4px solid #333;
  border-radius: 50%;
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  outline: 2px solid #f0fdfa;
}

.center-dot {
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tick {
  width: 3px;
  height: 10px;
  background: #333;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.tick.top {
  top: 1px;
}

.tick.bottom {
  bottom: 5px;
  transform: translateX(-50%) rotate(180deg);
}

.tick.left {
  top: 50%;
  left: 5px;
  transform: translateY(-50%) rotate(90deg);
}

.tick.right {
  top: 50%;
  right: 5px;
  left: auto;
  transform: translateY(-50%) rotate(90deg);
}

.hand {
  position: absolute;
  bottom: 50%;
  left: 48.5%;
  transform-origin: bottom;
  background-color: #333;
  border-radius: 2px;
}

.hour {
  width: 5px;
  height: 30px;
  transform: translateX(-60%) rotate(70deg);
}

.minute {
  width: 4px;
  height: 40px;
  background-color: #555;
  transform: translateX(-50%) rotate(200deg);
  animation: rotate 3200s linear infinite;
}

.second {
  width: 2px;
  height: 40px;
  background-color: red;
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom;
  border-radius: 2px;
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ac-unit {
  position: absolute;
  width: 350px;
  height: 90px;
  top: 3rem;
  left: 36%;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2),
    inset 0 0 5px rgba(255, 255, 255, 0.5);
  border: 1px solid #e0e0e0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}
.ac-top-vent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(
    to bottom,
    rgba(200, 200, 200, 0.5),
    rgba(255, 255, 255, 0)
  );
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.ac-body {
  flex-grow: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 15px;
  box-sizing: border-box;
}
.ac-display {
  width: 80px;
  height: 35px;
  background-color: #333;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}
.temp-display {
  color: #00ff00;
  font-family: "Segment7", monospace;
  font-size: 1.2em;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
}
.mode-indicator {
  position: absolute;
  bottom: 3px;
  right: 5px;
  width: 6px;
  height: 6px;
  background-color: #00aaff;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 170, 255, 0.8);
}
.ac-vents {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 50px;
  width: 200px;
  margin-left: 20px;
}
.vent-line {
  width: 100%;
  height: 2px;
  background-color: #e0e0e0;
  border-radius: 1px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.ac-bottom-flap {
  width: calc(100% - 20px);
  height: 20px;
  background-color: #f0f0f0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1), 0 -2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  transform: translateY(5px);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ac-bottom-flap::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 4px;
  background-color: #d0d0d0;
  border-radius: 2px;
}
.ac-side-detail {
  position: absolute;
  width: 5px;
  height: calc(100% - 20px);
  background-color: #d0d0d0;
  border-radius: 2px;
  box-shadow: inset 1px 0 3px rgba(0, 0, 0, 0.1);
  top: 10px;
}
.ac-side-detail.left {
  left: 5px;
}
.ac-side-detail.right {
  right: 5px;
}

.window {
  width: 40rem;
  height: 12rem;
  position: absolute;
  top: 13rem;
  left: 28%;
  border: 5px solid #44403c;
  display: flex;
  justify-content: space-evenly;
  background: #fafbfc;
  background: radial-gradient(
    circle,
    rgba(250, 251, 252, 1) 0%,
    rgba(148, 187, 233, 1) 100%
  );
  z-index: 0;
}

.window-separator {
  height: 100%;
  border: 3px solid #44403c;
}

.floor {
  width: 100%;
  height: 5rem;
  position: fixed;
  bottom: 0;
  left: 0;
  background: #cfd8dc;
  border-top: 2px solid black;
}

.wall-lights {
  z-index: 5;
  width: 42rem;
  position: absolute;
  top: 0;
  left: 28%;
  display: flex;
  justify-content: space-between;
}

.light-stand {
  position: relative;
  height: 6.5rem;
  width: 10px;
  background-color: #0891b2;
}

.light-connector {
  width: 1.5rem;
  height: 1rem;
  position: relative;
  left: -6px;
  background-color: #0891b2;
}

.bulb-holder {
  width: 7rem;
  height: 3rem;
  position: relative;
  top: -1px;
  left: -3rem;
  background-color: #0891b2;
  border-radius: 50% 50% 0 0;
}

.bulb-holder::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 300px;
  background: radial-gradient(
    ellipse at top,
    rgba(255, 255, 180, 0.8),
    rgba(255, 255, 180, 0) 80%
  );
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.bulb-holder:hover::after {
  background: radial-gradient(
    ellipse at top,
    rgba(240, 248, 255, 0.9),
    rgba(240, 248, 255, 0) 80%
  );
}

.desk {
  width: 65%;
  height: 2rem;
  position: absolute;
  top: 60%;
  left: 15%;
  background-color: brown;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.desk-leg {
  height: 15rem;
  width: 2rem;
  background-color: brown;
  border-radius: 5px;
}

.desk-leg::after {
  content: "";
  width: 8rem;
  height: 1rem;
  background-color: brown;
  position: absolute;
  bottom: -12rem;
}

.desk-leg.right::after {
  right: 0;
}

.systems {
  display: flex;
  justify-content: space-between;
  width: 60%;
  position: absolute;
  top: 32%;
  left: 17%;

  z-index: 3;
}

.monitor {
  width: 15rem;
  height: 10rem;
  background-color: #3f3f46;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 5px;
}

.screen {
  width: 92%;
  height: 90%;
  background-color: blue;
}

.monitor .screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.monitor-stand {
  width: 3.5rem;
  position: absolute;
  bottom: -2rem;
  height: 2rem;
  background-color: #94a3b8;
  border-radius: 0 0 10px 10px;
}

.keyboard {
  width: 10rem;
  height: 2rem;
  position: absolute;
  bottom: -3.5rem;
  background-color: #3f3f46;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 5px;
}

.key-row {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}

.key {
  width: 5px;
  height: 5px;
  border: 2px solid #fff;
}

.mouse {
  width: 1.5rem;
  height: 2rem;
  position: absolute;
  bottom: -3.5rem;
  right: -0rem;
  border-radius: 50% 50% 5px 5px;
  background-color: #3f3f46;
  cursor: pointer;
}

.mouse-scroller {
  width: 5px;
  height: 5px;
  background-color: #fff;
  position: absolute;
  left: 8.5px;
  top: 3px;
}

.cpu {
  height: 9.5rem;
  width: 5rem;
  position: absolute;
  bottom: -15.8rem;
  left: 10px;
  background-color: #3f3f46;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cpu-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cpu-head .lines,
.cpu-base .lines {
  width: 100%;
  height: 10px;
  border: 1px solid #fff;
  border-radius: 5px;
}

.cpu-base {
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  border-radius: 5px;
}

.cpu-power-btn {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  align-self: center;
  border: 1px solid #fff;
}

.cpu.right {
  left: 10.5rem;
}

.laptop {
  width: 10rem;
  height: 7rem;
  position: absolute;
  bottom: -2rem;
  left: 40%;
  background-color: #3f3f46;
  border-radius: 5px 5px 0 0;
  padding: 5px;
}

.laptop .screen-inner {
  width: 100%;
  height: 100%;
}

.laptop .screen-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.laptop-pad {
  height: 18px;
  width: 11rem;
  position: absolute;
  right: -7px;
  border-radius: 0px 0px 15px 15px;
  background-color: #3f3f46;
  box-sizing: border-box;
}

.project-board {
  width: 15rem;
  height: 11rem;
  position: absolute;
  right: 3.5rem;
  top: 12rem;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: space-evenly;
  background-color: #fff;
  border: 10px solid #d1d5db;
  border-radius: 5px;
  padding: 10px;
  font-family: "Shadows Into Light", cursive;
  font-weight: 400;
  font-style: normal;
  padding-top: 0;
}

.board-name {
  width: 100%;
  height: 10px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5px;
}

.sticky-note {
  width: 3rem;
  height: 3.5rem;
  background-color: #00ff00;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 2px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
}

.sticky-note:hover {
  transform: scale(1.2);
}

.sticky-note:nth-of-type(4) {
  background-color: red;
}

.sticky-note:nth-of-type(2) {
  background-color: pink;
}

.sticky-note:nth-of-type(3) {
  background-color: skyblue;
}

.sticky-note:nth-of-type(5) {
  background-color: yellowgreen;
}

.wall-posters-container {
  width: 18rem;
  height: 8.5rem;
  position: absolute;
  top: 1rem;
  right: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.wall-poster {
  width: 8rem;
  height: 8.5rem;
  border: 5px solid black;
}

.wall-poster img {
  width: 100%;
  height: 100%;
}

.cup {
  width: 2.5rem;
  height: 3rem;
  position: absolute;
  left: 53%;
  top: 53.4%;
  background-color: #00ff00;
  border: 3px solid black;
  border-radius: 0 0 10px 10px;
  z-index: 5;
}

.cup::after {
  content: "";
  width: 10px;
  height: 1.5rem;
  position: absolute;
  right: -14px;
  top: 4px;
  border: 3px solid black;
  border-left: 0;
  border-radius: 0 50% 50% 0;
}

.steam {
  position: absolute;
  top: -40px;
  left: 10px;
  width: 8px;
  height: 40px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.6), transparent);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-out;
  z-index: 6;
}

.steam:nth-of-type(2) {
  left: 20px;
}

.cup:hover .steam {
  opacity: 1;
  animation: rise 1.5s ease-out infinite;
}

@keyframes rise {
  0% {
    transform: translateY(20px) scaleX(1);
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-40px) scaleX(0.5);
    opacity: 0;
  }
}

.cupboard {
  width: 200px;
  height: 350px;
  position: absolute;
  top: 41%;
  left: 8px;
  z-index: 2;
  background-color: #d2b48c; /* wood color */
  border: 4px solid #8b5e3c;
  display: flex;
  flex-direction: column;
}

.shelf {
  border-bottom: 4px solid #8b5e3c;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #444;
  font-family: sans-serif;
}

.open-shelf {
  background-color: #fdf6e3;
  height: 80px;
}

.open-shelf:last-child {
  height: 95px;
}

.closed-shelf {
  position: relative;
  height: 240px;
  background-color: #d2b48c;
}

.door {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #b8865b;
  border: 4px solid #8b5e3c;
  box-sizing: border-box;
}

.left-door {
  left: 0;
  border-right: 2px solid #8b5e3c;
}

.right-door {
  right: 0;
  border-left: 2px solid #8b5e3c;
}

.left-door::after,
.right-door::after {
  content: "";
  width: 15px;
  height: 15px;
  background-color: inherit;
  position: absolute;
  top: 50%;
  right: 10px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border: 2px solid black;
  cursor: pointer;
}

.right-door::after {
  left: 10px;
}

.book-shelf {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  padding-right: 1rem;
}

.pen-stand {
  align-self: flex-start;
  margin-right: auto;
  margin-left: 15px;
  position: relative;
  bottom: -31px;
  border: 4px solid black;
  width: 2.5rem;
  height: 3rem;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  background-color: #0891b2;
  z-index: 2;
}

.pen {
  width: 8px;
  height: 1.17rem;
  background-color: #00ff00;
  position: absolute;
  top: -1.2rem;
  left: 8px;
  border-top: 4px solid black;
  border-bottom: 4px solid black;
  transform: rotate(-20deg);
  z-index: -1;
}

.pen:last-child {
  transform: rotate(30deg);
  left: 25px;
  top: -1.2rem;
  background-color: #00aaff;
}

.book {
  width: 1rem;
  height: 4rem;
  border: 3px solid black;
}

.book-shelf .book:nth-child(1) {
  height: 3.8rem;
  background-color: yellow;
}

.book-shelf .book:nth-child(2) {
  left: 1rem;
  height: 3.5rem;
  background-color: red;
}
.book-shelf .book:nth-child(3) {
  height: 5rem;
  background-color: #bc9df4;
}

.book-shelf .book:last-child {
  height: 3.5rem;
  width: 10px;
  box-shadow: inset 5px 0 0 #bc9df4;
  transform: rotate(-30deg);
  margin-left: 10px;
}

.book:hover {
  transform: scale(1.1);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.plant {
  position: absolute;
  bottom: 3rem;
  right: 1.5rem;
  z-index: 5;
}

.pot {
  height: 9rem;
  width: 7rem;
  background: linear-gradient(to right, #f6ad7b 50%, #ed9a73 50%);
  border-radius: 50%;
  position: relative;
}

.pot-top,
.pot-base {
  width: 7rem;
  height: 1rem;
  position: relative;
  bottom: -80%;
  background-color: #cfd8dc;
}

.pot-top {
  bottom: 0;
  background-color: #f5f5f5;
}

.leaves {
  position: relative;
  width: 10rem;
  height: 8rem;
  overflow: hidden;
  left: -1rem;
  bottom: -1rem;
  z-index: 2;
}

.leaf {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 150px 0;
  display: inline-block;
  background: linear-gradient(-45deg, #5c7658 50%, #649d66 50%);
}

.leaf:nth-of-type(1) {
  bottom: -45%;
  transform: rotate(-70deg);
}

.leaf:nth-of-type(2) {
  left: 20%;
  transform: rotate(-45deg);
  bottom: 30%;
  z-index: 2;
}

.leaf:nth-of-type(3) {
  left: 40%;
  bottom: 90%;
  transform: rotate(-20deg);
}

.chair {
  position: absolute;
  bottom: 3%;
  right: 28%;
  display: flex;
  flex-direction: column;
  height: 20rem;
  width: 18rem;
  z-index: 3;
}

.chair-top {
  width: 4rem;
  height: 2.5rem;
  background-color: black;
  border-radius: 15px;
  position: relative;
  top: 5px;
  left: 33%;
  z-index: 3;
  border-bottom: none;
}

.chair-back {
  width: 7rem;
  height: 10rem;
  position: relative;
  top: 0;
  left: 25%;
  border-radius: 15px;
  background-color: black;
  z-index: 4;
}

.chair-back::before,
.chair-back::after {
  content: "";
  width: 10px;
  height: 3rem;
  background-color: black;
  position: absolute;
  bottom: 3rem;
  left: -8px;
}

.chair-back::after {
  left: 98%;
}

.chair-stand {
  width: 1rem;
  height: 5rem;
  position: relative;
  top: -5px;
  left: 42%;
  background-color: black;
}

.chair-base {
  width: 5rem;
  height: 1rem;
  position: relative;
  top: -5px;
  left: 32%;
  background-color: black;
  display: flex;
  justify-content: space-between;
}

.chair-wheel {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: black;
  position: relative;
  bottom: -16px;
}

.chair.left {
  left: 28%;
}

.printer {
  position: relative;
  width: 7rem;
  height: 3rem;
  background: #333;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.paper {
  position: absolute;
  top: -3px;
  left: 10%;
  width: 3.5rem;
  height: 1rem;
  background: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tray {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: #222;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.btn {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 12px;
  height: 12px;
  background: red;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.6);
}

.paper:hover {
  transform: scale(1.1);
}
