/* Mobile Sidebar Navigation Styles */

/* Hamburger Menu Button */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 48px;
  height: 48px;
  background: #161616;
  border: 1px solid #34322d;
  border-radius: 12px;
  cursor: pointer;
  padding: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-menu-btn:hover {
  background: #1a1a19;
  border-color: #858481;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Sidebar Overlay */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.sidebar-overlay.active {
  opacity: 1;
}

/* Mobile Sidebar */
.mobile-sidebar {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #0a0a0a;
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
  border-left: 1px solid #34322d;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-sidebar.active {
  right: 0;
}

/* Sidebar Header */
.sidebar-header {
  padding: 24px 20px;
  border-bottom: 1px solid #34322d;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.sidebar-brand {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

/* Sidebar Navigation */
.sidebar-nav {
  padding: 16px 0;
}

.sidebar-nav-section {
  padding: 8px 20px;
  margin-bottom: 8px;
}

.sidebar-nav-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #858481;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: #d1d1cf;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.sidebar-nav-link:hover {
  background: #161616;
  color: #ffffff;
  border-left-color: #ffffff;
}

.sidebar-nav-link.active {
  background: #161616;
  color: #ffffff;
  border-left-color: #ffffff;
}

.sidebar-nav-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Submenu */
.sidebar-submenu {
  padding-left: 20px;
}

.sidebar-submenu .sidebar-nav-link {
  font-size: 0.9375rem;
  padding: 10px 20px;
  color: #858481;
}

.sidebar-submenu .sidebar-nav-link:hover {
  color: #ffffff;
}

/* Sidebar Footer */
.sidebar-footer {
  padding: 20px;
  border-top: 1px solid #34322d;
  margin-top: auto;
}

.sidebar-cta {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sidebar-cta:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.sidebar-contact {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #34322d;
}

.sidebar-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #858481;
  font-size: 0.875rem;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sidebar-contact-item:hover {
  color: #ffffff;
}

.sidebar-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Show on mobile */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-sidebar {
    display: block;
  }
  
  .sidebar-overlay {
    display: block;
  }
}

/* Prevent body scroll when sidebar is open */
body.sidebar-open {
  overflow: hidden;
}
