/* Sticky Transparent Header Styles */

.header-e33e3915 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.admin-bar .header-e33e3915 {
    top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
    body.admin-bar .header-e33e3915 {
        top: 46px;
    }
}

.header-e33e3915.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.header-container-e33e3915 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    transition: padding 0.3s ease;
}

.header-e33e3915.scrolled .header-container-e33e3915 {
    padding: 0.8rem 1.5rem;
}

.brand-title-e33e3915 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.logo-img-e33e3915 {
    max-height: 45px;
    width: auto;
    display: block;
    transition: max-height 0.3s ease;
}

.header-e33e3915.scrolled .logo-img-e33e3915 {
    max-height: 35px;
}

.nav-list-e33e3915 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.nav-link-e33e3915 {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-link-e33e3915:hover {
    opacity: 0.8;
}

.actions-e33e3915 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-btn-e33e3915 {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    transition: transform 0.2s ease, background-color 0.3s ease, color 0.3s ease;
}

.cta-btn-e33e3915:hover {
    transform: translateY(-2px);
}

.menu-toggle-e33e3915 {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.menu-toggle-e33e3915 span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: currentColor;
    transition: all 0.3s ease;
}

/* Responsive Menu styles */
@media (max-width: 768px) {
    .menu-toggle-e33e3915 {
        display: flex;
    }

    .nav-e33e3915 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease-out;
    }

    .nav-e33e3915.active {
        max-height: 300px;
    }

    .nav-list-e33e3915 {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.25rem;
        align-items: center;
    }

    .nav-link-e33e3915 {
        color: #ffffff !important;
        font-size: 1.1rem;
    }
}
