/**
 * Landing Hero Section Styles
 * TDT Parallax Theme
 */

/* ============================================
   Landing Hero Container
   ============================================ */

.landing-hero {
	position: relative;
	height: 100vh;
	overflow: hidden;
	width: 100%;
}

/* ============================================
   Carousel Container
   ============================================ */

.hero-carousel {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.hero-slide.active {
	opacity: 1;
	z-index: 2;
}

/* ============================================
   Slide Captions
   ============================================ */

.hero-slide-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem 2rem;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	font-size: 1.125rem;
	text-align: center;
	z-index: 3;
}

/* ============================================
   Centered Content Overlay
   ============================================ */

.hero-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
	z-index: 10;
	width: 90%;
	max-width: 800px;
}

.hero-title {
	margin: 0 0 1rem;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-tagline {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 400;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* ============================================
   Responsive Adjustments
   Note: Mobile breakpoint (768px) styles are generated
   dynamically in PHP (functions.php) to use configurable breakpoint.
   ============================================ */

@media screen and (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}

	.hero-tagline {
		font-size: 1rem;
	}

	.hero-slide-caption {
		padding: 0.75rem 1rem;
		font-size: 0.875rem;
	}
}
