@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;800&display=swap');

/* CSS Variables */
:root {
  --normal-font: 400;
  --bold-font: 700;
  --bolder-font: 800;
  --primary-color: #fff;
  --secondary-color: #000;
  --tertiary-color: #ddd;
  --line-height: 1.7rem;
  --transition: 0.4s ease-in;
  --border-radius: 0.2rem;
  --max-width: 1600px;
}
/* Smooth scroll effect */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Orbitron", sans-serif;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}


/* HEADER SECTION */
header {
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 0.5rem 2.5rem 0.5rem 2.5rem; */
  padding: 0rem 2.5rem;
  /* margin: 0.1rem; */
  height: 4rem;

}

.main-logo img {
  height: 2rem;
}

.header-rrss {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  height: 24px;
}

header a {
  height: 100%
}

h2 {
  font-size: 1.8rem;
}
/* MAIN SECTION */
main {
  height: 100%;
}


main {
  display: grid;
  justify-content: center;
  align-items: center;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: calc(100vh - 4rem);
}

.hero__center {
  display: grid;
  place-items: center;
  padding: 12rem 0;
}

.hero__title h1 {
  text-align: left;
  font-style: normal;
  font-weight: 700;
  font-size: 2.5rem;
  /* line-height: 50px; */
  letter-spacing: 0.17em;
}

.hero__title span {
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}

.hero__phrase {
  width: 80%;
}

/* STACK SECTION */
.stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  justify-content: space-between;
  height: 45rem;
}

.layer-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  justify-content: space-evenly;
  height: 100%;
}

.stack-layer h3 {
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  text-align: center;
}

.stack-layer-techs {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
  gap: 0.5rem;
  justify-content: center;
}

.stack-layer {
  display: flex;
  flex-direction: column;
  width: 90%;
}

.stack-layer__tech {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.project-item__links {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 1rem;
}
/* PROJECTS SECTION */
.projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  justify-content: space-between;
  /* height: 100vh; */
}


.project-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: space-around; */
  width: 80%;
  height: 100%;
  /* height: 100vh; */
}

.project-item__header {
  padding: 1rem;
}
.project-item__content{
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: space-around;
  /* width: 80%; */
  width: 100%;
  flex-wrap: wrap;
  gap: 1.5rem;
  /* height: 100vh; */
}

.project-item__image {
  width: 360px;
}

.project-item__description {
  width: 15rem;
  margin: 1rem 0;
  /* padding: 1rem 0; */
}

.project-item__technology {
  /* padding-top: 1rem; */
}
.project-item__techs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
}
/* CONTACT SECTION */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  justify-content: space-around;
  /* height: 100vh; */
}
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: left;
  width: 100%;
  height: 100%;
  /* background-color: var(--secondary-color); */
  padding: 2rem;
  gap: 1rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-form_feedback {
  font-weight: var(--bold-font);
}
/* FOOTER SECTION */
footer {
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}

footer p {
  font-size: 0.7rem;
  color: var(--tertiary-color);
  font-weight: 400;
  text-align: center;
}

.rrss {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.rrss a {
  color: var(--primary-color);
  font-weight: var(--bold-font);
}

/* COMPONENTS */
.tech-icon {
  height: 1.5rem;
  width: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: var(--bold-font);
}

.slides-container {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 2rem 0;
}

.section-title {
  padding: 1.5rem;
}

.custom-button {
  padding: 0.2rem 0.5rem;
}