/* =========================================================
   Schrodinger Technologie — Announcement banner
   Sits above the floating glass navbar, full width.
   ========================================================= */

.announcement-bar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: linear-gradient(90deg, #0073C7, #009BD5);
  color: #fff;
  text-align: center;
  padding: 11px 46px 11px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: 0 2px 12px rgba(9,42,67,0.18);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.announcement-bar.is-hiding{
  opacity: 0;
  transform: translateY(-100%);
}

.announcement-bar strong{
  font-weight: 700;
}

.announcement-close{
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.18);
  border: none;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.announcement-close:hover{
  background: rgba(255,255,255,0.32);
}

@media (max-width: 480px){
  .announcement-bar{
    font-size: 0.82rem;
    padding: 9px 40px 9px 12px;
  }
}
