/* ============================================
   HOME PAGE SPECIFIC STYLES
   All styles below are scoped to .home-page to prevent affecting other pages
   ============================================ */

/* Home page hero section */
.home-page .home-hero-stack {
	position: relative;
	overflow: hidden;
	min-height: 88vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-page .home-hero-stack .hero-parallax-image {
	position: absolute;
	top: -10%;
	left: 0;
	width: 100%;
	height: 120%;
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
	transform: translateZ(0);
	will-change: transform;
}

.home-page .home-hero-stack .main-title-container {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 120px 30px 60px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.home-page .home-hero-stack .main-title-container .main-h1-heading.home-title,
.home-page .home-hero-stack .main-title-container .section-header-title.home-title {
	padding-top: 0;
	padding-bottom: 24px;
}

/* Home page hero title and subtitle */
.home-page .home-hero-stack .home-title {
	color: var(--amp-yellow);
	font-size: 48px;
	line-height: 1.2;
	font-weight: 700;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	opacity: 1;
}

.home-page .home-hero-stack .home-subtitle {
	color: #ffffff;
	font-size: 24px;
	line-height: 1.5;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	opacity: 1;
	text-transform: capitalize;
	max-width: 800px;
}

.home-page .home-hero-stack .home-title span,
.home-page .home-hero-stack .home-subtitle span {
	opacity: 1;
	transform: translateY(0);
}

/* Home page sponsorship section */
.home-page .home-sponsorship-section {
	padding: 0 30px;
	display: flex;
	position: relative;
}

/* Ensure sponsor cards can be transformed for animation */
.home-page .sponsor-feat-div {
	will-change: transform;
}

/* Home page feature section */
.home-page .home-feature-section {
	padding: 80px 30px 0;
}

.home-page .home-feature-section h4 {
	color: var(--amp-yellow);
	text-transform: uppercase;
}

/* Home page logos section */
/* Logos section home page styles moved to assets/css/logos-section.css */

/* Home page testimonial cards */
.home-page .home-testimonial-card:hover {
	background-color: var(--white);
}

/* Home page margin bottom classes - use utility classes where possible */
/* .home-margin-bottom-136 → .margin-bottom-md (16px) */
/* .home-margin-bottom-137 → .margin-bottom-2xl (40px) */
/* .home-margin-bottom-139 → .margin-bottom-4xl (80px) */
.home-margin-bottom-136 {
	margin-bottom: 16px;
}

/* Override for home testimonial cards */
.home-page .home-testimonial-card .home-margin-bottom-137:last-of-type {
	margin-bottom: 8px;
}

/* Home page feature card styles */
.home-feature-card-filled {
	background-color: var(--amp-light-gray);
	border-radius: 12px;
	padding: 32px;
}

/* Home page grid styles */
.home-grid-three-column-2 {
	grid-column-gap: 40px;
	grid-row-gap: 40px;
	grid-template-rows: auto;
	grid-template-columns: 1fr 1fr 1fr;
}

/* Home page heading styles */
.home-h5-heading {
	text-align: center;
	letter-spacing: -.02em;
	-webkit-text-stroke-color: var(--amp-yellow);
	margin-top: 0;
	margin-bottom: 0;
	font-family: Gotham, Arial, sans-serif;
	font-size: 32px;
	line-height: 1.4;
}

/* Home page container styles */

/* Home page icon styles */

/* Home page paragraph styles */
/* .home-paragraph-regular-2 - styles handled elsewhere */

/* Home page testimonial styles */

/* Home page testimonial section */
.home-page .home-testimonial-section {
	padding: 0 30px 0;
	position: relative;
	overflow: visible;
	padding-bottom: 60px; /* Add bottom padding to prevent SVG from being trimmed */
}

/* Swiper Carousel Styles for Home Page */
.home-page .home-testimonial-slider-regular-2.swiper {
	width: 100%;
	padding-left: 20px; /* Add left padding to allow box shadows to be visible */
	padding-right: 20px; /* Add right padding to allow box shadows to be visible */
	padding-bottom: 50px; /* Space for pagination */
	padding-top: 8px; /* Add top padding to accommodate box shadow */
	overflow: hidden; /* Hide partial cards at edges - only clip at container level */
	box-sizing: border-box; /* Include padding in width calculation */
	position: relative; /* Ensure proper positioning context */
}

.home-page .home-testimonial-slider-regular-2 .swiper-wrapper {
	display: flex;
	align-items: stretch;
	width: auto; /* Let Swiper calculate width */
	overflow: visible; /* Allow slides to move freely */
}

.home-page .home-testimonial-slider-regular-2 .swiper-slide {
	height: auto;
	display: flex;
	box-sizing: border-box;
	flex-shrink: 0; /* Prevent slides from shrinking */
	overflow: visible; /* Allow box shadows to be visible */
	/* Width is calculated by Swiper based on slidesPerView */
}

/* Swiper Pagination Styles - matching news section */
.home-page .home-testimonial-slider-regular-2 .swiper-pagination {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	z-index: 10;
}

.home-page .home-testimonial-slider-regular-2 .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.4);
	opacity: 1;
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.home-page .home-testimonial-slider-regular-2 .swiper-pagination-bullet-active {
	width: 12px;
	height: 12px;
	background-color: var(--white);
}

/* Mobile: 1 card per slide */
@media screen and (max-width: 639px) {
	.home-page .home-testimonial-section {
		padding: 0 10px 0; /* Reduced horizontal padding on mobile */
	}
	
	.home-page .home-testimonial-slider-regular-2.swiper {
		padding-left: 10px; /* Add padding for card spacing */
		padding-right: 10px; /* Add padding for card spacing */
		overflow: hidden; /* Ensure only one card is visible */
	}
	
	.home-page .home-testimonial-slider-regular-2 .swiper-slide {
		/* Let Swiper calculate width - don't override */
		display: flex;
		justify-content: center; /* Center the card within slide */
		/* Styles handled by testimonial-section.css */
	}
}

/* Home page button styles */
.home-page .home-hero-stack .main-title-container a.amplifibutton.home.w-inline-block {
	margin-top: 32px;
}

.home-page .home-hero-stack .main-title-container a.amplifibutton.home.w-inline-block:hover,
.home-page .home-hero-stack .main-title-container a.amplifibutton.home.w-inline-block:focus,
.home-page .home-hero-stack .main-title-container a.amplifibutton.home.w-inline-block:active {
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}

/* Responsive styles for home page */
@media screen and (max-width: 991px) {
	.home-page .home-hero-stack {
		min-height: 90vh;
	}
	
	.home-page .home-hero-stack .main-title-container {
		padding: 100px 15px 40px;
	}
	
	.home-page .home-sponsorship-section {
		padding-top: 72px;
		padding-bottom: 72px;
	}
	
	.home-page .home-feature-section {
		padding-top: 72px;
		padding-bottom: 72px;
	}
}

@media screen and (max-width: 767px) {
	.home-page .home-hero-stack {
		min-height: 85vh;
	}
	
	.home-page .home-hero-stack .main-title-container {
		padding: 80px 15px 40px;
	}

	.home-page .home-title {
		font-size: 40px;
	}
	
	.home-page .home-subtitle {
		text-align: center;
		font-size: 20px;
	}
	
	.home-page .home-sponsorship-section {
		padding: 0 20px;
	}
	
	.home-page .home-feature-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	
	/* Logos section responsive styles moved to assets/css/logos-section.css */
}
