/* Full-screen background */
body {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 100vh;
  background: none;
  overflow: hidden;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/background.png") center center / cover no-repeat;
  z-index: -1;
}

/* Dock container */
.dock-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  padding: 10px 20px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  z-index: 10;
}


/* Icons in the dock */
.dock-item .icon {
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease;
}

/* MacOS Dock hover effect */
.dock-item:hover .icon {
  transform: scale(2);
}

/* Fallback for mobile responsiveness */
@media (max-width: 768px) {
  .dock-item .icon {
    width: 60px;
    height: 60px;
  }

  .dock-item:hover .icon {
    transform: scale(2);
  }
}

