/* Remove header background - make it transparent */
.header.header-three,
.header.header-three .header-nav,
.header.header-three .navbar,
.header.header-three .container,
.main-header-two,
.main-header-two .header.header-three {
    background: white !important;
    background-color: white;
    background-image: none;
    background-color: #fff0 !important;
    background-image: none !important;
    box-shadow: none !important;
}

@media (min-width: 992px) {
    .header.header-three {
        background-color: transparent !important;
        margin-top: 10px;
    }
}

/* DEFAULT STATE - Remove color property to allow inline styles to work */
.header.header-three .main-menu-wrapper .main-nav>li>a {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header.header-three .header-items .btn {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

/* STICKY STATE - Add white background and remove text-shadow */
.header.header-three.sticky {
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3sease;
    border-radius: 15px 15px 15px 15px;
    margin-left: 10px;
    margin-right: 10px;
}

.header.header-three.sticky .main-menu-wrapper .main-nav>li>a {
    text-shadow: none !important;
}

/* Ensure sticky header is fixed at the top */
.main-header-two.sticky-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 20px;
    z-index: 999;
    width: auto;
    padding: 10px 0;
    transition: all 0.3s ease;
}