/**
 * Original BUD CLUB Homepage Hero Banner Stylesheet.
 * Exact restoration from original design assets.
 *
 * @package BUDCLUB
 */

.bc-original-hero {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	background: #000;
	margin: 0;
	padding: 0;
}

.bc-original-hero__container {
	position: relative;
	width: 100%;
	margin: 0 auto;
	aspect-ratio: 1080 / 1935;
}

@media (min-width: 768px) {
	.bc-original-hero__container {
		aspect-ratio: 2560 / 1086;
	}
}

.bc-original-hero__track {
	position: relative;
	width: 100%;
	height: 100%;
}

.bc-original-hero__slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
	z-index: 1;
}

.bc-original-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

.bc-original-hero__link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.bc-original-hero__picture {
	display: block;
	width: 100%;
	height: 100%;
}

.bc-original-hero__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border: 0;
}

/* Navigation Arrows (Desktop) */
.bc-original-hero__nav {
	display: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.2);
	cursor: pointer;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: background 0.2s ease, transform 0.2s ease;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

@media (min-width: 768px) {
	.bc-original-hero__nav {
		display: flex;
	}
}

.bc-original-hero__nav:hover {
	background: rgba(0, 0, 0, 0.8);
	transform: translateY(-50%) scale(1.06);
}

.bc-original-hero__nav--prev {
	left: 20px;
}

.bc-original-hero__nav--next {
	right: 20px;
}

/* Pagination Dots */
.bc-original-hero__dots {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 10;
	padding: 6px 12px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 20px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.bc-original-hero__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	border: none;
	padding: 0;
	cursor: pointer;
	transition: all 0.25s ease;
}

.bc-original-hero__dot.is-active {
	width: 22px;
	border-radius: 10px;
	background: #22c55e;
}
