.site-header {
  background: #2c3e50;
  padding: 16px 24px;
  position: relative;
  z-index: 10;
  text-align: center;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}


.site-header .header-inner {
  position: relative;
  z-index: 2;
  background: #2c3e50;
  border-bottom-left-radius: 24px;  /* adjust radius as needed */
  border-bottom-right-radius: 24px;
}

.site-header .logo {
  max-height: 120px;
}

.site-header .tagline p {
  margin: 0;
  font-size: 1.6rem;
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: #FFD700;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  letter-spacing: 0.5px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {opacity:0; transform: translateY(10px);}
  to {opacity:1; transform: translateY(0);}
}