@import url("https://fonts.googleapis.com/css2?family=Exo:wght@600&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Josefin Sans';
}

body {
  min-height: 100vh;
  width: 100%;
  background-color: #eeffea;
}

/* ==============SIDE BAR================= */

.sidebar {
 position: absolute;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 position: fixed;
 width: 20%;
 height: 100vh;
 background: #485d4b;
 opacity: 1;
 z-index: 3;
}

.sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('https://assets.codepen.io/1149983/mountain-lines.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.03; 
  z-index: -1; 
}

.container a {
  display: flex;
  justify-content: center;
}

.container img {
  width: 10rem;
  margin-top: 3rem;
  transition: 1s ease;
  filter: invert(4%) sepia(20%) saturate(301%) hue-rotate(90deg) brightness(92%) contrast(100%);
}

.icon-item-1 {
  width: 6rem;
  height: 6rem;
  letter-spacing: 1rem;
  color: #eeffea;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; 
  transition: 1s ease;
  opacity: 1;
}

.icon-item-1 h1 {
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  color: #eeffea;
  opacity: 0;
  transition: 1s ease;
  display: flex;
  justify-content: center;
  text-align: center;
  font-weight: 100;
  font-size: 0.5rem;
  margin-top: 1rem;
}

.icon-item-1 a {
  width: 15rem;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  color: #eeffea;
  opacity: 1;
  transition: 1s ease;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.menu {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.socials ul {
  display: flex;
  justify-content: center;
  transition: 1s ease;
}

.socials li {
  width: 5rem;
  height: 5rem;
  list-style:none;
}

.socials a {
  padding: 0.5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration:none;
  color:#eeffea;
  margin-bottom: 3rem;
  transition: 1s ease;
}

.icon-item-1:hover h1 {
  opacity: 1;
  transform: translateY(10%);
  letter-spacing: 0.5rem;
}

.icon-item-1:hover a {
  opacity: 1;
  transform: translateY(10%);
  letter-spacing: 0.5rem;
}

.container:hover img {
  transition: 1s ease;
  transform: scale(1.10) translateY(-5%);
}

.icon-item-1:hover {
  transition: 1s ease;
  transform: scale(1.15) translateY(-25%);
}

.icon-item-1:hover + .icon-item-1 {
  transition: 1s ease;
  transform: scale(1.15) translateY(25%);
}

.social-1:hover {
  transition: 0.5s ease;
  transform: scale(1.15) translateY(-50%);
}

.social-2:hover {
  transition: 0.5s ease;
  transform: scale(1.15) translateY(-50%);
}

.social-3:hover {
  transition: 0.5s ease;
  transform: scale(1.15) translateY(-50%);
}

.social-4:hover {
  transition: 0.5s ease;
  transform: scale(1.15) translateY(-50%);
}

/* ==============HERO CONTENT================= */
 .header-content {
  color: #eeffea;
}

.hero {
  overflow: hidden;
  width: 80%;
  height: 100vh;
  margin-left: 20%;
}

.hero-bg img {
  width: 100%;
  height: 100vh;
  filter: brightness(0.1);
  object-fit: cover;
  position: relative;
  z-index: -1;
}

.hero_content img {
  opacity: 0.3;
  filter: invert(4%) sepia(20%) saturate(301%) hue-rotate(90deg) brightness(92%) contrast(100%);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
}

.hero_content {
  width: 80%;
  margin-left: 20%;
  text-align: center;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  position: absolute;
  transition: 1s ease;
  top: 0%;
  left: 0%;
  bottom: 0;
}

.hero_content span {
  font-size: 3rem;
  font-weight: 900;
  color: #485d4b;
}

.hero_content img {
  width: 15vw;
  margin-top: 5rem;
}

.hero_content h1 {
  font-size: 3rem;
  font-weight: 100;
  font-style: italic;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
  margin-top: 5rem;
}

.explore {
  width: 100%;
  margin-top: 15rem;
}

.explore h1 {
  cursor: pointer;
  border: none;
  opacity: 1;
  color: #eeffea;
  transition: 1s ease;
  font-weight: 900;
  font-size: 1.5rem;
}

.explore:hover h1 {
  transition: 1s ease;
  transform: translateY(-30%);
}

.explore i {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  transition: 1s ease;
  opacity: 1;
  text-decoration: none;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
  bottom: 0;
}

.explore:hover i {
  transition: 1s ease;
  transform: translateY(100%);
  position: relative;
  z-index: 0;
  opacity: 1;
}

.explore a {
  text-decoration: none;
  cursor: pointer;
}

.explore i {
  opacity: 1;
  margin-bottom: 5rem;
}


/* ==============ABOUT PAGE================= */

 @media screen and (max-width: 1000px) {

 .page-about {
   min-width: 100%;
   height: 100%;
 }

 .about-text {
   width: 100%;
   height: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
 }

 .about-text p {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 80%; 
 }

 .about-image {
   width: 100%;
   
 }

 .about-text h1 {
   width: 100%;
   letter-spacing: -1vh;
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
  }

 .about-text:hover h1 {
   transition: 1s ease;
   letter-spacing: -1vh;
 }

 }

.about-image img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
  filter: brightness(0.1);
  display: flex;
  transition: 1s;
}

.about-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: rgb(8, 17, 8);
  transition: 1s ease;
  width: 80%;
  margin-left: 20%;

}

