/* Header Styles */
.site-header {
	background-color: var(--text-light);
	border-bottom: 1px solid #e0e0e0;
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1;
}

.site-branding img {
	height: 90px;
	width: auto;
}

.site-info {
	flex: 1;
}

.site-title {
	font-size: 1.5rem;
	margin: 0;
}

.site-title a {
	color: var(--text-dark);
	text-decoration: none;
}

.site-description {
	font-size: 0.875rem;
	color: #666;
	margin: 0;
}

/* Navigation */
.main-navigation {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.main-navigation a {
	color: var(--text-dark);
	font-weight: 500;
	transition: color 0.3s ease;
}

.main-navigation a:hover {
	color: var(--gold);
}

/* Footer */
.site-footer {
	background-color: var(--text-dark);
	color: var(--text-light);
	padding: 3rem 0 1rem;
	margin-top: 4rem;
}

.footer-widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3 {
	color: var(--gold);
	font-size: 1.1rem;
	margin-bottom: 1rem;
}

.footer-section ul {
	list-style: none;
	padding: 0;
}

.footer-section li {
	margin-bottom: 0.5rem;
}

.footer-section a {
	color: #bbb;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: var(--gold);
}

.social-links {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.social-link {
	display: inline-block;
	padding: 0.5rem 1rem;
	background-color: var(--gold);
	color: var(--text-dark);
	border-radius: 4px;
	font-size: 0.875rem;
	transition: background-color 0.3s ease;
}

.social-link:hover {
	background-color: var(--gold-hover);
}

.newsletter-form {
	display: flex;
	gap: 0.5rem;
	margin-top: 1rem;
}

.newsletter-form input {
	flex: 1;
	min-width: 200px;
	padding: 10px;
	border: none;
	border-radius: 4px;
}

.footer-bottom {
	text-align: center;
	border-top: 1px solid #444;
	padding-top: 2rem;
	color: #999;
}

/* Posts Grid */
.posts-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.post-item {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.post-item .entry-image {
	overflow: hidden;
	height: 200px;
}

.post-item .entry-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-item .entry-content {
	padding: 1.5rem;
}

.post-item .entry-title {
	margin: 0 0 0.5rem 0;
	font-size: 1.25rem;
}

.post-meta {
	font-size: 0.875rem;
	color: #666;
	margin-top: 1rem;
}

/* Service Cards */
.service-card {
	transition: all 0.3s ease;
	cursor: pointer;
}

.service-card:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	transform: translateY(-5px);
}

.service-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px 8px 0 0;
	margin: -2rem -2rem 1rem -2rem;
	border-radius: 0;
}

/* Forms */
.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
}

#form-message {
	padding: 1rem;
	border-radius: 4px;
	font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
	.header-container {
		flex-direction: column;
		gap: 1rem;
	}

	.main-navigation {
		width: 100%;
		justify-content: center;
		gap: 1rem;
	}

	.hero-section h1 {
		font-size: 2rem;
	}

	.posts-list {
		grid-template-columns: 1fr;
	}

	.services-grid {
		grid-template-columns: 1fr !important;
	}

	.footer-widgets {
		grid-template-columns: 1fr;
	}

	.newsletter-form {
		flex-direction: column;
	}

	.newsletter-form input,
	.newsletter-form button {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.hero-section h1 {
		font-size: 1.5rem;
	}

	.main-navigation {
		gap: 0.5rem;
	}

	.main-navigation a {
		font-size: 0.875rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	h3 {
		font-size: 1.1rem;
	}
}
