/* ============================================================
   Workshop Shared Styles
   Font: Inter (body) + JetBrains Mono (code only)
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

/* ---- Scrollbar ---- */
.custom-scrollbar::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #010409;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #30363d;
  border-radius: 2px;
}

/* ---- Accordion / Step Toggle ---- */
.step-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.step.active .step-content {
  max-height: 8000px;
}
.step .step-icon::before {
  content: "+";
}
.step.active .step-icon::before {
  content: "\2212";
}

/* ---- Mobile Sidebar ---- */
@media (max-width: 768px) {
  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 40;
  }
  .sidebar-overlay.active {
    display: block;
  }
  aside {
    transform: translateX(-100%);
    position: fixed !important;
    z-index: 50;
    height: 100vh;
    transition: transform 0.3s ease;
  }
  aside.open {
    transform: translateX(0);
  }
}
