

/* Mobile Nav */
.navbar{
  background-color: var(--background-primary);
  /* position:fixed !important; */
}
.navbar li a{
  color:var(--blackWhite);
}
.wrapper{
  display:flex;
  flex-direction: column;

}
.menu{
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ---- Logo Settings --- */
.light-theme .logo-light,
.dark-theme .logo-dark { display: block; }


.logo-light,
.logo-dark{
  padding:10px;
  min-width: 0;
  display:none; 
}

/* ---------------- */
/* Light and Dark Theme */


/* -------------- */




/* Light and Dark Settings Mobile */

.theme-btn-mobile ion-icon { display: none; }

.theme-btn-mobile.light .sun,
.theme-btn-mobile.dark .moon { display: block; }

/* Light and Dark Settings Desktop */
.theme-btn-desktop {
  position: relative;
  background: var(--background-secondary);
  color: var(--white);
  width:  52px;
  height: 26px;
  display:         flex;
  justify-content: center;
  align-items:     center;
  gap: 10px;
  border-radius: 100px;
  border: 0px;
}

.theme-btn-desktop.light {
  background: linear-gradient(45deg, hsl(7, 100%, 71%), hsl(46, 100%, 65%));
}

.theme-btn-desktop.dark {
  background: linear-gradient(45deg, hsl(225, 100%, 60%), hsl(296, 80%, 40%));
}

.theme-btn-desktop::before {
  content: '';
  position: absolute;
  background: var(--white);
  width:  21px;
  height: 21px;
  border-radius: 30px;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  box-shadow: 0 2px 10px -2px hsla(0, 0%, 0%, 0.05);
  z-index: 2;
}

.theme-btn-desktop.dark::before { left: calc(100% - 24px); }





/* -------- NOT BEING USED -------- */
.bars{
  width:45px;
  height: 3px;
  position: relative;
  display:inline-block;
  background-color:var(--accent)
}
.bars::before, .bars::after{
  content:"";
  background-color:var(--accent);
  width:45px;
  height: 3px;
  display:inline-block;
  position: absolute;
}
.bars::before{

  top:-8px;
}
.bars::after{
  top:8px;
}
/* -------- NOT BEING USED -------- */
menu{display:none;}

/* -------------------- MEDIA QUERY ------------------- */

@media(width>50px){
.menu{
  display:none;
}
  .boxItems{
    /* background-color: var(--foreground-primary); */
    /* background-color: black !important; */
    height: 60px;
    z-index: 1;
  }
.item a{
  color:white;
}
.navBtn{
  display:inline-block;
  justify-content: right;
}
.theme-btn-desktop{
  display:none;
}
.navbar li a{
  color:white;
}
.wrapper .logo-light,
.wrapper .logo-dark{
  text-align: center;
  justify-content: center;
  width: 300px !important;
}
}



@media(width>500px){
  .navbar li a{
    color:var(--blackWhite);
  }

  .boxItems{
    background-color: transparent;
    display:block !important;
  }
  .item a{
    color:black;
  }
  .logo{
    width:200px;
  }
  .wrapper{
    flex-direction:row;
    align-items: center;
    justify-content: space-evenly;
    position:sticky;
  }
  .menu{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .item{display:block !important;}
  
  .navBtn{
    display:none;
  }

  .theme-btn-desktop{
    display:inline-block;
  }
  .theme-btn-mobile{display:none;}
}