.centennial-subnav {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Open Sans', sans-serif;
}

.centennial-subnav ul {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  margin: 0;
  list-style: none;
  gap: 3rem;
  flex-wrap: wrap;
}

.centennial-subnav li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #cc282d;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.centennial-subnav li a i {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  color: #cc282d; /* SAC red */
  transition: color 0.3s ease;
}

.centennial-subnav li a::after {
  content: '';
  display: block;
  height: 3px;
  width: 0%;
  background-color: #cc282d;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.centennial-subnav li a:hover {
  color: #000;
}

.centennial-subnav li a:hover i {
  color: #000;
}

.centennial-subnav li a:hover::after {
  width: 100%;
}

/* @media (max-width: 768px) {

.centennial-subnav {
  display: none;
}


  .centennial-subnav ul {
    gap: 1.5rem;
  }

  .centennial-subnav li a {
    font-size: 1rem;
  }
} */

/* RESPONSIVE MEDIA QUERIES */


/* WORKING WORKING WORKING */
/* Small Devices - Phones (Portrait) */ /* Small phones (e.g. iPhone 13 Mini) */
@media only screen and (max-width: 479px) {

  .centennial-subnav ul {
  display: flex;
  justify-content: center;
  padding: 0.2rem 0;
  margin: 0;
  list-style: none;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.centennial-subnav li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #cc282d;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  position: relative;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.centennial-subnav li a i {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  color: #cc282d; /* SAC red */
  transition: color 0.3s ease;
}

}

/* Medium Devices - Phones (iPad Mini portrait mode) */   /* Larger phones (e.g. iPhone Pro Max) */
@media only screen and (min-width: 480px) and (max-width: 767px) {

}

/* WORKING WORKING WORKING */
/* Some Tablets and Narrow Windows (Ipad Air 10.9" portrait, Chrome Browser, etc.) */ 
@media only screen and (min-width: 768px) and (max-width: 991px) {

}

/* WORKING WORKING WORKING */
/* Medium Tablets (like iPad Air 10.9" and iPad Mini landscape modes) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {

}

/* Large Tablets / Small Laptops (iPad Pro 12.9″, Surface Go, etc.) */
/* @media only screen and (min-width: 1200px) and (max-width: 1439px) {

} */


/* Small devices: mobile phones */
/* @media (max-width: 599px) {

} */