/* Home Page Specific Styles */
.home-page {
	height: 100vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.home-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

/* Carousel adjustments for home */
.home-page .carousel-container {
	flex: 1;
	height: auto;
	min-height: 0;
}

/* Tagline adjustments for home */
.home-page .tagline {
	padding: 30px 20px;
	margin: 0 auto;
	background: #fff;
}

.home-page .tagline p {
	font-size: 24px;
	line-height: 1.5;
	max-width: 900px;
	margin: 0 auto;
}

/* Footer adjustments for home */
.home-page footer {
	padding: 20px;
	margin-top: auto;
}

.home-page .social-links {
	margin-bottom: 10px;
}

.home-page footer p {
	font-size: 13px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.home-page .tagline {
		padding: 20px 15px;
	}
	
	.home-page .tagline p {
		font-size: 14px;
	}
	
	.home-page footer {
		padding: 15px;
	}
	
	.home-page footer p {
		font-size: 12px;
	}
}

@media (max-height: 700px) {
	/* For shorter screens, make tagline more compact */
	.home-page .tagline {
		padding: 20px 15px;
	}
	
	.home-page .tagline p {
		font-size: 14px;
	}
}