.elementor-28 .elementor-element.elementor-element-e525f92{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-e525f92 *//* ==========================================================================
   PRAIRIE PIXEL - FLOATING IOS GLASS HEADER
   ========================================================================== */

/* 1. DROP-IN ANIMATION KEYFRAMES */
@keyframes slideDownGlass {
    0% {
        transform: translateY(-150%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 2. MAIN FLOATING HEADER WRAPPER */
.ios-glass-header {
    position: fixed;
    top: 25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    
    /* Floating Pill Sizing */
    width: 92%;
    max-width: 1000px;
    border-radius: 60px;
    z-index: 9999;
    
    /* Frosted Glass Effect */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px); /* Safari support */
    
    /* Premium Borders and Shadows */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    
    /* Load Animation */
    animation: slideDownGlass 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; 
}

/* 3. FLEXBOX CONTAINER */
.ios-glass-header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 35px; /* Adjusted for rounded corners */
}

/* 4. LOGO STYLING & HOVER ANIMATION */
.ios-glass-header .logo-link img {
    max-height: 45px; 
    width: auto;
    display: block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ios-glass-header .logo-link:hover img {
    transform: scale(1.05); /* Gentle bounce effect on hover */
}

/* 5. NAVIGATION LIST */
.ios-glass-header .custom-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 35px;
}

/* 6. NAVIGATION LINKS & UNDERLINE ANIMATION */
.ios-glass-header .custom-nav a {
    text-decoration: none;
    color: #1a1a1a; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding-bottom: 5px;
}

/* The Invisible Underline */
.ios-glass-header .custom-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #1a1a1a;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

/* Expand Underline on Hover */
.ios-glass-header .custom-nav a:hover::after {
    width: 100%;
}

/* 7. MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .ios-glass-header .custom-nav ul {
        display: none; /* Hides desktop menu */
    }
    .ios-glass-header {
        width: 95%; /* Gives a bit more room on small screens */
        top: 15px; /* Pushes it slightly closer to the top edge */
    }
}/* End custom CSS */