/* Hide original Hello Elementor header */
header#site-header,
.site-header {
    display: none !important;
}

/* Base custom header styling */
.simple-sticky-header-1ce3e829 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 20px 0;
}

/* Adjust top position when WordPress admin bar is present */
body.admin-bar .simple-sticky-header-1ce3e829 {
    top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
    body.admin-bar .simple-sticky-header-1ce3e829 {
        top: 46px;
    }
}

/* Container */
.header-container-1ce3e829 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-link-1ce3e829 {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.custom-header-logo-1ce3e829 {
    max-height: 50px;
    width: auto;
    transition: max-height 0.3s ease;
}
.site-title-1ce3e829 {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    transition: font-size 0.3s ease;
}

/* Navigation */
.nav-menu-1ce3e829 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}
.nav-menu-1ce3e829 a {
    text-decoration: none;
    color: #555555;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 10px 0;
    display: inline-block;
}
.nav-menu-1ce3e829 a:hover,
.nav-menu-1ce3e829 .current-menu-item > a {
    color: #111111;
}

/* Mobile Toggle */
.mobile-toggle-1ce3e829 {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
}
.mobile-toggle-1ce3e829 span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333333;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Sticky Shrink State (Scroll Animation) */
.simple-sticky-header-1ce3e829.is-shrunk-1ce3e829 {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.simple-sticky-header-1ce3e829.is-shrunk-1ce3e829 .custom-header-logo-1ce3e829 {
    max-height: 38px;
}
.simple-sticky-header-1ce3e829.is-shrunk-1ce3e829 .site-title-1ce3e829 {
    font-size: 20px;
}

/* Mobile styles */
@media (max-width: 991px) {
    .mobile-toggle-1ce3e829 {
        display: flex;
    }
    .navigation-1ce3e829 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
        padding: 80px 40px;
        transition: right 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    }
    .navigation-1ce3e829.is-open-1ce3e829 {
        right: 0;
    }
    .nav-menu-1ce3e829 {
        flex-direction: column;
        gap: 20px;
    }
    /* Hamburger animation */
    .mobile-toggle-1ce3e829.is-active-1ce3e829 span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-toggle-1ce3e829.is-active-1ce3e829 span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle-1ce3e829.is-active-1ce3e829 span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
