/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Alata&family=Josefin+Sans:ital,wght@0,300;1,300&display=swap");
.ff-alata {
  font-family: "Alata", sans-serif;
}
.ff-josefin {
  font-family: "Josefin Sans", sans-serif;
}
/* ** */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style-type: none;
}
.first-section {
  position: relative;
  background-image: url(/images/mobile/image-hero.jpg);
  height: 650px;
}
.first-section:before {
  content: "";
  position: absolute;
  /* background-image: url(/images/desktop/image-hero.jpg); */
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.4);
}
.gallery-text {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7455357142857143) 0%,
    rgba(0, 212, 255, 0) 67%
  );
}
.gallery-card:hover {
    transform: scale(1.05);
    transition: all ease .2s;
}
.nav-item {
  position: relative;
  transition: all ease-in-out 0.3s;
  font-size: 15px;
}
.nav-item:after {
  content: "";
  position: absolute;
  transition: all ease-in-out 0.2s;
  transform: scaleX(0);
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background-color: white;
  z-index: 999;
  left: 0px;
  top: 130%;
}
svg{
  transform: scale(1);
  transition: all ease-in-out .3s;
}
svg:hover{
  transform: scale(1.1);
}
.nav-item:hover::after {
  transform: scaleX(1);
}
.fs-header {
  width: 355px;
  height: 227.19px;
}
.fs-header-capt {
  font-size: 2.8rem;
  line-height: 2.8rem;
}

/* hamburger menu */
#hamburger-input:checked ~ .hamburger-input .fa-solid::before{
  transition: all ease 300ms;
  content: "\f00d";
}
#hamburger-input:checked ~ .hamburger-input .fa-solid{
  transform: rotate(-180deg);
  transition: all ease 300ms;
}
.menu{
  position: fixed;
  top: 0;
  right: -100%;
  width: 375px;
  height: 100vh;
  background-color: black;
  transition: all ease-in-out 300ms;
}
.menu ul li a::after {
  content: "";
  position: absolute;
  transition: all ease-in-out 0.2s;
  transform: scaleX(0);
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background-color: white;
  z-index: 999;
  left: 0px;
  top: 130%;
}
.menu ul li a:hover::after{
  transform: scaleX(1);
}
#hamburger-input:checked ~ .menu{
  right: 0;
}

/* media adjustment for myself */
@media (min-width: 640px) {
  .first-section {
    background-image: url(/images/desktop/image-hero.jpg);
  }
}
@media (min-width: 768px) {
  .fs-header {
    width: 650px;
    height: 280px;
  }
  .gallery-text:hover {
    background-color: rgba(255, 255, 255, .7) !important;
  }
}
@media (min-width: 1024px) {
  .second-section{
    height: 90vh;
  }
  .second-section-capt {
    width: 36rem;
    height: 21rem;
    top: 21.3rem;
    left: 30rem;
    border-top-left-radius: 200px;
  }

}

@media (min-width: 1280px) {
  .second-section-capt {
    left: 46rem;
    border-top-left-radius: 0px;
  }
}
