/* ============================================================
   header.css — AMAZONE Hub Portal
   ============================================================ */


:root {
  --amazone-green:       #38832B;
  --amazone-orange:      #F07300;
  --amazone-dark-grey:   #3F4E55;
  --amazone-grey-bg:     #DADCDA;
  --amazone-light-green: #46B400;
  --amazone-white:       #FFFFFF;
  --amazone-black:       #1A1A1A;
}

.site-header {
  background-color: var(--amazone-white);
  border-top: 5px solid var(--amazone-green);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.header-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amazone-dark-grey);
}

.header-user {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--amazone-dark-grey);
}

.header-user .user-name {
  font-weight: 400;
}

.header-user .btn-logout {
  background: var(--amazone-orange);
  color: var(--amazone-white);
  border: none;
  padding: 6px 16px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.header-user .btn-logout:hover {
  background: #c55e00;
}

.header-nav {
  display: flex;
  gap: 8px;
}

.header-nav a {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--amazone-dark-grey);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid var(--amazone-grey-bg);
  transition: border-color 0.2s, color 0.2s;
}

.header-nav a:hover,
.header-nav a.active {
  border-color: var(--amazone-green);
  color: var(--amazone-green);
}
