/* === HERO SECTION === */
.coming-soon {
    background: url('../images/photography/COMING-SOON.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px 60px;
          /* color: white; */
    
      height: 100vh;
      position: relative;
      width: 100%;
    /*  background-size: cover;
      background-position: center; */
      background-attachment: fixed;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      padding: 61px;
  }
  
  .coming-soon-content {
  
      position: relative;
      z-index: 1;
      color: white;
      text-align: center;
  }

  .logo-overlay{
    background: transparent;
    position: absolute; /* So it sits over the hero section */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;


  }

  @media (max-width: 768px) {
    .coming-soon {
      padding: 40px 20px;
      background-attachment: scroll; /* Prevent background jank on mobile */
      height: 100vh;
    }
  
    .coming-soon-content {
      padding: 20px;
      font-size: .5rem;
    }
  
    .coming-soon-content h1 {
      font-size: 1.8rem;
    }
  
    .coming-soon-content p {
      font-size: 1rem;
    }
  
    .logo img {
      width: 140px;
      height: auto;
    }
  
    .logo-overlay {
      padding: 10px 20px;
      text-align: left;
    }
  }
  

  /* Responsive nav bar */
@media (max-width: 768px) {
  .hamburger {
    
    background: transparent;
    position: absolute; /* So it sits over the hero section */
    top: 0;
    left: 90;
    width: 100%;
    z-index: 6;
  }

}

@media (max-width: 480px) {
  .coming-soon-content h1 {
    font-size: 1.4rem;
  }

  .coming-soon-content p {
    font-size: 0.9rem;
  }
}
