/* bottom-nav-styles.css */

.gt-bottom-nav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  width: 95%;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0 15px;
  z-index: 9999;
  transition: transform 0.5s ease, opacity 0.5s ease;
  overflow: hidden;
}

.gt-bottom-nav.closed {
  transform: translate(-50%, 120%);
  opacity: 0;
}

.gt-bottom-nav-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gt-bottom-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f855dd;
  text-decoration: none;
  font-size: 9px;
  transition: all 0.3s ease;
  padding: 5px 10px;z
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.gt-bottom-nav-link:hover,
.gt-bottom-nav-link:focus {
  color: #ff0099;
  text-shadow: 0 1px 4px rgba(255, 184, 51, 0.4);
}

.gt-bottom-nav-link.active {
  color: #FFB833;
  text-shadow: 0 1px 4px rgba(255, 184, 51, 0.4);
}

.gt-bottom-nav-link.active .gt-bottom-nav-icon {
  transform: scale(1.2);
}

.gt-bottom-nav-link.active span {
  font-size: 12px;
  font-weight: 500;
}

.gt-bottom-nav-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease, filter 0.2s ease-in-out;
}

.gt-bottom-nav-link:hover .gt-bottom-nav-icon {
  filter: drop-shadow(0px 4px 8px rgba(0, 150, 250, 0.6));
  transform: translateY(-5px);
}

.gt-close-nav-btn {
  position: absolute;
  right: 5px;
  top: 16px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.gt-close-icon line {
  stroke: #FFAF61;
  stroke-width: 2px;
  stroke-linecap: round;
  transition: stroke 0.3s ease;
}

.gt-close-nav-btn:hover .gt-close-icon line {
  stroke: #FF70AB;
}

.gt-menu-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gt-menu-icon line {
  stroke: #FFAF61;
  stroke-width: 2px;
  stroke-linecap: round;
  transition: stroke 0.3s ease;
  width: 20px;
}

.gt-menu-icon {
  width: 24px;
  height: 18px;
}

.gt-menu-btn.closed {
  opacity: 1;
  pointer-events: all;
}

.gt-menu-btn:hover .gt-menu-icon line {
  stroke: #ff9932;
}