/* =========================================================
   PACA HERO SLIDER
   ========================================================= */

.paca-hero-slider {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	height: 40vh;
	overflow: hidden;
	z-index: 1;
}

.paca-hero-slides {
	height: 100%;
	z-index: 2;
}

.paca-hero-slide {
	height: 40vh !important;
	background-size: cover !important;

	/*
	 * Do NOT use !important here.
	 * The focal point is supplied inline by PHP.
	 */
	background-position: center center;

	background-repeat: no-repeat !important;
	position: relative;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	z-index: 3;
}

.paca-hero-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 4;
}

.paca-hero-content {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
	width: 100%;
	max-width: 600px;
	padding: 0 20px;
	text-align: center;
	box-sizing: border-box;
}

.paca-hero-content h1 {
	margin: 0 0 0.8rem 0;
	color: white;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 700;
	line-height: 1.2;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.paca-hero-content p {
	margin: 0 0 1.5rem 0;
	color: white;
	font-size: clamp(1.1rem, 2.5vw, 1.4rem);
	line-height: 1.4;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.paca-hero-buttons {
	display: flex !important;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.5rem;
	visibility: visible !important;
	opacity: 1 !important;
}

.paca-hero-button {
	display: inline-block !important;
	padding: 12px 24px;
	color: white;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 700;
	border-radius: 8px;
	transition: all 0.3s ease;
	visibility: visible !important;
	opacity: 1 !important;
}

.paca-hero-button.primary {
	background: #007cba;
	color: white;
	border: 2px solid #007cba;
	border-radius: 8px;
}

.paca-hero-button.secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}


/* =========================================================
   SLICK DOTS
   ========================================================= */

.paca-hero-slides .slick-dots {
	position: absolute !important;
	bottom: 15px !important;
	left: 0 !important;
	width: 100% !important;
	z-index: 10 !important;

	display: flex !important;
	justify-content: center !important;
	align-items: center !important;

	gap: 8px !important;
	margin: 0 !important;
	padding: 0 !important;

	text-align: center !important;
}

.paca-hero-slides .slick-dots li {
	display: block !important;
	width: 12px !important;
	height: 12px !important;
	margin: 0 !important;
	padding: 0 !important;
}

.paca-hero-slides .slick-dots li button {
	width: 12px !important;
	height: 12px !important;

	margin: 0 !important;
	padding: 0 !important;

	border: none !important;
	border-radius: 50% !important;

	background: rgba(255, 255, 255, 0.5) !important;

	font-size: 0 !important;

	transition: all 0.3s ease !important;
}

.paca-hero-slides .slick-dots li button:before {
	display: none !important;
	content: none !important;
}

.paca-hero-slides .slick-dots li.slick-active button {
	background: white !important;
	transform: scale(1.2) !important;
}


/* =========================================================
   NO ARROWS
   ========================================================= */

.paca-hero-slides .slick-prev,
.paca-hero-slides .slick-next,
.hero-slick-prev,
.hero-slick-next {
	display: none !important;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 769px) and (max-width: 1024px) {

	.paca-hero-slider {
		height: 45vh;
	}

	.paca-hero-slide {
		height: 45vh !important;
	}

	.paca-hero-content {
		max-width: 750px;
		padding: 0 30px;
	}

	.paca-hero-content h1 {
		font-size: clamp(2.2rem, 5vw, 3.4rem);
		line-height: 1.15;
		margin-bottom: 1rem;
	}

	.paca-hero-content p {
		font-size: clamp(1.3rem, 3vw, 1.7rem);
		line-height: 1.4;
		margin-bottom: 1.5rem;
	}

	.paca-hero-buttons {
		gap: 1rem;
		margin-top: 1.5rem;
	}

	.paca-hero-button {
		padding: 14px 30px;
		font-size: 1.2rem;
		min-width: 200px;
	}
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

	.paca-hero-slider {
		width: 100%;
		height: 45vh;
		margin: 10px 0;
	}

	.paca-hero-slide {
		height: 45vh !important;
	}

	.paca-hero-content {
		position: absolute;
		top: 45% !important;
		left: 50%;
		transform: translate(-50%, -50%);

		width: calc(100% - 30px);
		max-width: 100%;

		padding: 0 15px 45px 15px !important;

		box-sizing: border-box;
	}

	.paca-hero-content h1 {
		font-size: clamp(1.5rem, 7vw, 2.2rem);
		line-height: 1.15;
		margin: 0 0 0.6rem 0;
	}

	.paca-hero-content p {
		font-size: clamp(1rem, 4.5vw, 1.25rem);
		line-height: 1.3;
		margin: 0 0 1rem 0;
	}

	.paca-hero-buttons {
		flex-direction: column;
		align-items: center;
		gap: 0.8rem;
		margin-top: 1rem;
		margin-bottom: 15px !important;
	}

	.paca-hero-button {
		width: 180px;
		padding: 10px 20px;
		text-align: center;
		font-size: 1rem;
		font-weight: 700;
		box-sizing: border-box;
	}

	.paca-hero-slides .slick-dots {
		bottom: 10px !important;
		gap: 7px !important;
	}

	.paca-hero-slides .slick-dots li,
	.paca-hero-slides .slick-dots li button {
		width: 10px !important;
		height: 10px !important;
	}
}