/* Base Styles */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, Arial, sans-serif;
}

/* Navbar Styles */
.spacer {
  width: 30px;
}

.taskbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #013220;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: top 0.4s ease;
}

.taskbar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.button {
  min-width: 120px;
  text-align: center;
  padding: 10px 18px;
  background-color: #014f2c;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  font-size: 16px;
  transition: transform 0.25s, box-shadow 0.25s, background-color 0.25s;
}

.button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  background-color: #017447;
}

.logo-button {
  width: 60px;
  height: 60px;
  background-color: #016b38;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.logo-button:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background-color: #013220;
  z-index: 999;
  transition: left 0.3s ease;
  padding-top: 100px;
  box-shadow: 2px 0 10px rgba(0,0,0,0.3);
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 30px;
}

.mobile-menu-items .button {
  min-width: auto;
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 18px;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Mobile Navbar */
  .taskbar-inner {
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
  }
  
  .taskbar-inner .button,
  .taskbar-inner .spacer {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
}