/*This is the style sheet for the ghost darling website :3*/

html, body {
  overflow: hidden;
  height: 100%; /* Ensures the viewport bounds are locked */
}

body {
	margin: 0;
	background: #000;
}

.stage {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background: #000;
}

.bg-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	mix-blend-mode: screen;
}

.title-image {
	display: block;
	width: min(70%, 900px);
	height: auto;
}

.navbar {
	width: 100%;
	margin-top: 24px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 0 16px;
}

.nav-link {
	display: flex;
	position: relative;
}

.nav-link img {
	height: 80px;
	width: auto;
	display: block;
    padding: 0 50px;
	mix-blend-mode: screen;
    position: relative;
    z-index: 2;
}

.nav-link:hover::before{
    content:"";
    position: absolute;
    top: 0;
    left: 50px;
    right: 50px;
    bottom: 0;
    background-color: rgba(243, 66, 19, 1);
    z-index: 1;
}

.nav-link:hover img {
	mix-blend-mode: multiply;
}

.border {
	position: fixed;
	left: 0;
	width: 100%;
	height: auto;
	display: block;
	z-index: 10;
	pointer-events: none;
	mix-blend-mode: screen;
}

.border-top {
	top: 0;
}

.border-bottom {
	bottom: 0;
}

@media (max-width: 768px) {
    .
	.nav-links {
		gap: 8px;
	}

	.nav-link img {
		height: 70px;
		padding: 0 90px;
	}

	.nav-link:hover::before {
		left: 12px;
		right: 12px;
	}
}
