/* ============================================
   Hero Video Background Section
   Layout matching beaunpl.com
   ============================================ */

/* --- Section --- */
.hero-video-section {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background-color: #0a0a0a;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

/* --- Video --- */
.hero-video-wrap {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* --- Dark overlay --- */
.hero-video-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.35) 0%,
		rgba(0, 0, 0, 0.15) 40%,
		rgba(0, 0, 0, 0.55) 100%
	);
	pointer-events: none;
}

/* --- Text content --- */
.hero-video-text {
	position: relative;
	z-index: 3;
	padding: 0 80px 24px;
	max-width: 700px;
}

.hero-video-subtitle {
	display: block;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 20px;
}

.hero-video-logo {
	font-size: clamp(48px, 6vw, 80px);
	font-weight: 700;
	line-height: 1.05;
	color: #ffffff;
	margin: 0 0 20px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-family: inherit;
}

.hero-video-logo__accent {
	color: #b8975a;
}

.hero-video-description {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	max-width: 480px;
}

/* --- Bottom bar: both buttons same row --- */
.hero-video-bottom {
	position: relative;
	z-index: 3;
	padding: 24px 80px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* White outline button (left) */
.hero-video-btn {
	display: inline-block;
	padding: 16px 40px;
	border: 1px solid rgba(255, 255, 255, 0.8);
	color: #ffffff;
	text-decoration: none;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	transition: all 0.3s ease;
	background: transparent;
}

.hero-video-btn:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #ffffff;
	color: #ffffff;
}

/* Gold pill button (right) */
.hero-floating-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	background: #b8975a;
	color: #ffffff;
	text-decoration: none;
	padding: 16px 28px;
	border-radius: 50px;
	transition: background 0.3s ease, transform 0.3s ease;
	white-space: nowrap;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-floating-cta:hover {
	background: #a07d3f;
	transform: translateY(-2px);
	color: #ffffff;
}

.hero-floating-cta__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hero-floating-cta__text {
	display: flex;
	flex-direction: column;
	line-height: 1.4;
	font-size: 14px;
	font-weight: 600;
	text-align: left;
}

.hero-floating-cta__text small {
	display: block;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.15em;
	opacity: 0.85;
	margin-bottom: 2px;
}

/* --- Fade-in animations --- */
.hero-video-text {
	opacity: 0;
	transform: translateY(30px);
	animation: hero-fade-up 1s ease-out 0.5s forwards;
}

.hero-video-bottom {
	opacity: 0;
	transform: translateY(20px);
	animation: hero-fade-up 0.8s ease-out 0.8s forwards;
}

@keyframes hero-fade-up {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
	.hero-video-text {
		padding: 0 24px 20px;
	}

	.hero-video-subtitle {
		font-size: 10px;
		margin-bottom: 12px;
	}

	.hero-video-logo {
		font-size: clamp(32px, 10vw, 48px);
		margin-bottom: 14px;
	}

	.hero-video-description {
		font-size: 13px;
		line-height: 1.5;
	}

	.hero-video-bottom {
		padding: 16px 24px 30px;
		gap: 12px;
	}

	.hero-video-btn {
		padding: 12px 24px;
		font-size: 10px;
	}

	.hero-floating-cta {
		padding: 12px 18px;
		gap: 10px;
	}

	.hero-floating-cta__text {
		font-size: 12px;
	}

	.hero-floating-cta__text small {
		font-size: 9px;
	}
}

@media (max-width: 480px) {
	.hero-video-text {
		padding: 0 20px 16px;
	}

	.hero-video-bottom {
		padding: 12px 20px 24px;
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.hero-video-btn {
		text-align: center;
	}

	.hero-floating-cta {
		justify-content: center;
	}
}
