/* Parallax House Sections CSS */

.parallax-section {
	position: relative;
	height: 100vh;
	min-height: 600px;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.parallax-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.parallax-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: white;
	max-width: 800px;
	padding: 40px 20px;
	margin: 0 auto;
}

.parallax-content h2 {
	font-size: 3.5rem;
	font-weight: bold;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	animation: fadeInUp 1s ease-out;
	color: #fff;
}

.parallax-content .capacity {
	font-size: 1.3rem;
	margin-bottom: 30px;
	color: #ffd700;
	font-weight: 600;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
	animation: fadeInUp 1s ease-out 0.2s both;
}

.parallax-content .description {
	font-size: 2rem;
	margin-bottom: 40px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
	animation: fadeInUp 1s ease-out 0.4s both;
}

.parallax-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 1s ease-out 0.6s both;
}

.parallax-btn {
	display: inline-block;
	padding: 15px 30px;
	border: 2px solid #fff;
	color: white;
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	border-radius: 50px;
	min-width: 180px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
}

.parallax-btn:hover {
	background: rgba(255, 255, 255, 0.9);
	color: #333;
	text-decoration: none;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.parallax-btn.btn-primary {
	background: rgba(255, 215, 0, 0.8);
	border-color: #ffd700;
	color: #333;
}

.parallax-btn.btn-primary:hover {
	background: #ffd700;
	color: #333;
}

/* Animation keyframes */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile responsive design */
@media (max-width: 768px) {
	.parallax-section {
		height: 80vh;
		min-height: 500px;
		background-attachment: scroll;
	}

	.parallax-content h2 {
		font-size: 2.5rem;
	}

	.parallax-content .capacity {
		font-size: 1.1rem;
	}

	.parallax-content .description {
		font-size: 1rem;
		line-height: 1.6;
	}

	.parallax-buttons {
		flex-direction: column;
		align-items: center;
	}

	.parallax-btn {
		width: 100%;
		max-width: 250px;
		margin-bottom: 10px;
	}
}

@media (max-width: 480px) {
	.parallax-content {
		padding: 20px 15px;
	}

	.parallax-content h2 {
		font-size: 2rem;
		margin-bottom: 15px;
	}

	.parallax-content .capacity {
		font-size: 1rem;
		margin-bottom: 20px;
	}

	.parallax-content .description {
		font-size: 0.9rem;
		margin-bottom: 30px;
	}

	.parallax-btn {
		padding: 12px 25px;
		font-size: 0.9rem;
	}
}

/* Custom styles for specific house sections */
.house-1 {
	background-image: url('../images/goods/1/IMG_4910.jpg');
}

.house-2 {
	background-image: url('../images/goods/2/IMG_5026.jpg');
}

.house-3 {
	background-image: url('../images/goods/3/Kw8PXmD0lcs.jpg');
}

.house-4 {
	background-image: url('../images/goods/4/IMG_5269.jpg');
}

.house-5 {
	background-image: url('../images/goods/5/IMG_5011.jpg');
}

.house-6 {
	background-image: url('../images/goods/6/Orbita51-0086.jpg');
}

.cottage-160 {
	background-image: url('../images/goods/160/1200-2195.jpg');
}

/* Smooth scrolling enhancement */
html {
	scroll-behavior: smooth;
}

/* Loading animation for background images */
.parallax-section {
	transition: opacity 0.5s ease-in-out;
}

.parallax-section.loaded {
	opacity: 1;
}