/**
 * Theme Name: Soor
 * Theme URI: https://soor-sa.com/
 * Author: Kapsolat
 * Author URI: https://kapsolat.com/
 * Description: قالب وردبريس مخصص لمؤسسات المقاولات والخدمات - متجاوب وسهل التخصيص
 * Version: 1.0.0
 * Text Domain: soor
 * License: GPL v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * Tags: custom-background, custom-logo, custom-menu, featured-images, translation-ready, rtl-language-support, construction, services, business
 */

/*------------------------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Normalize
2.0 Typography
3.0 Layout
4.0 Header & Navigation
5.0 Hero Section
6.0 Services Section
7.0 About Section
8.0 Projects Section
9.0 Testimonials Section
10.0 Contact Section
11.0 Footer
12.0 Responsive Design
------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------
1.0 Normalize
------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap');

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
}

/*------------------------------------------------------------------------------
2.0 Typography
------------------------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
    font-weight: 700;
    line-height: 1.2;
    color: #2c3e50;
    font-family: 'Tajawal', sans-serif;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin: 0 0 1rem 0;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/*------------------------------------------------------------------------------
3.0 Layout
------------------------------------------------------------------------------*/
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

/*------------------------------------------------------------------------------
4.0 Header & Navigation
------------------------------------------------------------------------------*/
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-branding img {
    max-height: 60px;
    width: auto;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin: 0 1rem;
}

.main-navigation a {
    color: #2c3e50;
    font-weight: 600;
    padding: 0.5rem 0;
    font-family: 'Tajawal', sans-serif;
}

.main-navigation a:hover {
    color: #3498db;
}

/*------------------------------------------------------------------------------
12.0 Responsive Design
------------------------------------------------------------------------------*/
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .header-inner {
        flex-direction: column;
        padding: 0.5rem 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
        text-align: center;
    }
    
    .main-navigation li {
        margin: 0.5rem 0;
    }
}