/* PWA Bottom Navigation Bar - Include on all member pages */

/* Hide hamburger menu on mobile */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: none !important;
  }
  
  .mobile-nav {
    display: none !important;
  }
}

/* Bottom Navigation Bar */
.pwa-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--deep-forest);
  padding: 12px 0;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 1000;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.pwa-bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
}

.pwa-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  padding: 4px 16px;
}

.pwa-nav-item:hover,
.pwa-nav-item.active {
  color: var(--tmac-blush);
}

.pwa-nav-item svg {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.pwa-nav-item.active svg {
  stroke-width: 2;
}

/* Show bottom nav on mobile */
@media (max-width: 768px) {
  .pwa-bottom-nav {
    display: block;
  }
  
  /* Add padding to main content so it doesn't get hidden behind nav */
  .member-main,
  .home-container,
  main {
    padding-bottom: 100px !important;
  }
  
  /* Hide footer on mobile - not needed with bottom nav */
  .member-footer {
    display: none;
  }
}

/* Gold Founding Member Badge - Small pill style */
.founding-badge {
  display: inline-block;
  background: linear-gradient(135deg, #c9a86c 0%, #a67c52 100%);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
}

/* Cards with rounded corners */
.rounded-card {
  border-radius: 12px;
}
