/* Small Views (<600px) */

/* container--header */
.header {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header.navbar {
	flex-direction: column;
}

.nav {
	opacity: 0;
	height: 0;
}

.nav[data-state="opened"] {
	animation: open-menu 1s forwards;
}

@keyframes open-menu {
	to {
		opacity: 1;
		height: 100vh;
	}
}

.nav[data-state="closed"] {
	animation: close-menu 1s forwards;
}

@keyframes close-menu {
	to {
		opacity: 0;
		height: 2.6rem;
	}
}

.logo__link {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.menu__burguer {
	width: 2rem;
}

.menu__x {
	width: 1.5rem;
}

.logo {
	width: 3rem;
}

.menu__list {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: var(--ls-2px);
	gap: 1.5em;
}

.menu__close {
	position: absolute;
	top: 1.5rem;
	right: 1rem;
}

.menu__item {
	position: relative;
}

.menu__link::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	filter: blur(0.25rem);
	border-bottom: var(--ls-3px) solid var(--btn-hover-dark);
}

.menu__link {
	color: var(--white);
}

.arrow {
	display: none;
	position: fixed;
	right: 1.2rem;
	bottom: 1rem;
	z-index: 5;
}

.arrow--visible {
	display: block;
}

.arrow__icon,
body.light .arrow__icon {
	width: 2rem;
	fill: var(--color-1st-dark);
}

/* container--footer */
.footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.5em;
}
