#fw-section-hero-1768625445 {
--font-heading-scale: 1.24;
--font-body-scale: 1.0;
}





#fw-section-announcement-bar-0 {
--font-heading-scale: 1.0;
--font-body-scale: 1.68;
}
#fw-section-announcement-bar-0 {

header {
  background: #000;
  display: flex;
  align-items: stretch; /* Makes links fill the full height */
  justify-content: space-between;
  height: 80px;
  border-top: 8px solid #ff0000;
  border-bottom: 2px solid #330000;
  padding: 0;
  overflow: hidden;
}

.logo {
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: #ff0000;
  color: #000;
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  /* This creates a sharp "slash" between logo and nav */
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

nav {
  display: flex;
  align-items: center;
  padding-right: 20px;
}

.nav-link {
  color: #ff0000;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 25px;
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.2s cubic-bezier(0.9, 0, 0.1, 1);
  border-right: 1px solid #222;
}

.nav-link:hover {
  background: #ff0000;
  color: #000;
  /* Tilt effect on hover */
  transform: skewX(-10deg);
}

/* Subtle red pulse on the header shadow */
header:hover {
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}
}