* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fonts */
:root {
    --navbar-main-font: "Outfit", sans-serif;
    --navbar-heading-font: "Kavoon", serif;
    --navbar-heading-font-size: 16px;
}

.navbar-bgcolor {
    background-color: #202c3f;
}

/* Menu links */
.navbar-menu-link {
    font-family:  "Outfit", sans-serif;
    font-size: 18px;
    color: white !important;
    font-weight: 500;
    padding-bottom: 5px;
    margin-left: 10px;
    position: relative;
    transition: color 0.3s ease;
}
.navbar-menu-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #F5AD18;
    transition: width 0.3s ease;
}
.navbar-menu-link:hover {
    color: #ffaf10 !important;
}
.navbar-menu-link:hover::after {
    width: 100%;
}

/* Active menu link */
.navbar-menu-link.active {
    color: #F5AD18 !important;
}
.navbar-menu-link.active::after {
    background-color: #F5AD18;
    width: 100%;
}

/* 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;
}
/* Social icons colors */
.navbar-social-link i {
    font-size: 25px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

/* Specific colors */
.whatsapp { color: #25D366; }   
.facebook { color: #1877F2; }   
.instagram { color: #E1306C; }  
  
/* Hover effect */
.navbar-social-link:hover {
    transform: scale(1.2);
    filter: brightness(1.2);
}

@media (max-width: 1130px) {
  .navbar-expand-custom .navbar-collapse {
    display: none !important; /* Hide menu */
  }

  .navbar-expand-custom .navbar-toggler {
    display: block !important; /* Show hamburger */
  }

  .navbar-expand-custom .navbar-collapse.show {
    display: block !important; /* Show when toggled */
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .d-custom-none {
    display: flex !important;
  }
  .navbar-menu-link {
    margin-left: 0;
    padding: 10px 10px;
    width: auto;
    text-align: center;
  }
}

@media (min-width: 1131px) {
  .navbar-expand-custom .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-custom .navbar-toggler {
    display: none !important;
  }

  .navbar-nav {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }
    .navbar-nav .nav-item {
    margin: 0 3px; 
  }
   .d-custom-none {
    display: none !important;
  }
}
@media (min-width: 1231px) {

    .navbar-nav .nav-item {
    margin: 0 9px; 
  }

}


@media (min-width: 1130px) and (max-width: 1393px) {
  .navbar-menu-link {
    font-size: 13px; 
  }

}
.uk-has-submenu {
  position: relative;
  list-style: none;
}

.uk-nav-submenu-parent {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.uk-submenu {
  display: none;
  position: absolute; 
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #202c3f; 
  padding: 10px 0;
  flex-direction: column;
  min-width: 220px;
  z-index: 999;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.uk-submenu li a {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
  transition: background 0.3s;
  white-space: nowrap;
}

.uk-submenu li a:hover,
.uk-submenu li a.active {
  background-color: #F5AD18; 
  color: white;
}

.uk-has-submenu:hover .uk-submenu {
  display: flex;
}

.uk-submenu.show {
  display: flex;
}

.uk-submenu-toggle {
  font-size: 12px;
  margin-left: 5px;
  cursor: pointer;
  color: white;
  margin-top: 5px;

  user-select: none;
}
.navbar-nav li,
.uk-submenu li {
  list-style: none;
}
