.elementor-569 .elementor-element.elementor-element-2cbe632{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );text-transform:var( --e-global-typography-text-text-transform );font-style:var( --e-global-typography-text-font-style );text-decoration:var( --e-global-typography-text-text-decoration );line-height:var( --e-global-typography-text-line-height );letter-spacing:var( --e-global-typography-text-letter-spacing );word-spacing:var( --e-global-typography-text-word-spacing );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );letter-spacing:var( --e-global-typography-text-letter-spacing );word-spacing:var( --e-global-typography-text-word-spacing );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );letter-spacing:var( --e-global-typography-text-letter-spacing );word-spacing:var( --e-global-typography-text-word-spacing );}}/* Start custom CSS *//* efly_styles.css - עיצוב מקצועי למאמר רחפנים */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&family=Assistant:wght@200;300;400;500;600;700&display=swap');

:root {
    /* צבעים מותאמים לתעופה */
    --primary-blue: #1a5f7a;
    --secondary-blue: #2a7b9a;
    --accent-orange: #f57c00;
    --light-bg: #f8fafc;
    --dark-text: #2d3748;
    --medium-gray: #718096;
    --light-gray: #e2e8f0;
    --success-green: #38a169;
    --warning-red: #e53e3e;
    
    /* טיפוגרפיה */
    --heading-font: 'Rubik', sans-serif;
    --body-font: 'Assistant', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--light-bg);
    direction: rtl;
    text-align: right;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* כותרת האתר */
.site-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0f4c75 100%);
    color: white;
    padding: 1.2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.logo {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 300;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #ffcc80;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

/* מבנה המאמר הראשי */
.article-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 2rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.main-article {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.sidebar {
    width: 320px;
    min-width: 280px;
}

/* כותרת המאמר */
.breadcrumbs {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.breadcrumbs a {
    color: var(--primary-blue);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.article-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    border-bottom: 3px solid var(--accent-orange);
    padding-bottom: 0.8rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.expert-badge {
    display: inline-block;
    background: linear-gradient(to left, var(--success-green), #68d391);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* סעיפי התוכן */
.content-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.content-section:last-of-type {
    border-bottom: none;
}

.content-section h2 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.content-section h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    color: var(--secondary-blue);
    margin: 1.5rem 0 0.8rem;
}

.content-section p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

/* רשימות */
.custom-list {
    list-style-position: inside;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
}

.custom-list li {
    margin-bottom: 0.8rem;
    padding-right: 0.5rem;
}

.custom-list strong {
    color: var(--primary-blue);
}

.term {
    font-family: 'Courier New', monospace;
    background-color: #f1f8ff;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    border: 1px solid #d1e3ff;
    color: #0366d6;
    font-weight: 500;
    font-size: 0.95em;
}

/* תיבות מיוחדות */
.note-box {
    background-color: #fff3e0;
    border-right: 4px solid var(--accent-orange);
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.case-study {
    background-color: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.lesson {
    font-style: italic;
    background-color: #f7fee7;
    padding: 1rem;
    border-radius: 6px;
    border-right: 3px solid var(--success-green);
    margin-top: 1rem;
}

/* רשת טרמינולוגיה */
.terminology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.term-card {
    background: white;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 1.2rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.term-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.term-card h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
    font-size: 1.2rem;
}

/* קישורים */
.forum-link {
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 600;
}

.forum-link:hover {
    text-decoration: underline;
}

.content-cluster {
    list-style: none;
    margin-right: 1rem;
}

.content-cluster li {
    margin-bottom: 0.8rem;
    padding-right: 1rem;
    position: relative;
}

.content-cluster li::before {
    content: '↗';
    position: absolute;
    right: 0;
    color: var(--accent-orange);
}

/* אזור CTA */
.cta-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #bae6fd;
}

.cta-box {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-top: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to left, var(--accent-orange), #ff9800);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(245, 124, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(245, 124, 0, 0.4);
}

.cta-note {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-style: italic;
    margin-top: 1rem;
}

/* תגיות וכותרת תחתונה */
.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.tag-label {
    font-weight: 700;
    color: var(--primary-blue);
}

.tag {
    background-color: #e2e8f0;
    color: var(--dark-text);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background-color 0.3s;
}

.tag:hover {
    background-color: #cbd5e0;
}

.license {
    font-size: 0.85rem;
    color: var(--medium-gray);
    border-top: 1px dashed var(--light-gray);
    padding-top: 1rem;
}

.seo-note {
    background-color: #f7fafc;
    padding: 0.8rem;
    border-radius: 6px;
    margin-top: 0.8rem;
    border-right: 3px solid var(--primary-blue);
}

/* סרגל צד */
.sidebar-widget {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--light-gray);
}

.sidebar-widget h3 {
    font-family: var(--heading-font);
    color: var(--primary-blue);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed #eee;
}

.sidebar-widget li:last-child {
    border-bottom: none;
}

.sidebar-widget a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.sidebar-widget a:hover {
    color: var(--accent-orange);
    padding-right: 5px;
}

.sidebar-widget dl dt {
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 0.8rem;
}

.sidebar-widget dl dd {
    margin-right: 1rem;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.forum-stats p {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* כותרת תחתונה לאתר */
.site-footer {
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
    font-size: 0.9rem;
}

.site-footer p {
    margin: 0.5rem 0;
}

/* רספונסיביות */
@media (max-width: 1100px) {
    .article-container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .terminology-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .main-article {
        padding: 1.5rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .main-nav ul {
        justify-content: center;
        gap: 1rem;
    }
    
    .terminology-grid {
        grid-template-columns: 1fr;
    }
    
    .tags {
        justify-content: flex-start;
    }
}/* End custom CSS */