/*
Theme Name: Forte Theme
Theme URI: 
Description: 
Author: 
Author URI: 
Template: twentytwentyfive
Version: 1.0
*/

header {
    top:0;
    left:0;
    width:100%;
    position:fixed;
    z-index: 100;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 99%);
}


@media screen and (min-width:768px) {
  .sticky-header {
      animation: fade-in 0.6s cubic-bezier(0,0,0,1) forwards 1;
  }
    
}

  .sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--wp--preset--color--contrast);
    box-shadow:0 0 20px rgba(0, 0, 0, 0.5);
  }


@keyframes fade-in {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }      
}

.landing-hard {
  animation: landing-hard 1.5s cubic-bezier(1,0,0,1) backwards 1;
  animation-delay: 0.5s;
}

@keyframes landing-hard { 
  0% {
      /*transform: translateX(-100%);*/
      transform: scale(400%);
      opacity: 0;
  }
  80% {
      /*transform: translateX(0);*/
      opacity: 1;
      transform: scale(100%);
  }
}

.bg-glare {
    background-color: #fff;
    overflow: hidden;
}

.bg-glare img {
    animation: lightpulse 2.5s linear forwards 1, zoomies 5s ease-in-out alternate infinite;
}

@keyframes lightpulse {
    0% {
        opacity: 1;
        mix-blend-mode: normal;
    }
     /*
    5% {
        opacity: 0.74;
        mix-blend-mode: hard-light;
    }
   
    10% {
        opacity: 1;
        mix-blend-mode: normal;
    }
    15% {
        opacity: 0.74;
 
    }
    20% {
        opacity: 1;

    }
    33% {
        opacity: 0.8;

    }
    36% {
        opacity: 1;

    }
        */
    80% {
        opacity: 1;
        mix-blend-mode: normal;
    }

    85% {
        opacity: 1;
        mix-blend-mode: hard-light;
    }

    95% {
        opacity: 1;
        mix-blend-mode: normal;
    }

    100% {
        opacity: 1;
        mix-blend-mode: hard-light;
    }
}

@keyframes zoomies {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

footer, .no-margin { margin:0 !important; }

.fancy-page-cover {
  overflow: hidden;
}

.fancy-page-cover img {
    animation: landing-hard 1s ease-out 1, zoomies 3s ease-in-out alternate infinite;
}

@keyframes gradientshift {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

.fancy-page-cover::after {
  content: " ";
  display: block;
  width: 100%;
  height:5px;
  animation: gradientshift 2s ease-out forwards 1;
  background: linear-gradient(90deg, rgb(255 255 255) 15%, rgb(255 255 255 / 0%) 100%)
}

.header-cta a {
    background-color: var(--wp--preset--color--accent-1);
    padding: 0.5rem 1rem !important;
    border-radius: 0 1rem 0 1rem;
    border-width: 1px;
    border-color: var(--wp--preset--color--accent-1);
    transition: all 0.3s ease;
    color:#fff !important;
}

.header-cta a:hover {
    opacity: 0.8;
    transform: translateY(3px);
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: stretch;
    flex-wrap: wrap;
}

.contact-page-form input, .contact-page-form select, .contact-page-form textarea {
    font-family: "Poppins";
    font-size:1rem;
    padding:0.5rem;
    border-radius:3px;
    color:#777;
    border:1px solid var(--wp--preset--color--accent-1);
    width:100%;
    box-sizing: content-box;
}

.contact-page-form input[type=submit] {
    background-color:var(--wp--preset--color--accent-1);
    color: #fff;
    border-radius: 0 1rem 0 1rem;
    cursor: pointer;
    transition: all 0.3s ease-out;
    width: 100%;
}

.contact-page-form input[type=submit]:hover {
    transform: translateY(3px);
}

.footer-it::before {
content:" ";
display: block;
height:10px;
background: #CF2734;
background: linear-gradient(270deg, rgba(207, 39, 52, 1) 0%, rgba(207, 39, 52, 1) 33%, rgba(255, 255, 255, 1) 33.1%, rgba(255, 255, 255, 1) 66.9%, rgba(0, 147, 68, 1) 67%, rgba(0, 147, 68, 1) 100%);
}

.site-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.site-form p {
    margin:0;
}

.site-form input, .site-form textarea, .site-form select {
    box-sizing: border-box;
}

.form-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

a {
    transition: all 0.3s ease;
}

.text-shadow {
    text-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
}

.leaf-corners img, .leaf-corners {
    border-radius: 0 2rem 0 2em;
}

a img {
    transition: all 0.3s cubic-bezier(0,0,0,1);
}

a img:hover {
    transform: scale(1.05);
}

.wp-block-button__link {
    transition: all 0.3s cubic-bezier(0,0,0,1);
}

.wp-block-button__link:hover {
    transform: scale(1.05);
}