.page-about {
  height: 100vh;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background-color: #eeffea;
  text-align: center;
} 

.about-text p {
  color: rgb(8, 17, 8);
  display: flex;
  text-align: center;
  justify-content: center;
  transition: 1s;
  font-size: 1rem;
}

.about-text:hover h1 {
  transition: 1s ease;
  letter-spacing: 0.5rem;
}

.about-image:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}

.about-text h1 {
  transition: 1s;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2vh;
  display: flex;
  justify-content: center;
  text-align: center;
  color: rgb(8, 17, 8); 
  margin-top: 10vh;
  margin-bottom: 5vh;  
}

.about-image {
  overflow: hidden;
  transition: 1s;
}

.about-image img {
  width: 80%;
  height: 50vh;
  object-fit: cover;
  margin-left: 20%;

  filter: brightness(0.1);
  display: flex;
  transition: 1s;
}

/* =====================PAGE 3================================ */

@media screen and (max-width: 1023px) {
  
  .header-content {
     min-width: 100%;
     height: 85%;
     margin-left: -25%;
   }

  .page-work {
     margin-left: -25%; 
     display: flex;
     flex-direction: column;
     margin-top: 15%;
   }
  
  .work-image {
     opacity: 0;
  }

  .work-text {
    min-width: 100%;
    height: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10rem;
  }
}

.page-work {
  height: 100vh;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  background-color: #eeffea;
  text-align: center;
  align-items: center;
  color: rgb(8, 17, 8);
  transition: 0.7s ease;
  width: 80%;
  margin-left: 20%;
  z-index: 1;
  overflow: hidden;
} 

.work-text h1 {
  transition: 0.7s ease-out;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1rem;
  display: flex;
  justify-content: center;
  text-align: center;
  color: rgb(8, 17, 8); 
}

.work-item {
  transition: 1s;
  margin-top: 8rem;
}

.work-item ul {
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: -.1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
  gap: .8rem;
  transition: 1s ease;
  width: 100%;
}

.work-item li {
  display: flex;
  list-style: none;
}

.work-item i2 {
  opacity: 0.1;
  transition: 1s;
}

.work-item span {
  display: flex;
  justify-content: center;
  font-size: .7rem;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0;
  transition: 1s ease;
  transform: translateY(-1rem);
  margin-left: 10vh;
  margin-right: 10vh;
  text-align: center;
  align-items: center;
}

.work-item:hover {
  transition: 0.7s ease;
  transform: translateY(-25%);
}

.work-item:hover + .work-item {
  transition: 0.7s ease;
  transform: translateY(25%);
}

.work-item:hover i2 {
  transition: 1s;
  opacity: 1;
}

.work-item:hover span {
  opacity: 1;
  transition: 1s;
  transform: translateY(0.5rem);
  letter-spacing: 0;
}

.work-image:hover img {
  opacity: 1;
  filter: brightness(1);
  transform: scale(1.05);
  width: 100%;
}

.work-image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transition: 1s;
  filter: brightness(0.1); 
}

/* ---------------------------------------------------- */

.page-galery {
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #eeffea;
  text-align: center;
  align-items: center;
  color: rgb(8, 17, 8);
  transition: 0.7s ease;
  width: 80%;
  margin-left: 20%;
} 

.gallery-page2 {
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #eeffea;
  text-align: center;
  align-items: center;
  color: rgb(8, 17, 8);
  transition: 0.7s ease;
  width: 80%;
  margin-left: 20%;
} 

.title {
  transition: 0.7s ease-out;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1rem;
  display: flex;
  justify-content: center;
  text-align: center;
  color: rgb(8, 17, 8);
  margin: 10vh;
}

.grid-gallery {
  background-color: #485d4b;
  border: 1vh solid #485d4b;
  width: 70%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50vh, 1fr));
  grid-auto-rows: 20vh;
  gap: 1vh;
  margin-left: 15%;
}

