@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

@font-face {
  font-family: 'thesignatureregular';
  src: url('media/fonts/thesignature-webfont.woff2') format('woff2'),
       url('media/fonts/thesignature-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}
:root {
  --animate-delay: 0.5s;
}

body {
  font-family: 'Bebas Neue', cursive;
  color: azure;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
} 

.banner {
    display:flex;
  
  }

  .empty2{
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    object-fit: cover;
    clip-path: polygon(54% 0, 100% 0, 100% 100%, 44% 100%);
    transition: .5s ease-in-out;
    z-index: 3;
    cursor: pointer;
    display: hidden;
    opacity: 0;
    
  }
  

   .wedding{
    
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 55% 0, 45% 100%, 0% 100%);
    transition: .8s ease-in-out;
    z-index: 1;
    cursor: pointer;
    
  }
  
  .studio{
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    object-fit: cover;
    clip-path: polygon(54% 0, 100% 0, 100% 100%, 44% 100%);
    transition: .8s ease-in-out;
    z-index: 1;
    cursor: pointer;
   }
  
  .empty:hover ~ .studio{
    scale: 1.2;
    clip-path: polygon(45% 0, 100% 0, 100% 100%, 35% 100%);
    filter: brightness(1.2);
    
  }

  .wedding:hover{
    scale: 1.2;
    clip-path: polygon(0 0, 65% 0, 55% 100%, 0% 100%);
    filter: brightness(1.2);
  }
 .wedding:hover + .studio{
    clip-path: polygon(65% 0, 100% 0, 100% 100%, 55% 100%);
    filter: blur(5px) saturate(0.5);
    scale: 1.1;
    }

  .empty:hover + .wedding{
    filter: blur(5px) saturate(0.5);
    scale: 1.1;
    
  }

.logo{
  margin: 0;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  transform: translate(-50%, -50%);
  /* filter: drop-shadow(0 0 0.75rem #050505); */
  transition: .8s ease-in-out;
  /* filter: grayscale(80%); */
  pointer-events: none;
  }

.wedding:hover ~ .logo{
  transform: translate(80%, -50%);
  filter:grayscale(0%);
   }

   .empty:hover ~ .logo{
    transform: translate(-165%, -50%);
    /* filter:hue-rotate(180deg); */
     }
    

     .wed-title, .stu-title{
      font-size: 70px;
     }

     .wed-title{
      font-family: "thesignatureregular", normal;
      font-weight: 400;
      font-size: 120px;
      z-index: 3;
      position: absolute;
      top: -10%;
      left: 20%;
      transition: .8s ease-in-out;
      opacity: 0;
      pointer-events: none;
     }

     .stu-title{
      font-weight: 200;
      font-size: 120px;
      z-index: 3;
      position: absolute;
      bottom: -10%;
      right: 20%;
      opacity: 0;
     transition: .5s ease-in-out;
     pointer-events: none;
     }

     .wedding:hover ~ .wed-title{
      position: absolute;
      top: 0%;
      left: 20%;
      opacity: 1;
       }

       .empty:hover ~ .stu-title{
        position: absolute;
        bottom: 0%;
        right: 20%;
        opacity: 1;
         }


         .info{
          font-size: 20px;
          position: absolute;
          bottom: 0%;
          left: 35%;
          transform: translate(-50%, -50%);
          z-index: 4;
          letter-spacing: 10px;
          pointer-events: none;
          
}
   
