:root, [data-bs-theme='light'] {
    --bs-primary: #201b59;
    --bs-primary-rgb: 32, 27, 89;
    --bs-secondary: #d68e4b;
    --bs-secondary-rgb: 214, 142, 75;
}

.hero-section { background-color: var(--bs-primary); }


/* Custom CSS */
.navbar-nav .nav-link {
    font-size: 1.1rem !important;
}

@media (min-width: 992px) {
  .navbar-underline {
    .nav-link {
      position: relative;
      display: inline-block;
      color: inherit;
      background-color: transparent !important;
      text-decoration: none;

      &::after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 2px;
        content: '';
        background-color: #201b59;
        transition: width 0.25s ease;
      }

      &:hover::after {
        width: 100%;
      }
    }
  }
}

@media (min-width: 576px) {
  .category-card {
    min-height: 240px;
  }
}