@charset "UTF-8";

/* ========= NAVBAR ========= */
.navbar {
  padding: 0.3rem 0 0.4rem;
}
/* Slide-out menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -260px; /* hidden off-screen */
  width: 260px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0,0,0,0.15);
  transition: right 0.3s ease;
  z-index: 1050;
}

.mobile-menu.show {
  right: 0;
}

.mobile-menu-content {
  padding-top: 3rem; /* space for close button */
}

/* Menu items */
.mobile-menu-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.mobile-menu-item i {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #0056b3;
}

.mobile-menu-item:hover {
  background-color: #f8f9fa;
  color: #0056b3;
}

/* Close button */
.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
  position: absolute;
  top: 10px;
  right: 15px;
}

/* Hide menu for desktop */
@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Smooth slide effect */
.header-object {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  transition: top 0.5s ease; /* smooth slide */
}


.navbar-brand img {
  width: 50px;
  margin-right: 9px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  padding-top: 22px;
}
.brand-text .line1 {
  font-weight: bold;
  color: #d9534f;
  font-size: 1.3rem;
}
.brand-text .line2 {
  font-weight: bold;
  font-size: 0.65rem;
  color: #00465d;
}
.navbar-end .nav-end-line {
  font-weight: bold;
  font-size: 16px;
  color: #212529;
  transition: color 0.3s ease;
}
.navbar-end .nav-end-line:hover {
  color: #df4425;
}