@charset "utf-8";
/* CSS Document */


/* Reset default spacing */
body, html {
  margin: 0;
  padding: 0;
}

/* Header Container */
.fb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0E2D09; /* dark forest green */
  color: white;
  padding: 10px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
}

/* Logo */
.fb-logo-link {
  display: block;
}

.fb-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

/* Navigation */
.fb-header-center {
  display: flex;
  align-items: center;
  gap: 20px;
}

.fb-nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.fb-nav-link:hover,
.fb-nav-link.active {
  background-color: rgba(255, 255, 255, 0.1); /* subtle hover for dark bg */
}

/* Search Bar */
.fb-search {
  padding: 6px 10px;
  border: none;
  border-radius: 20px;
  outline: none;
  font-size: 14px;
  color: #333;
}

.fb-search::placeholder {
  color: #999;
}



@media screen and (max-width: 768px) {
 
}

/* Responsive Behavior */
@media (max-width: 768px) {
  .fb-header-center {
    display: none; /* hide center nav on mobile */
  }

  .fb-search {
    width: 100px;
  }
}
