/* ==========================
   NAV BUTTON MENU
========================== */

.nav-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 10px 0;
}

/* BUTTON STYLE */
.nav-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 6px 16px;

  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;

  text-decoration: none;
  color: #333;
  font-size: 17px;
  font-weight: 500;

  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  transition: all 0.2s ease;
}

/* HOVER */
.nav-buttons a:hover {
  background: #0073e6;
  color: #fff;
  border-color: #0073e6;
  transform: translateY(-2px);
}

/* ACTIVE PAGE */
.nav-buttons a.active {
  background: #333;
  color: #fff;
}
.hide-mobile{
    display:inline-flex;
}


/* MOBILE */
@media (max-width: 600px) {
    .nav-buttons{
        display:flex;
        flex-wrap:nowrap;
        justify-content:center;
        gap:4px;
    }

    .nav-buttons a{
        flex-direction:row;      /* icon left of text */
        align-items:center;
        justify-content:center;
    }

  .hide-mobile{
        display:none !important;
}
}

/* =========================
   HAMBURGER 
========================= */

.hamburger #menuToggle {
  position: fixed;
  top: 15px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  z-index: 1001;
  background: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.hamburger #menuOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 1000;
}

.hamburger #sideMenu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 260px;
  height: 100%;
  background: #ffffff;
  box-shadow: -3px 0 10px rgba(0,0,0,0.2);
  padding: 20px;
  transition: right 0.3s ease;
  z-index: 1002;
}

.hamburger #sideMenu button {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  border-radius: 6px;
}

.hamburger #sideMenu button:hover {
  background: #e0e0e0;
}

