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

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

/* Carousel adjustments for home - Full width slideshow showing complete images */
.home-page .carousel-container {
	flex: none;
	width: 100%;
	position: relative;
	overflow: hidden;
	background: #000;
	height: 70vh;
}

/* Make carousel slides position relative for auto height */
.home-page .carousel-slide {
	position: relative;
	width: 100%;
	height: auto;
	opacity: 0;
	display: none;
	transition: opacity 1s ease-in-out;
}

.home-page .carousel-slide.active {
	opacity: 1;
	display: block;
}

/* Show FULL image - no cropping, full landscape view */
.home-page .carousel-slide img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain; /* Show complete image without cropping */
	object-position: center center;
}

/* Reposition dots for auto-height carousel */
.home-page .carousel-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}

/* Tagline adjustments for home */
.home-page .tagline {
	padding: 40px 20px;
	margin: 0 auto;
	background: #fff;
	flex: none;
	width: 100%;
}

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

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
	.home-page {
		overflow-x: hidden;
	}
	
	/* Mobile: Full width landscape image - same as desktop */
	.home-page .carousel-container {
		width: 100%;
		aspect-ratio: unset;
		height: auto;
	}
	
	.home-page .carousel-slide img {
		width: 100%;
		height: auto;
		object-fit: contain; /* Full image, no cropping */
	}
	
	.home-page .carousel-dots {
		bottom: 15px;
	}
	
	.home-page .tagline {
		padding: 25px 20px;
	}
	
	.home-page .tagline p {
		font-size: 22px;
		line-height: 1.4;
	}
	
	.home-page footer {
		padding: 20px 15px;
	}
	
	.home-page footer p {
		font-size: 11px;
	}
	
	.home-page .social-links {
		margin-bottom: 8px;
	}
}

/* For very short screens (landscape mobile) */
@media (max-height: 600px) {
	.home-page .tagline {
		padding: 15px 15px;
	}
	
	.home-page .tagline p {
		font-size: 14px;
		line-height: 1.3;
	}
	
	.home-page footer {
		padding: 10px;
	}
	
	.home-page footer p {
		font-size: 10px;
	}
}

/* Large desktop screens */
@media (min-width: 1400px) {
	.home-page .tagline p {
		font-size: 20px;
	}
}