
.hamburger{
    display: flex;
}

 /* Sidebar wrapper */
    .sidebar {
      position: fixed;
      top: 0;
      right: -100%;
      width: 300px;
      height: 100vh;
      background: #fff;
      box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
      transition: right 0.3s ease;
      overflow-y: auto;
      z-index: 1000;
    }
    .sidebar.open {
      right: 0;
    }

    /* Overlay */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.4);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 999;
    }
    .overlay.show {
      opacity: 1;
      pointer-events: all;
    }

    /* Accordion */
    .accordion {
      border-top: 1px solid #eee;
    }
    .accordion-header {
      padding: 1rem;
      cursor: pointer;
      background: #f9f9f9;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .accordion-header:hover {
      background: #f0f0f0;
    }
    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      padding: 0 1rem;
    }
    .accordion-content.open {
      max-height: 500px; /* enough to fit content */
      padding: 1rem;
    }

    /* Rotate chevron when open */
    .accordion-header svg {
      transition: transform 0.3s ease;
    }
    .accordion-header.active svg {
      transform: rotate(180deg);
    }
    
    .hammobile{
        display: flex;
    }

@media (min-width: 1200px) {
    .hamburger {
        display: none;
    }
    
    .hammobile{
        display: none;
    }
}

