/* Mobile Navigation Bar */
button#archHamburgerBtn {
    border-radius: 0px;
    border: 1px solid #381D1FB2;
    padding: 1px 6px 1px 6px;
}

button#archHamburgerBtn:hover {
    background: #F6F6F4 !important;
}


.hamburger-container {
    padding: 8px;
}

.mobile-nav {
  z-index: 1000;
  margin: 0;
  padding: 0;
  margin-bottom: 120px;
  position: relative;
}

.nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    background: #F6F6F4;
}

.logo-container {
  display: flex;
  align-items: center;
  padding: 0;
}

.logo-container img {
  height: 48px;
  width: auto;
}

/* Progress Strips - Between Logo and Menu */
.progress-strips-container {
  flex: 1;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.progress-track {
  position: relative;
  width: 100%;
  height: 2px;
  background: #e5e5e5;
}

.progress-dots-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
}

.progress-dot-nav {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #D85A41;
    transition: all 0.3s ease;
}

.progress-dot-nav.visited {
  background: #D85A41;
  border-color: #D85A41;
}

.progress-dot-nav.active {
  background: #D85A41;
  border-color: #D85A41;
  width: 16px;
  height: 16px;
}

.hamburger-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-btn img {
  width: 24px;
  height: 24px;
}

.current-page-label {
    display: inline-block;
    background: #D85A41;
    color: #fff;
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 14px;
    border: 1px solid #000;
    font-weight: 500;
    text-align: center;
}

.page-label-container {
  text-align: center;
  margin-top: -27px !important;
}

/* Side Menu Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1500;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  left: -85%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: #F6F6F4;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1501;
  overflow-y: auto;
}

.side-menu.open {
  left: 0;
}

.menu-header {
  padding: 24px 20px;
  border-bottom: 1px solid #e0e0e0;
}

.menu-header img {
  height: 28px;
}

.menu-title {
  font-family: "BasteB-Regular", Sans-serif;
  margin-top: 24px;
  font-size: 23px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.menu-items {
  padding: 12px 0;
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 16px 20px 16px 40px;
  color: #999;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  position: relative;
  font-weight: 400;
}

.menu-dot {
  position: absolute;
  left: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e0e0e0;
  border: 1px solid #ccc;
  transition: all 0.2s ease;
}

.menu-text {
  display: block;
}

.menu-item.active {
  color: #D85A41;
  background: transparent;
  border-left-color: transparent;
  font-weight: 500;
}

.menu-item.active .menu-dot {
  background: #D85A41;
  border-color: #D85A41;
  transform: scale(1.2);
}

.menu-item:not(.active):hover {
  background: #f0f0f0;
}

/* Mobile-Specific Adjustments */
@media (max-width: 767px) {
  .mobile-nav {
    margin-bottom: 0;
    position: relative;
  }

  .side-menu {
    left: -100%;
  }

  .side-menu.open {
    left: 0;
  }

  .hamburger-btn img {
    width: 24px;
    height: 24px;
  }

  .menu-overlay {
    z-index: 1500;
  }

  .progress-dot-nav {
    width: 12px;
    height: 12px;
  }

  .progress-dot-nav.active {
    width: 12px;
    height: 12px;
  }

  .current-page-label {
    font-size: 12px;
    padding: 3px 20px;
  }
}