/* Baraat CTA Banner — full-width image, overlay, accent title, call button */

.dm-baraat-cta-banner {
	position: relative;
	overflow: hidden;
	padding: 5.5rem 0;
	text-align: center;
	color: #fff;
}

.dm-baraat-cta-banner__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

.dm-baraat-cta-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(10, 4, 18, 0.82) 0%,
		rgba(10, 4, 18, 0.88) 50%,
		rgba(10, 4, 18, 0.92) 100%
	);
	z-index: 1;
}

.dm-baraat-cta-banner__inner {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
}

.dm-baraat-cta-banner__title {
	font-family: "Rajdhani", sans-serif;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #fff;
	margin: 0 0 1.25rem;
}

.dm-baraat-cta-banner__accent {
	color: #c9a8ff;
}

.dm-baraat-cta-banner__desc {
	font-size: clamp(1rem, 2.2vw, 1.15rem);
	line-height: 1.65;
	color: rgba(244, 240, 255, 0.82);
	max-width: 560px;
	margin: 0 auto 2rem;
}

.dm-baraat-cta-banner__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.dm-baraat-cta-banner__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 1rem 2rem;
	font-family: "Rajdhani", sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-decoration: none;
	border-radius: 10px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.dm-baraat-cta-banner__btn--primary {
	background: linear-gradient(135deg, #5c00ce 0%, #7c2ae8 100%);
	color: #fff;
	box-shadow: 0 8px 32px rgba(92, 0, 206, 0.45);
}

.dm-baraat-cta-banner__btn--primary:hover,
.dm-baraat-cta-banner__btn--primary:focus {
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 12px 40px rgba(92, 0, 206, 0.55);
}

.dm-baraat-cta-banner__btn--secondary {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.75);
}

.dm-baraat-cta-banner__btn--secondary:hover,
.dm-baraat-cta-banner__btn--secondary:focus {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	text-decoration: none;
	transform: translateY(-2px);
}

@media screen and (max-width: 767px) {
	.dm-baraat-cta-banner {
		padding: 4rem 0;
	}

	.dm-baraat-cta-banner__btn {
		width: 100%;
		max-width: 320px;
	}
}
