/* Video Banner Container */
.hnt-video-banner-wrap {
	width: 100%;
	display: block;
	box-sizing: border-box;
}

.hnt-video-banner {
	position: relative;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	cursor: pointer;
}

.hnt-video-banner:hover {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hnt-video-banner-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: inherit;
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	z-index: 0;
}

.hnt-video-banner:hover .hnt-video-banner-bg {
	transform: scale(1.06);
}

.hnt-video-banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, rgba(35, 21, 18, .34) 0%, rgba(35, 21, 18, .46) 45%, rgba(35, 21, 18, .8) 100%);
	transition: background 0.4s ease, background-color 0.4s ease;
	z-index: 1;
}

/* Content Area */
.hnt-video-banner-content-wrap {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: flex;
	box-sizing: border-box;
}

.hnt-video-banner-content {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
}

.hnt-video-banner-title {
	margin: 0;
	line-height: 1.2;
}

.hnt-video-banner-subtitle {
	margin: 8px 0 0 0;
	line-height: 1.3;
}

/* Play Button */
.hnt-video-banner-play-btn {
	position: absolute;
	z-index: 3;
	background-color: transparent;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	box-sizing: border-box;
}

.hnt-video-banner-play-icon {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 9px 0 9px 18px;
	border-color: transparent transparent transparent #ffffff;
	margin-left: 4px;
	transition: all 0.3s ease;
	display: inline-block;
}

/* Video Modal Lightbox */
.hnt-video-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease;
}

.hnt-video-popup.hnt-show {
	opacity: 1;
	pointer-events: auto;
}

.hnt-popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(8px);
}

.hnt-popup-wrapper {
	position: relative;
	width: 90%;
	max-width: 980px;
	transform: scale(0.85);
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
	z-index: 2;
}

.hnt-video-popup.hnt-show .hnt-popup-wrapper {
	transform: scale(1);
}

.hnt-popup-content {
	position: relative;
	width: 100%;
	background: #000;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hnt-popup-close {
	position: absolute;
	bottom: 100%;
	right: 0;
	margin-bottom: 10px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 20px;
	color: #ffffff;
	padding: 6px 16px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	z-index: 10;
	transition: all 0.2s ease;
}

.hnt-popup-close:hover {
	background: #ffffff;
	color: #333333;
	border-color: #ffffff;
	transform: scale(1.05);
}

.hnt-video-container {
	position: relative;
	padding-bottom: 56.25%;
	/* 16:9 ratio */
	height: 0;
	background: #000;
}

.hnt-video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}