/* 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);
}

/* container--home */
.home {
	text-align: center;
	/* border: 1px solid green; */
}

/* .home__content {
	border: 1px solid orangered;
} */

.home__title {
	font-size: var(--fs-h1);
}

.home__subtitle {
	font-size: var(--fs-h2);
}

.home__title,
.home__subtitle {
	font-weight: 300;
	letter-spacing: var(--ls-2px);
}

.home__btn {
	margin-top: 1.2em;
}

.bubble--img {
	width: 80%;
	transform: translate(5rem, 3rem);
}

/* container--education */
.degree__name,
.experience__job {
	font-size: var(--fs-h4);
	font-weight: 300;
}

body.light .degree__name,
body.light .experience__job {
	font-weight: 400;
}

.degree__link--img {
	display: inline;
	width: 1.25rem; /* 20px */
	vertical-align: text-bottom;
}

.place,
.date {
	font-size: var(--fs-small);
}

/* container--languages */
.language__text {
	margin: 0.5em auto 0.7em;
}

.language__text--secondary {
	margin-top: 0.3em;
	font-size: var(--fs-small);
}

/* container--skills */
.skills__list {
	text-align: center;
	line-height: 1.3em;
}

/* container--experience */
.job__list {
	/* list-style-type: disc; */
	margin-top: 0.7rem;
	margin-left: 1em;
	/* padding-left: 1em; */
}

.job__date {
	font-size: var(--fs-small);
	line-height: 1.3em;
}

.experience__text {
	margin-bottom: 1em;
}

/* container--tech */
.tech__flex__img {
	width: 75px;
}

/* container--contact */
.contact__flexbox {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.contact__info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.5em;
}

.contact__img {
	display: inline-block;
	width: 20px;
	margin-right: 0.05em;
	vertical-align: text-bottom;
}

body.light .contact__img {
	width: 22px;
}

.contact__form {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-top: 2em;
	gap: 0.5em;
}

.contact__form input,
.contact__form textarea {
	width: 100%;
	color: var(--color-1st-dark);
	background: transparent;
	border: none;
	border-bottom: var(--ls-1px) solid var(--hr-dark);
	outline: none;
}

body.light .contact__form input,
body.light .contact__form textarea {
	border-bottom: var(--ls-1px) solid var(--hr-light);
}

.contact__form input:hover,
.contact__form textarea:hover,
.contact__form input:focus,
.contact__form textarea:focus,
body.light .contact__form input:hover,
body.light .contact__form textarea:hover,
body.light .contact__form input:focus,
body.light .contact__form textarea:focus {
	border-bottom: var(--ls-1px) solid var(--color-1st-dark);
}

.arrow {
	display: none;
	position: fixed;
	right: 1.2rem;
	bottom: 5rem;
	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;
}
