@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz@0,14..32;1,14..32&display=swap");
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@200;400&display=swap");

/* global styles */

:root,
:root[data-theme="dark"] {
	--primary-color: #f0f0f0;
	--primary-bg-color: #111217;
	--secondary-bg-color: #28292e;

	--primary-border-color: #28292e;
	--secondary-border-color: #56575a;
	--title-color: #f0f0f0;
	--text-color: #9a9a9c;
	--link-color: #9a9a9c;
	--icon-color: #c7c8c9;
}

:root[data-theme="light"] {
	--primary-color: #0b0b0f;
	--primary-bg-color: #e9e9e9;
	--secondary-bg-color: #c7c8c9;

	--primary-border-color: #c7c8c9;
	--secondary-border-color: #9a9a9c;
	--title-color: #0b0b0f;
	--text-color: #28292e;
	--link-color: #28292e;
	--icon-color: #56575a;
}

html[data-theme="light"] .technologies__logo {
	filter: invert(80%);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	vertical-align: baseline;
	list-style: none;
}

body {
	background: var(--primary-bg-color);
	font-family: "Inter", Tahoma, Geneva, Verdana, sans-serif;
	color: var(--text-color);
}

a {
	text-decoration: none;
	color: var(--text-color);
}

a:hover {
	color: var(--primary-color);
	font-weight: 600;
}

i {
	color: var(--icon-color);
}

b {
	font-weight: 400;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 1rem;
}

h3 {
	font-weight: 400;
}

h1,
h2,
h3 {
	font-family: "League Spartan", Tahoma, Geneva, Verdana, sans-serif;
	text-transform: uppercase;
	color: var(--title-color);
	font-weight: 200;
}

p {
	font-size: 1.25rem;
	text-align: justify;
}

/* header styles */

.header {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 0.5rem 1rem;
}

.header__toggle {
	display: flex;
	justify-content: flex-end;
}

.header__brand .brand__logo {
	width: 6rem;
	height: 6rem;
}

#toggleTheme {
	font-size: 1.5rem;
	color: var(--primary-color);
	cursor: pointer;
	transition: ease-in-out 0.4s;
}

/* Footer */

footer {
	margin-bottom: 5rem;
}

footer p {
	font-size: 0.875rem;
	text-align: center;
	padding: 1rem;
}

/* menu styles */

.menu {
	display: flex;
	align-items: center;
	background: var(--primary-bg-color);
}

.menu__item {
	width: 100%;
}

.menu--mobile {
	width: 100vw;
	position: fixed;
	bottom: 0;
	justify-content: space-between;
	border-top: 1px solid var(--primary-border-color);
}

.menu--mobile .menu__link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0.5rem 1rem;
	gap: 0.5rem;
}

.menu__link.active .menu__icon,
.menu__link.active .menu__text,
.menu__link:hover .menu__icon,
.menu__link:hover .menu__text {
	color: var(--primary-color);
	font-weight: 600;
}

.menu__icon,
.menu__text {
	color: var(--text-color);
}

.menu__icon {
	font-size: 1.5rem;
}

.menu__text {
	font-size: 1rem;
	text-transform: uppercase;
}

.header__nav {
	display: none;
}

.menu--principal {
	gap: 1rem;
}

.menu--social {
	gap: 1rem;
}

/* Main styles */
main,
.projects {
	padding: 2.5rem 1rem;
}

