* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navbar-main-font: "Outfit", sans-serif;
    --navbar-heading-font: "Kavoon", serif;
    --navbar-subtitle-font: "Roboto Condensed", sans-serif;
    --navbar-letter-space: 1px;
    --navbar-heading-font-size: 19px;
    --navbar-subtitle-font-size: 28px;
    --navbar-main-font-size: 18px;
}
/* Active menu link */


.navbar-bgcolor {
    /* background-color: #5D2F77 !important; */
    background-color: #210440 !important;
}

/* Menu links */
.navbar-menu-link {
    font-family: var(--navbar-main-font);
    text-transform: capitalize;
    font-size: var(--navbar-heading-font-size);
    color: white !important;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}
.navbar-menu-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    color: white;
    background-color: #F8B259;
    transition: width 0.3s ease;
}
.navbar-menu-link:hover  {
    color: #F8B259 !important;
}
.navbar-menu-link:hover::after {
    width: 100%;
}

/* Active menu link in red */
.navbar-menu-link.active {
    color:#F8B259 !important;
}

.navbar-menu-link.active::after {
    background-color: #210440; /* underline also red */
    width: 100%; /* keep the underline full width */
}


/* Social icons */
.navbar-social-link {
    font-size: 25px;
    transition: color 0.1s ease;
}
.whatsapp { color: #5ec985; }
.facebook { color: #0570fc; }
.instagram { color: #f045a6; }
.navbar-social-link:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

/* Toggler */
.navbar-toggler-custom {
    border: none;
    outline: none;
}
.navbar-toggler i {
    font-size: 1.5rem;
    color: white;
}
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* Custom breakpoint at 1250px (xxl) */
@media (min-width: 1250px) {
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
}