/* === Wakey High Volume Notice Bar === */
#wakeyNoticeBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000; /* keep above nav */
  background: linear-gradient(90deg, #EB8B50, #a27cc5);
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.wakey-notice-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 16px;
  flex-wrap: wrap;
}

.wakey-notice-content .notice-text {
  font-size: 0.95rem;
  line-height: 1.4;
}

#wakeyNoticeClose {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  line-height: 24px;
  text-align: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

#wakeyNoticeClose:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* Push page content down so bar doesn't overlap */
body.has-wakey-notice {
  margin-top: 48px; /* adjust if your bar is taller */
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .wakey-notice-content {
    flex-direction: column;
    gap: 8px;
    padding: 10px;
  }
  .wakey-notice-content .notice-text {
    font-size: 0.9rem;
    text-align: center;
  }
}
