/* ─── Sidebar Container ─────────────────────────────────── */
.sideBar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 45vw;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  background-color: rgba(0, 0, 0, 0.055);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: none; /* shown via JS when hamburger is clicked */
}

/* ─── Nav Links List ────────────────────────────────────── */
.sideBar ul {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5vh;
}

.sideBar a {
  width: 100%;
  padding: 0 0 1vw;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 300;
  color: white;
}

/* ─── Top Row: Site Name + Close Button ─────────────────── */
.sideBar li:first-child {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 8vh;
  width: 100%;
  box-sizing: border-box;
  padding-left: 2rem;
  padding-right: 2rem;
  font-weight: 300;
  letter-spacing: 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.sideBar span {
  display: flex;
  justify-content: flex-start;
}

/* ─── Close Button ──────────────────────────────────────── */
.close-btn {
  position: relative;
  cursor: pointer;
}

/* Underline animation on close button */
.close-btn::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition:
    width 0.3s ease,
    left 0.3s ease;
}

.close-btn:hover::after {
  width: 100%;
  left: 0;
}

/* ─── Underline Animation (nav links only) ──────────────── */
.sideBar * {
  position: relative;
}

.sideBar *::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition:
    width 0.3s ease,
    left 0.3s ease;
}

.sideBar a:hover::after {
  width: 100%;
  left: 0;
}

/* Disable underline on top row links (Victory Ulasi name) */
.sideBar li:first-child a:hover::after {
  width: 0;
}

/* ─── Responsive ────────────────────────────────────────── */

/* Hide site name between 600–800px (sidebar is partial width) */
@media (max-width: 800px) {
  .sideBar-title {
    visibility: hidden;
  }
}

/* Full width sidebar on small phones — show site name again */
@media (max-width: 600px) {
  .sideBar {
    width: 100vw;
  }

  .sideBar-title {
    visibility: visible;
  }
}
