@import url("https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Mono:ital,wght@0,200..800;1,200..800&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap");
@import 'https://unpkg.com/open-props';
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  color: white;
  text-decoration: none;
}

body {
  background-image: url(/img/black-background.jpg), linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9));
  background-blend-mode: overlay;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  font-family: "Atkinson Hyperlegible Mono", sans-serif;
}

/* ---------- loader ------------*/
.loader-container {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.loader-container #camera-button {
  animation: 2s infinite pressButton;
}
.loader-container #finger {
  animation: 2s infinite pressFinger;
}
.loader-container #top-flash,
.loader-container #bottom-flash {
  animation: 2s infinite 1s flash;
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

/* ---------- nav --------------*/
header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: black;
  top: 0;
  z-index: 10;
}
header p {
  font-family: "Zalando Sans Expanded", sans-serif;
  text-transform: uppercase;
  margin: 20px;
  font-size: 1.1rem;
}
header .fa-bars {
  margin-right: 20px;
  font-size: 1.4rem;
  cursor: pointer;
}
header .fa-x {
  margin: 15px;
  cursor: pointer;
}
header nav {
  border-radius: 20px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(209, 207, 207, 0.1);
  position: fixed;
  right: -355px;
  top: 10px;
  width: 270px;
  height: 100vh;
  transition: 0.5s;
  font-family: "Atkinson Hyperlegible Mono", sans-serif;
}
header nav ul {
  list-style-type: none;
}
header nav ul li {
  margin: 30px 0;
  text-align: center;
}
header nav ul li a {
  position: relative;
}
header nav ul li a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 0;
  background-color: white;
  transition: 0.3s;
}
header nav ul li a:hover::after {
  width: 100%;
}

/* ---------- intro --------------*/
.intro-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-family: "Zalando Sans Expanded", sans-serif;
  align-items: center;
  margin-top: 25px;
}
.intro-container div {
  text-align: center;
}
.intro-container div .name {
  font-size: clamp(2rem, 6vw, 5rem);
  text-transform: uppercase;
}
.intro-container div .title {
  font-size: clamp(0.6rem, 2vw, 1.2rem);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.intro-container .self-image {
  margin-top: 40px;
}
.intro-container .self-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ---------- about --------------*/
.about-container {
  background-color: black;
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 50px;
  box-shadow: 0px 0px 20px 20px #000;
  margin: 30px 0 100px 0;
}
.about-container .about_title p:nth-child(1) {
  text-transform: uppercase;
  margin-bottom: 5px;
}
.about-container .about_title .about_line {
  height: 60px;
  width: 1px;
  background-color: #0f542f;
  margin: 0 0 5px 10px;
}
.about-container .about_title p:nth-child(3) {
  text-transform: uppercase;
  margin-top: 5px;
}
.about-container .about_description p {
  font-family: "Nunito Sans", sans-serif;
  text-align: justify;
  width: 70%;
  margin-left: 70px;
  letter-spacing: 1.5px;
  line-height: 25px;
}

/*--------- home page photo gallery --------*/
.gallery-container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
  padding: 40px 0;
}
.gallery-container .photo-gallery {
  display: flex;
  gap: 20px;
  margin-bottom: 120px;
}
.gallery-container .photo-gallery .column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gallery-container .photo-gallery .column .photo img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ------- lightbox--------*/
#lightbox {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}

#lightbox.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  padding: 4px;
}

/* ----------gallery page photo gallery ------*/
.photo-gallery-container {
  margin-top: 80px;
  /*----scrollbar----*/
}
.photo-gallery-container ::-webkit-scrollbar {
  width: 2em;
  height: 0.5em;
}
.photo-gallery-container ::-webkit-scrollbar-track {
  background: #47a86c;
  margin-block: 2em;
}
.photo-gallery-container ::-webkit-scrollbar-thumb {
  background: #0f542f;
}
.photo-gallery-container ::-webkit-scrollbar-thumb:hover {
  background: hsl(120, 100%, 10%);
}

.image-container {
  width: 85%;
  height: 400px;
  margin: 40px auto 20px auto;
}
.image-container p {
  text-transform: uppercase;
  font-family: "Zalando Sans Expanded", sans-serif;
}
.image-container .line {
  height: 50px;
  width: 1px;
  background-color: #0f542f;
  margin: 10px 0 10px 10px;
}

.slider {
  display: grid;
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}
.slider img {
  height: 300px;
}

.snaps-inline {
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 1rem;
}

.snaps-inline > * {
  scroll-snap-align: start;
}

/*---------- footer -----------*/
footer {
  background-image: url(/img/white-lens.png), linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  box-shadow: 0px 0px 20px 20px #000;
}
footer .top-section {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .top-section .footer-section-1 {
  padding-left: 50px;
  margin: 10px 0 0 0;
}
footer .top-section .footer-section-1 img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
}
footer .top-section .footer-section-1 p {
  margin-bottom: 10px;
  text-transform: uppercase;
}
footer .top-section .footer-section-1 .line {
  height: 50px;
  width: 1px;
  background-color: #0f542f;
  margin: 0 0 5px 10px;
}
footer .top-section .footer-section-2 {
  line-height: 25px;
  letter-spacing: 0.8px;
  padding-right: 40px;
  align-self: flex-end;
}
footer .top-section .footer-section-2 .footer-title {
  text-transform: uppercase;
}
footer .top-section .footer-section-2 .fa-phone,
footer .top-section .footer-section-2 .fa-envelope {
  margin-right: 10px;
}
footer .top-section .footer-section-2 #socials {
  display: flex;
}
footer .top-section .footer-section-2 #socials li {
  margin-right: 5px;
}
footer .footer-section-3 {
  margin-top: 25px;
  padding: 5px;
}
footer .footer-section-3 p {
  text-align: center;
}

/* ---------- keyframes--------------*/
@keyframes pressButton {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(2px);
  }
}
@keyframes pressFinger {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(1px);
  }
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
/*-------- media queries -------*/
@media (max-width: 500px) {
  /*------ about ------*/
  .about-container {
    grid-template-columns: 1fr;
  }
  .about-container .about_description {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  /*--- nav ---*/
  header nav {
    width: 250px;
  }
  /*--- intro ---*/
  .intro-container {
    grid-template-columns: 1fr;
  }
  .intro-container div {
    margin: 50px 0 20px 0;
  }
  /*--- footer ---*/
  footer {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  footer .top-section {
    flex-direction: column;
    align-items: center;
  }
  footer .top-section .footer-section-1 {
    padding-left: 0;
    border-bottom: 1px solid white;
    margin-bottom: 25px;
  }
  footer .top-section .footer-section-2 {
    text-align: center;
    padding-right: 0;
    border-bottom: 1px solid white;
    margin-bottom: 20px;
    align-self: center;
  }
  footer .top-section .footer-section-2 ul {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  /*--- main photo gallery ----*/
  .gallery-container .photo-gallery {
    flex-direction: column;
  }
}/*# sourceMappingURL=main.css.map */