/* HEADER */
.header-navbar,.header-navbar:last-child {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
	max-height: 80px;
  background: #fff;
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.3s ease;
	  z-index:2;
}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
    position: fixed;
    inset: 0;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9998;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu a {
    font-size: 1.4rem;
    text-decoration: none;
    color: #000;
}

/* OPEN STATE */
body.menu-open .mobile-menu {
    transform: translateX(0);
}

/* =========================
   OVERLAY
========================= */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9997;
}

body.menu-open .mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* =========================
   MOBILE ONLY
========================= */

@media (min-width: 992px) {
    .mobile-menu,
    .mobile-menu-overlay,
     {
        display: none;
    }
}
@media (max-width:680px){
	.header-navbar,.header-navbar:last-child{
		max-height: 40px;
        padding: 2px;
        padding-top: 10px;
	}
}
