/* ================================
   LuGo Header - Center-Proof CSS
   ================================ */

.lugoh-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 9999;
    border-bottom: 1px solid transparent;
}

.lugoh-header.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid #eee;
}

body {
    padding-top: 120px; /* Adjust this to your header height */
}


.lugoh-header-wrapper {
    max-width: 1650px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo pinned left */
.lugoh-logo img {
    height: 42px;
    display: block;
}

/* Center menu */
.lugoh-menu {
    flex: 1;
    margin-left: 40px;
}

.lugoh-menu-list {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lugoh-menu-list li {
    display: block;
}

.lugoh-menu-list li a {
    display: block;
    text-decoration: none;
    color: #333;
    font-weight: 600;
	font-size:16px;
	line-height:20px;
    transition: color 0.3s ease;
}

.lugoh-menu-list li a:hover {
    color: #007bff;
}

/* Right section */
.lugoh-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lugoh-support-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.lugoh-support-link:hover {
    color: #007bff;
}

.lugoh-login-btn {
    background-color: #007bff;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.lugoh-login-btn:hover {
    background-color: #0056b3;
}

/* Mobile menu button */
.lugoh-mobile-menu-button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lugoh-mobile-menu-button .line {
    width: 20px;
    height: 2px;
    background-color: #333;
}

/* ================================
   Optional: Responsive Tweaks
   ================================ */
@media (max-width: 1024px) {
    .lugoh-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .lugoh-header-wrapper {
        padding: 10px 20px;
    }

    .lugoh-login-btn {
        padding: 6px 12px;
    }
}


/* Hide mobile menu button on desktop */
.lugoh-mobile-menu-button {
    display: none;
}

/* Show it on screens smaller than 1024px */
@media (max-width: 1024px) {
    .lugoh-mobile-menu-button {
        display: flex;
    }

    /* Optionally hide the regular menu on mobile */
    .lugoh-menu {
        display: none;
    }
}

.lugoh-menu-list li a:hover {
    color: #784df4 !important;
}

.lugoh-support-link:hover {
    color: #784df4 !important;
}
