#sylvester-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background-color: #b6904a; /* Gold background */
  text-align: center;
  padding: 8px 0;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#sylvester-banner a {
  display: block;
  text-decoration: none;
  color: #000000; /* Black text */
  transition: all 0.3s ease;
}

#sylvester-banner a:hover {
  color: #000000;
  background-color: #a08142; /* Darker gold on hover */
  text-decoration: none;
}

.banner-line1 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.5px;
}

.banner-line2 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.3px;
}

/* Push down page content */
body {
  padding-top: 60px;
}

/* Mobile responsive */
@media only screen and (max-width: 480px) {
  .banner-line1 { font-size: 14px; }
  .banner-line2 { font-size: 12px; }
  #sylvester-banner { padding: 6px 0; }
  body { padding-top: 50px; }
}

/* Tablet responsive */
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .banner-line1 { font-size: 15px; }
  .banner-line2 { font-size: 13px; }
}
