/*
Theme Name: Chatblend
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A simple, blank WordPress theme optimized for Elementor page builder. Clean and minimal design that works perfectly with Elementor's drag-and-drop interface.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chatblend
Tags: elementor, blank, simple, minimal, page-builder
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* RTL Support */
body[dir="rtl"] .site-container {
    text-align: right;
}

/* Header */
.site-header {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.site-title {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}

.site-title a {
    text-decoration: none;
    color: #333;
}

.site-description {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Navigation */
.main-navigation {
    margin-top: 20px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.main-navigation a:hover {
    color: #0073aa;
}

/* RTL Navigation Support */
body[dir="rtl"] .main-navigation ul {
    flex-direction: row-reverse;
}

/* Content Area */
.site-content {
    padding: 40px 0;
    min-height: 60vh;
}

/* Footer */
.site-footer {
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
    margin-top: 60px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Elementor Compatibility */
.elementor-page .site-content {
    padding: 0;
}

.elementor-page .site-header,
.elementor-page .site-footer {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .site-container {
        padding: 0 15px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* RTL Responsive */
@media (max-width: 768px) {
    body[dir="rtl"] .main-navigation ul {
        flex-direction: column;
    }
}
