/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
.custoom-width img {
    width: 100% !important;
}

/* Sticky Header */
#sticky-header {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    width: 100% !important;
    background-color: #ffffff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

/* Ensure parent containers don't break sticky positioning */
body #sticky-header,
html #sticky-header {
    position: sticky !important;
}

/* Fix for Elementor containers that might interfere */
.elementor-location-header #sticky-header,
.elementor-template-canvas #sticky-header,
.elementor #sticky-header {
    position: sticky !important;
    top: 0 !important;
}

/* Fix parent containers with overflow that break sticky */
.elementor-section:has(#sticky-header),
.elementor-container:has(#sticky-header),
.elementor-row:has(#sticky-header) {
    overflow: visible !important;
}

/* Alternative selector for browsers that don't support :has() */
.elementor-section #sticky-header,
.elementor-container #sticky-header,
.elementor-row #sticky-header {
    position: sticky !important;
    top: 0 !important;
}