﻿/* 1. Main Navbar and Container Styling */

/* Styles the dark blue background and padding of the navbar. */
.acghrs-navbar-bg {
    background-color: #26324a; /* Dark blue background */
    padding-top: 15px;
    padding-bottom: 15px;
    box-shadow: none;
}

/* Styles the container to limit maximum width and center the content. */
.acghrs-container-wide {
    max-width: 1300px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* 2. Logo and Brand Styling */

/* Styles the alignment, color, and font for the brand name link. */
.acghrs-brand {
    display: flex;
    align-items: center;
    color: white !important;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Styles the size and spacing of the logo image. */
.acghrs-logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

/* 3. Navigation Links Styling */

/* Styles the wrapper that contains the main menu links, allowing it to grow. */
.acghrs-menu-wrapper {
    flex-grow: 1;
}

/* Styles the unordered list (<ul>) of navigation links, removing default list-style. */
.acghrs-nav-links {
    list-style: none;
}

/* Styles the base appearance of all individual navigation links (color, padding, and initial opacity). */
.acghrs-link {
    color: white !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    font-size: 1rem;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

    /* Styles the links when hovered over or when a dropdown is shown. */
    .acghrs-link:hover,
    .acghrs-link.show {
        opacity: 1;
    }

/* Home Active Link (Walang Tuldok) */

/* Styles the active link, ensuring full opacity. TINANGGAL ang positioning at ::before pseudo-element. */
.acghrs-active {
    opacity: 1;
    /* Ang 'position: relative' at ang '::before' block ay tinanggal para mawala ang tuldok. */
}

/* 4. Bottom Blue Line */

/* Styles the thin, blue line at the very bottom of the header. */
.acghrs-bottom-line {
    height: 3px;
    background-color: #4a90e2; /* Light blue color for the line */
    width: 100%;
}
