/*
	Theme Name: Hello Elementor Child
	Theme URI: https://elementor.com/hello-theme/
	Description: A child theme for Hello Elementor theme. Customize your header, footer, and styles here without modifying the parent theme.
	Author: You
	Author URI: https://yourwebsite.com
	Template: hello-elementor
	Version: 1.0.0
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor-child
*/

/* ==========================================================================
   Custom Styles - Add your CSS below this line
   ========================================================================== */

/* --- Header Styles --- */
.site-header {
	background-color: #ffffff;
	padding: 15px 0;
	border-bottom: 1px solid #e0e0e0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.site-header .site-branding {
	display: flex;
	align-items: center;
}

.site-header .site-title a {
	color: #333333;
	text-decoration: none;
	font-size: 24px;
	font-weight: 700;
}

.site-header .site-title a:hover {
	color: #0073aa;
}

.site-header .site-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 20px;
}

.site-header .site-navigation a {
	color: #333333;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.site-header .site-navigation a:hover {
	color: #0073aa;
}

/* --- Footer Styles --- */
.site-footer {
	background-color: #1a1a2e;
	color: #e0e0e0;
	padding: 40px 0 20px;
}

.site-footer a {
	color: #7eb8da;
	text-decoration: none;
	transition: color 0.3s ease;
}

.site-footer a:hover {
	color: #ffffff;
}

.site-footer .footer-top {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: space-between;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
}

.site-footer .footer-bottom {
	text-align: center;
	padding-top: 20px;
	margin-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 14px;
}

/* --- General Overrides --- */
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	color: #333333;
	line-height: 1.6;
}

/* --- Responsive --- */
@media (max-width: 767px) {
	.site-header {
		padding: 10px 0;
	}

	.site-header .site-navigation ul {
		flex-direction: column;
		gap: 10px;
	}

	.site-footer .footer-top {
		flex-direction: column;
	}
}