.grid-item {
  position: relative;
  overflow: hidden;
  background-color: #485d4b;
  border: 1vh solid #485d4b;
  transition: 1s;
  cursor: pointer;
  border-radius: .5vh;
}

.grid-item:hover {
  transition: 1s;
  transform: translateY(-.8vh);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.9);
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s ease;
  filter: brightness(0.2);
  border-radius: .5vh;
}

.grid-item:hover img {
  transition: 1s;
  filter: brightness(1);
  transform: scale(1.05);
}

.wide {
  grid-column: span 1;
}

.tall {
  grid-row: span 2;
}

.large {
  grid-column: span 1;
  grid-row: span 2;
}
      
.medium-wide {
  grid-column: span 1;
  grid-row: span 2;
}

.medium-tall {
  grid-column: span 3;
  grid-row: span 1;
}
 
.grid-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1vh;
  background-color: #485d4b;
  color: white;
  transform: translateY(100%);
  transition: transform 1s ease;
  z-index: 2;
  opacity: 0.5;
}

.grid-item:hover .grid-caption {
  opacity: 0.8;
  transition: 1s;
  transform: translateY(0);
}

.gallery-header h1 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1rem;
  font-weight: 600;
  margin: 5vh;
  margin-top: 20vh;
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #485d4be6;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  z-index: 9999;
  overflow: hidden;
}

#lightbox.active {
  transition: 1s;
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
}

.lightbox-img {
  height: 80vh;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.9);
  transition: 1s;
  border-radius: 10px;
}

.close, .next, .prev {
  position: absolute;
  top: 50%;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 2vh;
}

.close {
  top: 2vh;
  right: 2vh;
}

.next {
  right: -5vh;
}

.prev {
  left: -5vh;
}

.close:hover, .next:hover, .prev:hover {
  background-color: transparent;
}
  
.page-contact {
  width: 100%;
  height: 100vh;
  
  background-color: #eeffea;
  color: rgb(8, 17, 8);
  transition: 0.7s ease;
}

.contact {
  width: 80%;
  height: 100vh;
  background-color: #eeffea;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-left: 20%;
  margin-top: 25rem;
}

.contact h1 {
  color: rgb(8, 17, 8);
}

.contact p {
  color: rgb(8, 17, 8);
}

form label {
  display: block;
  color: rgb(8, 17, 8);
  font-weight: bold;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid rgb(8, 17, 8);
  transition: border-color 0.3s;
}

form input:focus,
form textarea:focus {
  border-color: rgb(8, 17, 8);
  outline: none;
}

button {
  background-color: rgb(8, 17, 8);
  color: #eeffea;
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #485d4b;
}



@media screen and (max-width: 1023px) {
   .contact {
    width: 100%;
    margin-top: 75vh;
    margin-left: 0;
  }

}

@media screen and (max-width: 1023px) {

  .sidebar {
    flex-direction: row;
    min-width: 100%;
    height: 15vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .container img {  
    width: 5rem;
    height: 5rem;
    margin-bottom: 3rem;
    margin-left: 2rem;
  }

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

  .icon-item-1 {
    display: flex;
    flex-direction: row;
  }

  .socials li {
    width: 3rem;
    margin-top: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;    
  }


  .hero_content {
    width: 100%;
    height: 85%;
    margin-top: 15vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 0;    
    font-size: 1rem;
  }

  .hero_content img {
    width: 8rem;
  }

  .hero_content h1 {
    font-size: 3rem;
  }
  .hero-bg {
    width: 100%;
  }

  .explore {
    width: 100%;
    font-size: 1rem;
  }

   .explore h1 {
    font-size: 1rem;
  }
}
 
@media (max-width: 768px) {
  

  .hero {
    width: 100% !important;
    margin-left: 0 !important;
    min-height: 100vh;
  }

  .hero_content {
    width: 100% !important;
    margin-left: 0 !important;
    padding: 20px;
    top: 0;
    left: 0;
    transform: none;
  }

  .hero_content span {
    font-size: 2rem;
  }

  .hero_content h1 {
    font-size: 2rem;
    margin-top: 2rem;
  }

  .hero_content img {
    width: 35vw;
    margin-top: 2rem;
  }

  .explore {
    margin-top: 5rem;
  }

  .explore h1 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .grid-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
}

  .wide, .large, .medium-wide {
    grid-column: span 2;
    grid-row: span 1;
}

  .tall, .medium-tall {
    grid-column: span 1;
    grid-row: span 2;
  }
}

