/* 
 * Minimal theme CSS - Only for structure
 * Elementor handles ALL design
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic structure (Elementor overrides these anyway) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fallback header styling (only if no Elementor header) */
.site-header {
    padding: 20px 0;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

/* Fallback footer */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
    margin-top: 50px;
}

/* Ensure Elementor sections take full width */
.elementor-section {
    width: 100%;
}

/* Utility classes */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

