/*!
 * Custom Styles (global)
 * Add your site-wide CSS below.
 * This file is enqueued on both the front-end and the block editor.
 */
 


 body{
     overflow-x: hidden !important;
 }
 
 .alignfull{
   max-width: unset !important;
 }
 
 h2.wp-block-heading, h2.wp-block-post-title{
    font-size: clamp(32px,  calc(32px + (70 - 32) * ((100vw - 300px) / (1600 - 300))), 95px);
     line-height: 0.6em;
  }

 h3.wp-block-heading{
    font-size: clamp(24px,  calc(24px + (36 - 24) * ((100vw - 300px) / (1600 - 300))), 95px);
    line-height: 0.6em;
 }
 
 h4.wp-block-heading{
    font-size: clamp(20px,  calc(20px + (26 - 20) * ((100vw - 300px) / (1600 - 300))), 95px);
    font-family: var(--wp--preset--font-family--rokkitt);
    line-height:1.25em;
  }
  
  h5.wp-block-heading{
    font-size: clamp(16px,  calc(16px + (22 - 16) * ((100vw - 300px) / (1600 - 300))), 95px);
    line-height:0.6em;
  }
  
  .alignfull{
    max-width: unset !important;
    width: 100%;
    height: auto;
  }
  
  
  
  .image-vid-btn.alignfull{
    max-width: unset !important;
      width: 100% !important;
      height: auto;
      margin-left: 0 !important;
      margin-right: 0 !important;
  }

.sticky {
   position: sticky;
   top: 0; /* Sticks to the top edge of the viewport */
   z-index: 10; /* Optional: Ensures it stays above other content */
 }
 
 .top-header{
   position: fixed;
   z-index: 999;
   width: 100%;
   padding: 20px;
   transition-delay: 500ms;
   transition: all 0.5s; 
 }
 
.wp-block-button a{
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    padding: 6px 10px 5px 10px;
    font-size: 12px;
    line-height: 1em;
    letter-spacing: 0.2em;
    border-radius: 30px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    border-style: solid;
    border-width: 1px;
    border-color: #000;
  }
  
 .wp-block-button a:hover{
    background-color: rgba(255, 255, 255, 0);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.516);
  }
  .black-button a:hover{
    background-color: rgba(255, 255, 255, 0);
    color: #000;
    border-color: rgba(0, 0, 0, 1);
  }

@media (max-width: 780px) {
   .sticky{
     /* Styles for screens 780px and narrower */
     position: relative;
     top: auto; /* Reset the top offset */
   }
 }
 
 .wp-block-post-template{
   display: flex;
   justify-items: flex-start;
   flex-direction: column;
   gap: 20px;
 }
 
 .wp-block-post-template li{
   width: 100%;
   display: flex;
  justify-items: flex-start;
  
 }
 
 .wp-block-post-template li .wp-block-group-is-layout-flex{
   width: 100%;
    display: flex;
   justify-items: flex-start;
 }

.wp-element-caption{
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
}

img.tl-block{
   opacity: 0.6;
   border-radius: 6px;
   transition: all 0.5s;
}

img.tl-block:hover{
   opacity: 1;
}

.reverse-columns{
   flex-direction: row-reverse;
}

.image-wrap{
    padding-top: 8px;
}

.const-nav a{
  font-family: 'Oswald', sans-serif;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
}

.const-nav ul{
  margin: 0;
  padding: 0;
}

.const-nav ul li{
  list-style: none;
  padding: 0 0 0 5px;
  page: 0;
  line-height: 1em;
}

.const-nav ul li:before{
  content: "- ";
}

.const-nav a:hover{
    color: var(--wp--preset--color--vivid-red) !important;
}

.fixed-hero{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  overflow: hidden;
}

.bottom-footer{
  /*position: fixed;
  display: flex;
  bottom: 0;
  width: 100vw;
  transition: all 0.5s;
  margin-bottom: -100px*/
}

.bottom-footer.scrolled{
 /*margin-bottom: 0;*/
}

.footer-inside{
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
}

.wp-site-blocks .effects-container{
  display: block;
  position: relative;
  top:0;
  left: 0;
  width: 100% !important;
  height: 100vh !important;
  overflow: hidden;
}

.navigation-dots__label{
  font-family:  var(--wp--preset--font-family--onramp);
}

.wp-site-blocks .effects-box{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  width: 100vw !important;
}

.wp-block-post-template{
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.wp-block-post-template li{
  padding: 0 !important;
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}

.wp-block-post-template li h2{
  margin-top: 0;
}

.wp-block-post-template li a{
  background-color: #000;
  padding: 15px 20px;
  border-radius: 5px;
  transition: all 0.5s;
}

.wp-block-post-template li a:hover{
  background-color: #333;
  color: #fff;
}

@media (max-width: 960px) {
    .image-wrap{
        width: 100%;
        display: block;
        clear: both; 
        margin-bottom: 20px;
    }

    .image-wrap img{
        width: 100% !important;
        max-width: unset !important;
        display: block;
        clear: both;
    }
}
