/* assets/css/home.css */

/* ── VIDEO HERO ── */
.hero {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
}

.hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.55;
	z-index: 0;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 80% at 65% 50%, transparent 30%, rgba(0, 0, 0, 0.72) 100%),
		linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, transparent 45%);
	z-index: 1;
}

/* ── LOGO BRAND MARK ── */
.logo-icon {
	display: flex;
	gap: 3px;
	align-items: flex-end;
}

.logo-bar {
	width: 6px;
	border-radius: 3px 3px 0 0;
	background: linear-gradient(to top, var(--primary-navy), var(--light-blue));
}

.logo-bar:nth-child(1) {
	height: 22px;
}

.logo-bar:nth-child(2) {
	height: 16px;
}

.logo-bar:nth-child(3) {
	height: 28px;
}

/* ── HERO CONTENT ── */
.hero__content {
	position: absolute;
	bottom: 13%;
	left: 6%;
	z-index: 5;
	animation: fadeUp .9s ease both;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero__brand {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
}

.hero__logo-icon {
	display: flex;
	gap: 4px;
	align-items: flex-end;
}

.hero__logo-bar {
	width: 9px;
	border-radius: 4px 4px 0 0;
	background: linear-gradient(to top, var(--primary-navy), var(--light-blue));
}

.hero__logo-bar:nth-child(1) {
	height: 32px;
}

.hero__logo-bar:nth-child(2) {
	height: 22px;
}

.hero__logo-bar:nth-child(3) {
	height: 40px;
}

.hero__brand-name {
	font-family: 'DM Sans', sans-serif;
	font-weight: 300;
	font-size: 38px;
	letter-spacing: 0.04em;
	color: var(--white);
}

.hero__tagline {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 300;
	line-height: 1.25;
	color: var(--light-blue);
	max-width: 520px;
}

/* ── SCROLL HINT ── */
.scroll-hint {
	position: absolute;
	bottom: 36px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	opacity: 0.45;
}

.scroll-hint span {
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.scroll-hint__line {
	width: 1px;
	height: 36px;
	background: linear-gradient(to bottom, var(--white), transparent);
	animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
	0%, 100% {
		opacity: 0.4;
		transform: scaleY(1);
	}
	50% {
		opacity: 1;
		transform: scaleY(1.2);
	}
}
