/*
Theme Name: Salem Construction
Theme URI: https://example.com/salem-construction
Author: Antigravity
Author URI: https://example.com
Description: A custom WordPress theme for Salem Construction, built for performance and Elementor compatibility.
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: salem-construction
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Reset & Basics */
:root {
	--primary-color: #fdd835; /* Construction Yellow */
	--secondary-color: #333333; /* Dark Grey */
	--text-color: #212121;
	--bg-color: #ffffff;
}

body {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	color: var(--text-color);
	background-color: var(--bg-color);
	line-height: 1.6;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--secondary-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--primary-color);
}

/* Header */
.site-header {
	background: #fff;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
	padding: 1rem 0;
}

.site-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1.5rem;
}

/* Footer */
.site-footer {
	background: var(--secondary-color);
	color: #fff;
	padding: 2rem 0;
	text-align: center;
}

/* Layout */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}
