@import url("https://fonts.googleapis.com/css2?family=Raleway:ital@0;1&family=Roboto+Slab:wght@100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  font-family: "Poppins", sans-serif;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.closed {
  position: fixed;
  top: 0;
  left: 0;
  justify-content: space-between;
  height: 10vh;
  max-height: 120px;
  padding: 0 40px;
  width: 100vw;
}

header {
  display: flex;
  align-items: center;
  z-index: 999;
  transition: background-color 0.3s ease;
}
header #guilherme {
  width: 400px;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
}
header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header ul {
  display: flex;
  gap: 50px;
  list-style: none;
  text-align: center;
  align-items: center;
}
header ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  position: relative;
  display: inline-block; /* Ensures the underline only spans the text */
}
header ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: white;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}
header ul a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
header #menu-button {
  display: none;
  background-color: none;
  border: none;
  color: white;
  width: 60px;
}

.transparent {
  background-color: none;
  color: #232323;
}

.scrolled {
  background-color: #232323;
}

footer {
  height: 200px;
  z-index: 2;
  width: 100vw;
  color: white;
}
footer p {
  padding-top: 100px;
  padding-left: 20px;
}

body {
  overflow-x: hidden;
}

@media screen and (max-width: 910px) {
  .no-scroll {
    overflow: hidden;
  }
  .open-header {
    padding: 5vh 0px;
    position: fixed;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    align-items: center;
    justify-content: space-between;
    background-color: #232323;
  }
  .open-header #guilherme {
    text-align: center;
  }
  .open-header #menu-button {
    padding-bottom: 10vh;
  }
  header .menu-closed ul {
    display: none;
  }
  header .menu-open ul {
    display: flex;
    flex-direction: column;
  }
  header #menu-button {
    display: block;
  }
}
body {
  background-color: #232323;
}

a {
  text-decoration: none;
  color: black;
}

#mainPhoto {
  background-image: url("../../images/homePC.png");
  width: 100vw;
  height: 100vh;
  background-size: cover;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-position: center;
}
#mainPhoto h1 {
  width: 100vw;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#work {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 2fr 2fr 1fr;
  gap: 1px;
  border-bottom: solid 1px #444;
  background-color: #444;
  min-height: 150vh;
}
#work .gridElement {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #222;
  padding: 10vh 0px;
}
#work .gridElement p {
  font-size: 1.3rem;
  padding: 0 20px;
  color: #f0a500;
}
#work .gridElement img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#work .gridElement:nth-child(2) {
  padding-top: 20vh;
}
#work .gridElement:nth-child(2) img {
  padding-top: 50px;
}
#work .gridElement:nth-child(3) {
  padding-top: 100vh;
}
#work .gridElement:nth-child(4) {
  padding-top: 20vh;
}
#work .gridElement:nth-child(4) p {
  padding-top: 80px;
}
#work .gridElement:nth-child(5) {
  padding-top: 120vh;
}

#CTA {
  text-align: center;
}
#CTA h2 {
  padding: 80px 0 20px 0;
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 500;
  color: white;
}
#CTA > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
#CTA .showcase {
  position: relative;
  height: 20vw;
  width: 20vw;
  min-height: 400px;
  min-width: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#CTA .showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#CTA .showcase a {
  position: relative;
  color: white;
  font-size: 2.5rem;
  text-decoration: none;
  text-align: center;
  padding: 10px;
  font-family: "Titillium Web", serif;
  font-weight: 600;
  font-style: normal;
}
#CTA .showcase:hover::before {
  background-color: rgba(0, 0, 0, 0.3);
}
#CTA .showcase:hover a {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

#projectBG {
  background-image: url("../../images/bestOnes/MG_3707.jpg");
}

#galleryBG {
  background-image: url("../../images/bestOnes/MG_3716.jpg");
}

@media (max-width: 1024px) {
  #mainPhoto {
    background-image: url("../../images/homePhone.png");
    height: 100vh;
  }
  #mainPhoto h1 {
    height: 40vh;
  }
  #work {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    background-color: transparent;
    padding: 10px;
  }
  #work .gridElement:last-child {
    display: none;
  }
  #work .gridElement {
    width: 100%;
    background-color: #222;
    padding: 0;
  }
  #work .gridElement * {
    margin: 0;
    padding: 0;
  }
  #work .gridElement:nth-child(2) {
    padding-top: 100px;
  }
  #work .gridElement:nth-child(2) img {
    padding-top: 70px;
  }
  #work .gridElement:nth-child(3) {
    padding-top: 0;
  }
  #work .gridElement:nth-child(4) {
    padding-top: 0px;
  }
  #work .gridElement:nth-child(4) p {
    padding: 100px 0px 70px 0px;
  }
  #work .gridElement:nth-child(5) {
    padding-top: 0;
  }
  #work .gridElement:last-child {
    border-bottom: none;
  }
}/*# sourceMappingURL=index.css.map */