@font-face {
  font-family: 'IRANSansX';
  src: url('../../fonts/IRANSansX.woff2') format('woff2');
}

@font-face {
  font-family: 'Morabba';
  src: url('../../fonts/Morabba.woff2') format('woff2');
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background-color: #6C65FF;
  display: flex;
  align-items: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -5px 25px rgba(108, 101, 255, 0.5);
  overflow: hidden;
}

.bottom-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
}

.bottom-nav li {
  flex: 1;
  text-align: center;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #E8E9FE;
  padding: 10px 5px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon svg {
  width: 24px;
  height: 24px;
  stroke: #E8E9FE;
  stroke-width: 2;
  transition: stroke 0.3s ease;
}

.nav-text {
  font-family: 'Morabba', serif;
  font-size: 13px;
  margin-top: 4px;
  line-height: 1;
}

.nav-link:hover {
  color: #FFFFFF;
  transform: translateY(-4px);
}

.nav-link:hover .nav-icon svg {
  stroke: #FFFFFF;
}

.nav-link.active {
  color: #FFFFFF;
  transform: translateY(-4px);
}

.nav-link.active .nav-icon svg {
  stroke: #FFFFFF;
}

@media (min-width: 769px) {
  .bottom-nav {
    display: none;
  }
}