/* GREETING BAR */
.greeting-bar {
  position: sticky;
  top: 85px;

  width: 100%;
  padding: 10px;

  text-align: center;
  font-weight: 600;
  color: white;

  background: #0f8a44; /* default green */
  transition: background 0.8s ease;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;

  letter-spacing: 0.5px;
}

/* GREEN STATE */
.greeting-bar.green {
  background: #0f8a44;
}

/* ORANGE STATE */
.greeting-bar.orange {
  background: #ff6e00;
}

/* MOBILE */
@media (max-width: 900px) {
  .greeting-bar {
    top: 90px;
    font-size: 13px;
    padding: 8px;
  }
}
