/* Custom styles for BTL website 
@font-face {
  font-family: 'Big Shoulders';
  font-style: normal;
  font-weight: normal;
  src: url(https://fonts.googleapis.com/css2?family=Big+Shoulders+Inline:opsz,wght@10..72,100..900&display=swap) format('woff2');
}
*/
html {
    height: 100%;
  }
  
  body {
    font-family: 'Arial Narrow', sans-serif;
    min-height: 100%;
    background: linear-gradient(to bottom, #007bff, #0056b3) fixed;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    color: #333;
  }

  .display-4{
    font-family: 'Big Shoulders Inline', 'Arial';
  }

.navbar-brand {
  font-weight: bold;
}

#btl-logo {
  height: 50px;
}

.jumbotron {
  padding: 2rem;
  background-color: rgba(248, 249, 250,0);
  border-radius: 0.3rem;
  z-index: 1;
}

#jumbo-animation {
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100vh;
    z-index: -1;
  }

  /* Make content area have a semi-transparent background */
main.container {
    background-color: rgba(255, 255, 255, 0);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0);
}
  
/* Card styling */
.card {
  border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.85);
    border: none;
}

.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.btn{
  border-radius: 1.5rem;
  font-family: 'Big Shoulders Inline', 'Arial Narrow', sans-serif;
  --bs-btn-padding-x: 1.5rem;
  background-image: linear-gradient(to bottom, #05A9FE, #005590);
}

/* Footer */
footer {
  border-top: 1px solid #e9ecef;
  background-color: #007bff;
  color: white;
}


/*tint-background*/
.tint-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.tint-background-dark {
  background-color: rgba(0, 0, 0, 0.3);
}

.tint-background-light {
  background-color: rgba(255, 0, 0, 0.3);
}
.tint-background-green {
  background-color: rgba(0, 255, 0, 0.3);
}

.tint-background-none { 
  background-color: rgba(255, 255, 255, 0);
}