body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #fdf6e3;
  color: #333;
  position: relative;
  height: 100vh;
  overflow: hidden;
  /* cursor: url('images/cursor.cur'), auto; */
  /* cursor: pointer; */
}


/* Center heading both vertically and horizontally */
h1 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  letter-spacing: 2px;
  pointer-events: none; /* so you can still hover images */
}
.intro{
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  font-size: 1.3rem;
  letter-spacing: 2px;
  pointer-events: none; /* so you can still hover images */
}






/* Bottom Taskbar */
.taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 10px;
  z-index: 1000;
}

/* Individual app icon */
.taskbar .app-icon {
  position: relative; /* needed for tooltip positioning */
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.taskbar .app-icon img {
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 auto;
  border-radius: 5px;
}

/* Hide the label by default */
.taskbar .app-icon p {
  position: absolute;
  bottom: 60px; /* position above the icon */
  left: 50%;
  transform: translateX(-50%);
  color: #333;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  white-space: nowrap;
  z-index: 100;
}

/* Show label on hover */
.taskbar .app-icon:hover p {
  opacity: 1;
}
/* Hover effect */
.taskbar .app-icon:hover {
  transform: scale(1.2);
}


.popup {
  display: none;
  position: absolute;
  top: 50px;      /* move slightly down */
  left: 50px;     /* move slightly right */
  width: 800px;   /* bigger width */
  height: 500px;  /* bigger height */
  background: #fff;
  border: 2px solid #333;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
  z-index: 100;
  overflow: hidden; /* keeps iframe contained */
}


.popup-header {
  background: #333;
  color: #fff;
  padding: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: move;
}

.popup-body {
  width: 100%;
  height: calc(100% - 40px); /* 40px for header */
  overflow: auto;             /* scroll if content is larger */
}


.popup-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.close-btn {
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
}











#gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 10px;
  overflow-y: auto; /* scroll if needed */
  max-height: 100%;
  padding: 10px;
}

#gallery img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s;
}

#gallery img:hover {
  transform: scale(2.0);
}





