* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Georgia', 'Times New Roman', serif;
	background-color: #f5f1eb;
	color: #2d2d2d;
}

/* Header */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 4rem;
	background-color: #f5f1eb;
}

.logo-container {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.logo {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo svg {
	width: 35px;
	height: 35px;
	stroke: #2d2d2d;
	fill: none;
	stroke-width: 2;
}

.site-title {
	font-size: 1.3rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-weight: 400;
}

nav {
	display: flex;
	gap: 2.5rem;
	align-items: center;
}

nav a {
	text-decoration: none;
	color: #2d2d2d;
	font-size: 1rem;
	transition: opacity 0.3s ease;
}

nav a:hover {
	opacity: 0.6;
}

/* Hero Section */
.hero {
	position: relative;
	height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

.hero-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	color: white;
	max-width: 900px;
	padding: 2rem;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: 2rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
}

.btn {
	padding: 0.9rem 2rem;
	border: none;
	border-radius: 25px;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.btn-primary {
	background: rgba(245, 241, 235, 0.95);
	color: #2d2d2d;
}

.btn-primary:hover {
	background: rgba(245, 241, 235, 1);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
	background: rgba(245, 241, 235, 0.85);
	color: #2d2d2d;
}

.btn-secondary:hover {
	background: rgba(245, 241, 235, 1);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
	text-align: center;
	padding: 5rem 2rem;
	max-width: 900px;
	margin: 0 auto;
}

.about p {
	font-size: 1.8rem;
	line-height: 1.6;
	font-weight: 300;
}

/* Properties Section */
.properties {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	padding: 3rem 4rem;
	max-width: 1400px;
	margin: 0 auto;
}

.property-card {
	text-align: center;
	cursor: pointer;
}

.property-image {
	width: 100%;
	height: 350px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 1.5rem;
}

.property-card h3 {
	font-size: 1.8rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
}

.property-card p {
	font-size: 1.1rem;
	color: #666;
}

/* Coming Soon */
.property-card.coming-soon {
	position: relative;
	pointer-events: none;
	opacity: 0.7;
}

.property-card.coming-soon::after {
	content: "Coming Soon";
	position: absolute;
	inset: 0;
	background: rgba(245, 241, 235, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #2d2d2d;
	border-radius: 8px;
}


/* Features Section */
.features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	padding: 4rem;
	max-width: 1400px;
	margin: 0 auto;
	text-align: center;
}

.feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.feature-icon {
	width: 40px;
	height: 40px;
}

.feature span {
	font-size: 1.1rem;
}

/* Newsletter Section */
.newsletter {
	background-color: #d9d3ca;
	padding: 4rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}

.newsletter h2 {
	font-size: 2rem;
	font-weight: 400;
	flex: 1;
}

.newsletter-form {
	display: flex;
	gap: 1rem;
	flex: 1;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.newsletter input {
	flex: 1;
	max-width: 400px;
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 25px;
	font-size: 1rem;
	background: rgba(255, 255, 255, 0.8);
}

.newsletter button {
	background: #6b5d52;
	color: white;
	padding: 0.8rem 2rem;
	border: none;
	border-radius: 25px;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.newsletter button:hover {
	background: #5a4d44;
	transform: translateY(-2px);
}

.newsletter .break {
  flex-basis: 100%;
  height: 0;
}

/* Blog Grid */
.blog-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 3rem 4rem;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}

/* Blog Post Card */
.blog-post {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.blog-post:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.blog-content {
	padding: 2rem;
}

.blog-date {
	font-size: 0.9rem;
	color: #999;
	margin-bottom: 0.5rem;
}

.blog-title {
	font-size: 1.5rem;
	font-weight: 400;
	margin-bottom: 1rem;
	color: #2d2d2d;
}

.blog-excerpt {
	font-size: 1rem;
	line-height: 1.6;
	color: #666;
	margin-bottom: 1.5rem;
}

.read-more {
	color: #6b5d52;
	text-decoration: none;
	font-weight: 600;
	transition: opacity 0.3s ease;
}

.read-more:hover {
	opacity: 0.6;
}

/* Blog Page Title */
.blog-page-header {
	text-align: center;
	padding: 4rem 2rem 2rem 2rem;
}

.blog-page-header h1 {
	font-size: 3.5rem;
	font-weight: 400;
	margin-bottom: 1rem;
}

.blog-page-header p {
	font-size: 1.2rem;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
	header {
		padding: 1.5rem 2rem;
	}

	.properties {
		padding: 2rem;
	}

	.features {
		grid-template-columns: repeat(2, 1fr);
		padding: 3rem 2rem;
	}
	
	.blog-container {
		padding: 2rem;
	}

	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	header {
		flex-direction: column;
		gap: 1rem;
	}

	nav {
		gap: 1rem;
		flex-wrap: wrap;
		justify-content: center;
	}

	nav a {
		font-size: 0.9rem;
	}

	.site-title {
		font-size: 1rem;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.about p {
		font-size: 1.3rem;
	}

	.properties {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.features {
		grid-template-columns: 1fr;
	}

	.newsletter {
		flex-direction: column;
		text-align: center;
	}

	.newsletter-form {
		flex-direction: column;
		width: 100%;
	}

	.newsletter input {
		max-width: 100%;
	}
	
	.blog-grid {
		grid-template-columns: 1fr;
	}
}