main {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.main__content1 {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

/* technologies */
.technologies {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 1.25rem;
	padding: 6.25rem 1rem 2rem 1rem;
	margin-top: -5.5rem;
}

.technologies h2 {
	font-size: 2rem;
	text-transform: none;
}

.technologies__list {
	display: flex;
	flex-flow: row wrap;
	gap: 0.5rem;
}

.technologies__item {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 4.8rem;
	height: 4.8rem;
	aspect-ratio: 1/1;
	border: 1px solid var(--secondary-border-color);
	border-radius: 50rem;
}

.technologies__logo {
	height: 2.4rem;
}

/* projetos styles */
.projects {
	display: flex;
	flex-direction: column;
}

.projects__container {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.projects__card {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.card__title {
	font-size: 1.5rem;
}

.card__description {
	font-size: 1rem;
	color: var(--title-color);
}

.card__buttons {
	display: flex;
}

.card__cover {
	width: 100%;
	border-radius: 0.5rem;
	object-fit: cover;
	object-position: center;
}

.card__body {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 1rem;
}

.card__body .technologies__item {
	width: 4rem;
	height: 4rem;
}

.card__body .technologies__logo {
	height: 2rem;
}

/* About styles */

.about {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.about__content1,
.about__content2 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 2rem;
}

.about__photo {
	width: 100%;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
	border-radius: 50rem;
	border: 1px solid var(--primary-border-color);
}

.about__description {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 1.5rem;
}

.about__icons {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.about__icons i {
	font-size: 1.25rem;
}

.about__content2 .col1,
.about__content2 .col2 {
	display: flex;
	flex-direction: column;
	text-align: justify;
	gap: 2rem;
}

.about__content2 .col1 .row1,
.about__content2 .col1 .row2 {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

/* Accordion styles */
#accordion {
	border-radius: 0.5rem;
	border: 1px solid var(--primary-border-color);
}

.accordion__header {
	width: 100%;
	display: flex;
	padding: 0.75rem 1rem;
	justify-content: space-between;
	align-items: center;
	border: 1px solid var(--primary-border-color);
	background: transparent;
	cursor: pointer;
}

.accordion__header span {
	color: var(--title-color);
	font-size: 1.15rem;
}

.accordion__header .start {
	border-radius: 0.25rem 0.25rem 0rem 0rem;
}

.accordion__header.end,
.accordion__item.active .accordion__body.end {
	border-radius: 0rem 0rem 0.25rem 0.25rem;
}

.accordion__item.active .accordion__header.end {
	border-radius: 0;
}

.accordion__body {
	display: none;
	padding: 1.25;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.625rem;
}

.accordion__item.active .accordion__header {
	background: var(--secondary-bg-color);
}

.accordion__item.active .accordion__body {
	display: flex;
}

.accordion__item.active .bi-caret-down-fill {
	transform: rotate(180deg);
}

/* contact styles */
.contact {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	border-top: 1px solid var(--primary-border-color);
	border-bottom: 1px solid var(--primary-border-color);
}

.contact p {
	text-align: center;
}

.contact .btn {
	width: auto;
}

.contact .email {
	text-transform: lowercase;
}

/* button styles */
.btn {
	display: flex;
	justify-content: center;
	gap: 0.625rem;
	width: 100%;
	background: transparent;
	border: none;
	border-radius: 3.125rem;
	padding: 0.875rem 1.5rem;
	transition: ease-in-out 0.3s;
	cursor: pointer;
	color: var(--primary-color);
}

.btn:hover {
	transform: scale(1.05);
	transition: ease-in-out 0.3s;
}

.btn span,
.btn i {
	font-size: 1.25rem;
}

.btn--primary {
	border: 1px solid var(--primary-border-color);
}

.btn--primary span {
	color: var(--primary-color);
}

/* Responsividade */

@media (min-width: 768px) {
	.header {
		position: fixed;
		border-bottom: 1px solid var(--primary-border-color);
		padding: 1rem 6rem;
		background: var(--primary-bg-color);
	}

	.nav--mobile {
		display: none;
	}

	.header__nav {
		display: flex;
	}

	.header__nav,
	.header__toggle {
		min-height: 30%;
	}

	h1 {
		font-size: 5rem;
	}

	h2 {
		font-size: 3rem;
		letter-spacing: 0.4rem;
	}

	.main__content1 {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.technologies {
		padding: 6.25rem 6rem 2rem 6rem;
		margin-top: -6rem;
	}

	main,
	.projects,
	.about {
		padding: 10rem 6rem 4rem 6rem;
	}

	.footer {
		margin: 0;
	}
}

@media (min-width: 992px) {
	.projects__card {
		flex-direction: row;
	}

	.projects__card.card--reverse {
		flex-direction: row-reverse;
		justify-content: space-between;
	}

	.card__cover {
		width: 55%;
	}

	.about {
		gap: 5rem;
	}

	.about__content1,
	.about__content2 {
		display: grid;
		grid-template-columns: 34% 60%;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 4rem;
	}

	.about__description h2 {
		text-align: left;
	}

	.description__buttons {
		justify-content: flex-start;
	}
}
@media (min-width: 1200px) {
	.main {
		padding: 12rem 6rem 2rem;
	}

	.main__content1 .btn {
		width: auto;
	}

	h2 {
		font-size: 4rem;
	}

	.technologies {
		flex-direction: row;
		justify-content: space-between;
		padding: 10rem 6rem 4rem;
	}

	.technologies h2 {
		font-size: 3.5rem;
		width: 60%;
	}

	.technologies__list {
		gap: 1rem;
	}

	.technologies__item {
		width: 6rem;
		height: 6rem;
	}

	.technologies__logo {
		height: 3rem;
	}

	.projects__card {
		flex-direction: row;
	}

	.card__cover {
		width: 50%;
	}

	.card__title {
		font-size: 3.25rem;
	}

	.card__description,
	.card__item {
		font-size: 1.25rem;
	}

	.card__buttons .btn {
		width: auto;
	}
}

@media (min-width: 1400px) {
	h1 {
		font-size: 6.25rem;
	}

	p {
		font-size: 1.5rem;
	}

	h2 {
		font-size: 4rem;
	}

	.header {
		padding: 1rem 15rem;
	}

	.main {
		padding: 12rem 15rem 2rem;
	}

	.technologies,
	.projects,
	.about {
		padding: 10rem 15rem 4rem;
	}
}
