.aroma-header {
  background-color: #f3f2ed;
  padding: 1.5em 1em;
  border-bottom: 1px solid #ddd;
}

.header-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}

.header-left {
  flex-shrink: 0;
}

.logo-header {
  height: 80px;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 180px;
  flex: 1;
}

.slogan-header {
  margin: 0;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  color: #2e7d32;
  font-size: 0.95rem;
  text-align: right;
}

.header-link {
  display: inline-block;
  margin-top: 0.3em;
  font-weight: 600;
  color: #2e7d32;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
}

.header-link:hover {
  color: #b6cd26;
  text-decoration: underline;
}

.nav-header a {
  margin-left: 1em;
  text-decoration: none;
  color: #2e7d32;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
}

.nav-header a:hover {
  color: #b6cd26;
}

/* Badge BETA */
.badge-beta {
  display: inline-block;
  background-color: #2e7d32;
  color: white;
  font-weight: bold;
  font-size: 0.75rem;
  padding: 0.2em 0.6em;
  border-radius: 6px;
  margin-left: 0.4em;
  font-family: 'Open Sans', sans-serif;
  vertical-align: middle;
  white-space: nowrap;
  line-height: 1;
}

/* Mobile optimisation */
@media (max-width: 767px) {
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
  }

  .slogan-header {
    text-align: right;
    font-size: 0.9rem;
  }

  .badge-beta {
    font-size: 0.7rem;
    padding: 0.15em 0.5em;
    margin-left: 0.3em;
  }

  .header-link {
    font-size: 0.85rem;
  }
}
