/*
Theme Name: Gulf Unique Contracting
Description: A professional WordPress theme for Gulf Unique Contracting company, featuring modern design and comprehensive business sections.
Author: Gulf Unique Team
Version: 1.0.0
Text Domain: gulfunique
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* 
This theme uses embedded styles in each template file for better performance and organization.
All CSS is contained within the respective PHP template files:
- front-page.php contains all front page styles
- header.php contains header-specific styles  
- footer.php contains footer-specific styles
- Other template files contain their own embedded styles

This approach ensures:
1. Better performance - only load styles needed for each page
2. Easier maintenance - styles are co-located with their HTML
3. Reduced HTTP requests - no separate CSS file loading
4. Better organization - each template is self-contained
*/

/* Essential WordPress theme styles only */
html {
    direction: rtl;
}

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
    margin: 0;
    padding: 0;
}

/* Screen reader text for accessibility */
.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 !important;
    width: 1px;
    word-wrap: normal !important;
}

/* WordPress alignment classes */
.alignleft {
    float: left;
    margin-right: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}