/*this is the home page */
    .hero {
        background: url('/assets/images/hero-banners/index-page-hero.webp') center/cover no-repeat;
        height: 112vh;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;  
    }
    .brick-bg {
background-image: url('/assets/images/brickssmall.webp');
    background-repeat: repeat;
    padding-top: 3em;
    padding-bottom: 3em;
    
}
.btn-opacity {
    opacity: 0.7;
}
    
   @media (max-width: 900px) {
    .hero {
        height: 112vh; 
        background-size: contain; 
        background-repeat: no-repeat;
        background-position: center; 
        margin-top: -4em;
        margin-bottom: -6em;
    }
    }

   @media (max-width: 600px) {
    .hero {
        height: 80vh; 
        background-size: contain; 
        background-repeat: no-repeat;
        background-position: center; 
        margin-top: -4em;
        margin-bottom: -6em;
    }
}

/*this is the band page */

.subhero {
    background: url('/assets/images/hero-banners/band-page-banner.webp') center/cover no-repeat;
    background-position: center 20%;
    height: 61vh;    
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; 

}

.catchphrase {
    margin-top: 6em;
}  



@media (max-width: 768px) {
.subhero {
     height: 50vh; 
        /*background-size: contain; */
        background-repeat: no-repeat;
        background-position: center 20%; 
       /* margin-top: -4em;
        margin-bottom: -3em;*/
}
.catchphrase{
    margin-top: 5em;
}
}

.text-justify{
    text-align: justify;
}


/*this is the recordings page */

  .album-cover{
    max-height: 200px;
  }

  .bg-img {
    background-image: url('/assets/images/brickssmall.webp');
    background-repeat: repeat;
    opacity: 1;
  }

  @media (max-width: 768px){
    .album-cover{
      max-width: 300px;
      margin: 0 auto;

    }
  }

        .francoishero {
            background: url('/assets/images/workshops/francois-perdriau-workshop.webp') center/cover no-repeat;
            height: 60vh;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            
        }
        /*
        .text-justify {
            text-align: justify;
        }*/


        @media (max-width: 600px) {
    .francoishero {
        height: 70vh; 
        background-size: contain; 
        background-repeat: no-repeat;
        background-position: center; 
        margin-top: -4em;
        margin-bottom: -2em;
    }
    .workshop-text{
        font-size: 13px;
    }
}

/*this is the full post.php just the media query the rest is inline otherwise cant use php*/

   
    @media (max-width: 768px) {
    .hero-post {
        height: 60vh; /* Reduce height on smaller screens */
        }
    }       


/*this is the contact page*/              

  .bg-image{
     background: url('/assets/images/contactpage.webp') center/cover no-repeat;
        height: 112vh;

        
  }
  .form_placement{
    margin-top: 10em;
  }

  @media (max-width: 1024px) {
.form_placement{
  margin-top: -1em;
}
}

/*this is the back to top button */

/* Back to Top Button Styles */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #f8f9fa; /* Button color */
    color: black;
    border: none;
    border-radius: 20%;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none; /* Initially hidden */
    transition: opacity 0.3s ease, transform 0.3s ease;
}



#back-to-top.show {
    display: block;
    opacity: 1;
    transform: scale(1);
}

#back-to-top.hidden {
    opacity: 0;
    transform: scale(0.8);
}




/* Make it responsive on small screens */
@media (max-width: 1024px) {
    #back-to-top {
        display: none; /* Default hidden for larger screens */
    }

    #back-to-top.show {
        display: block; /* Show button only on small screens */
    }
}

@media (max-width: 600px) {
    #back-to-top {
        bottom: 15px;
        right: 15px;
        padding: 8px 12px;
        font-size: 16px;
    }
}




