/*=== HERO SECTION START ===*/
.hero-section {
  background: url(../images/hero.jpg) no-repeat scroll center center / cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-section .header {
  position: absolute;
  top: 30px;
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  transition: 0.3s;
}
nav ul {
  display: flex;
  flex-direction: column;
}
/* nav ul li:not(:last-child) {
  margin-bottom: 20px;
} */

.header a:hover {
  color: burlywood;
}
.nav-icons {
  display: flex;
  gap: 13px;
}
nav, .nav-icons, .site-logo {
  color: #fff;
  z-index: 100;
}
/*== MOBILE VIEW ==*/
@media screen and (max-width: 900px) {
  .nav-menu {
    display: none;
  }
  .headline {
    padding: 25px 0;
    width: 330px;
  }
  
  
}
/*== DESKTOP VIEW ==*/
@media screen and (min-width: 900px) {
  .headline {
    padding: 47px 0 37px;
    width: 475px;
  }
  .headline h1 {
    margin-bottom: 20px;
    font-size: 25px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.25;
  }
  nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 25px;
  }
  .nav-icons a:last-child {
    display: none;
  }
 
}

.headline {
  background-color: rgba(255, 255, 255, 0.75);
  text-align: center;
  z-index: 100;
}
.headline h1 {
  font-weight: 300;
  margin-bottom: 13px;
  font-size: 30px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
}
.headline a {
  font-size: 16px;
  font-family: 'Dosis', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: .5px solid #000;
  color: #000;
  line-height: 1.2;
  transition: 0.3s;
}
.headline a:hover {
  color: #c59400;
  border-bottom: none;
}
.overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.67);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/*== NAV-HAMB-MENU ===*/
#nav-hamb-menu {
  position: fixed;
  background-color: #EFEFEF;
  color: #000;
  z-index: 150;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.3s;
}
#nav-hamb-menu ul li:not(:last-child) {
  margin-bottom: 10px;
}
#nav-hamb-menu ul li {
  font-size: 20px;
}
#nav-hamb-menu ul li:hover {
  border-bottom: 1px solid #c59400;
}

#close-ham-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  height: 45px;
  width: 45px;
  padding: 10px;
  border: 1px solid #000;
  border-radius: 50%;
}

@media screen and (min-width: 900px) {
  #nav-hamb-menu {
    display: none;
  }
}

/*== HAMBURGER MENU ANIMATION ==*/
.slide-from-right {
  animation-name: slideFromRight;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;

}
@keyframes slideFromRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
/*=== HERO SECTION END ===*/
