/* ── BB Premium: Hero Section ─────────────────────────────────────────────── */

.bbpe-container {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 24px;
}

/* ── Shared hero base ───────────────────────────────────────────────────── */
.bbpe-hero {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	min-height: 80vh;
	background-color: #0f172a;
	background-size: cover;
	background-position: center;
}

.bbpe-hero__content {
	position: relative;
	z-index: 2;
	max-width: 700px;
}

.bbpe-hero__subtitle {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #6366f1;
	margin-bottom: 1rem;
}

.bbpe-hero__title {
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: 800;
	line-height: 1.1;
	color: #fff;
	margin-bottom: 1.25rem;
}

.bbpe-hero__description {
	font-size: 1.125rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 2rem;
}

.bbpe-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}

/* Shared button styles */
.bbpe-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.8rem 1.75rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
	border: none;
}

.bbpe-btn:hover,
.bbpe-btn:focus-visible {
	transform: translateY(-2px);
	text-decoration: none;
}

.bbpe-btn--primary {
	background-color: #6366f1;
	color: #fff;
}

.bbpe-btn--primary:hover,
.bbpe-btn--primary:focus-visible {
	background-color: #4f46e5;
	color: #fff;
	box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.bbpe-btn--secondary {
	background-color: rgba(255, 255, 255, 0.12);
	color: #fff;
	backdrop-filter: blur(6px);
}

.bbpe-btn--secondary:hover,
.bbpe-btn--secondary:focus-visible {
	background-color: rgba(255, 255, 255, 0.22);
	color: #fff;
}

/* ── Classic ────────────────────────────────────────────────────────────── */
.bbpe-hero--classic {
	padding-block: 100px;
}

.bbpe-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: #000;
	opacity: 0.55;
}

/* ── Centered ───────────────────────────────────────────────────────────── */
.bbpe-hero--centered {
	text-align: center;
	padding-block: 120px;
	background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
}

.bbpe-hero--centered .bbpe-container { position: relative; z-index: 2; }

.bbpe-hero__content--center {
	max-width: 760px;
	margin-inline: auto;
}

.bbpe-hero__buttons--center {
	justify-content: center;
}

/* Decorative blobs */
.bbpe-hero__shapes {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.bbpe-hero__shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(72px);
	animation: bbpe-float 8s ease-in-out infinite;
}

.bbpe-hero__shape--1 {
	width: 520px;
	height: 520px;
	background: rgba(99, 102, 241, 0.18);
	top: -120px;
	left: -100px;
}

.bbpe-hero__shape--2 {
	width: 400px;
	height: 400px;
	background: rgba(236, 72, 153, 0.13);
	bottom: -80px;
	right: -80px;
	animation-delay: 3s;
}

.bbpe-hero__shape--3 {
	width: 300px;
	height: 300px;
	background: rgba(14, 165, 233, 0.1);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 6s;
}

@keyframes bbpe-float {
	0%, 100% { transform: translateY(0) scale(1); }
	50%       { transform: translateY(-24px) scale(1.05); }
}

/* ── Split ──────────────────────────────────────────────────────────────── */
.bbpe-hero--split {
	padding-block: 60px;
	background: #0f172a;
}

.bbpe-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.bbpe-hero__grid--reverse { direction: rtl; }
.bbpe-hero__grid--reverse > * { direction: ltr; }

.bbpe-hero--split .bbpe-hero__content { max-width: 100%; }

.bbpe-hero__media { position: relative; }

.bbpe-hero__image {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	display: block;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
	.bbpe-hero { min-height: 60vh; }

	.bbpe-hero__title {
		font-size: clamp(1.75rem, 8vw, 2.5rem);
	}

	.bbpe-hero__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.bbpe-hero__grid--reverse { direction: ltr; }

	.bbpe-hero__buttons { flex-direction: column; align-items: flex-start; }
	.bbpe-hero__buttons--center { align-items: center; }
}
