/*
Theme Name: ListingHive Child - Babysitterka
Theme URI: https://babysitterka.pl
Description: Child theme for ListingHive customized for Babysitterka platform
Author: Babysitterka
Author URI: https://babysitterka.pl
Template: listinghive
Version: 3.13
Text Domain: listinghive-child
Domain Path: /languages
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Import parent theme styles */
@import url('../listinghive/style.css');

/* Custom child theme styles */
:root {
	--primary-color: #FF6B6B;
	--secondary-color: #4ECDC4;
	--text-color: #333333;
	--border-color: #E0E0E0;
}

/* Override parent theme styles here */
body {
	font-family: 'Open Sans', sans-serif;
	color: var(--text-color);
}

a {
	color: var(--primary-color);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* Add custom styles for Babysitterka branding */
.site-header {
	background-color: #FFFFFF;
	border-bottom: 1px solid var(--border-color);
}

.site-footer {
	background-color: #F8F8F8;
	border-top: 1px solid var(--border-color);
}

/* Responsive design */
@media (max-width: 768px) {
	body {
		font-size: 14px;
	}
}