/* Navbar Background */
.custom-navbar {
    background-color: #FF7622 !important;
}

/* ===== NAV LINKS ===== */
.custom-navbar .nav-link {
    color: #ffffff !important;
    font-size: clamp(0.9rem, 1vw, 1.1rem);
    font-weight: 600; /* 🔥 BOLD */
    transition: all 0.25s ease;
    position: relative;
}

/* Active link more emphasis */
.custom-navbar .nav-link.active {
    font-weight: 700; /* 🔥 EXTRA BOLD */
}

/* Underline hover animation */
.custom-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.25s ease;
    border-radius: 10px;
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
    width: 100%;
}

.custom-navbar .nav-link:hover {
    opacity: 0.95;
}

/* ===== COMPANY NAME ===== */
.company-name {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    transition: transform 0.3s ease;
}

/* Company name hover */
.navbar-brand:hover .company-name {
    transform: scale(1.03);
}

/* ===== BRAND TEXT ===== */
.brand-text {
    display: flex;
    flex-direction: column;
    align-items: center; /* 🔥 CENTER UNDER MAIN TEXT */
    line-height: 1;
    text-decoration: none;
}

/* Main brand */
.brand-main {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    letter-spacing: 2px;
}

/* Sub brand */
.brand-sub {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    opacity: 0.9;
    margin-top: 2px;
    text-transform: uppercase;
}

/* Hover effect */
.brand-text:hover {
    opacity: 0.95;
}


/* ===== LOGIN BUTTON ===== */
.login-btn {
    background-color: #ffffff;
    color: #FF7622;
    border-radius: 8px;
    font-size: clamp(0.9rem, 1vw, 1.1rem);
    font-weight: 600;
    transition: all 0.25s ease;
}

/* Login hover effect */
.login-btn:hover {  
    background-color: #ffe6d2;
    color: #FF7622;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Hamburger Icon White */
.navbar-toggler {
    filter: invert(1);
}
