/* =========================
   HEADER BASE
========================= */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 999;

    display: flex;

    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

/* =========================
   FIX ELEMENTOR ALIGNMENT
========================= */
.sticky-header .elementor-container,
.sticky-header .e-con {
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.sticky-header .elementor-widget-wrap {
    align-items: center;
}


/* =========================
   STICKY GLASS EFFECT
========================= */
.sticky-header.sticky-active {
    background: rgba(255, 255, 255, 0.18) !important;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

/* =========================
   LOGO SWITCH
========================= */
.logo-1, .logo-2 {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.3s ease;
}

.logo-2 {
    opacity: 0;
}

.sticky-header.sticky-active .logo-1 {
    opacity: 0;
}

.sticky-header.sticky-active .logo-2 {
    opacity: 1;
}

/* Smooth transitions */
.elementor-nav-menu a,
.elementor-nav-menu a span {
    transition: color 0.3s ease;
}
/* Menu items */
.sticky-header.sticky-active .elementskit-navbar-nav > li > a {
    color: #901d78 !important;
    transition: all 0.3s ease-in-out;
}

/* Hamburger menu icon */
.sticky-header.sticky-active .elementskit-menu-hamburger > .ekit-menu-icon {
    color: #901d78 !important;
    transition: all 0.3s ease-in-out;
}