/* The below code is all for header.php */

html,
body {
    margin: 0;
    padding: 0;
}

main {
    width: 100%;
}



.custom-navbar {
  background-color: #fff;
  border-bottom: 1px solid #000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar-toggler {
  padding: 0.1rem 0.3rem;
}

.navbar-toggler-icon {
  width: 1rem;
  height: 1rem;
}

.brand-red {
  font-family: 'Bangers', cursive;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 3px;

  -webkit-text-stroke: 2px red;
  text-shadow: 2px 2px 0 black;
}







.btn-orange {
  background-color: #cc6600;   /* darker orange */
  border-color: #cc6600;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background-color: #e67300;
  transform: translateY(-2px);
}

.btn-blue {
  background-color: #0b2e4f;   /* dark blue */
  border-color: #0b2e4f;
  transition: all 0.3s ease;
}

.btn-blue:hover {
  background-color: #154c79;
  transform: translateY(-2px);
}

.small-placeholder::placeholder {
  font-size: 0.85rem;
  opacity: 0.7;
}



/* --------End of code for header.php--------- */





/* The below code is all for header.php */

.footer-custom {
  width: 100%;
  background-color: #fff;
  /*border-top: 1px solid #fff;*/
  padding: 8px 0;
  font-size: 0.85rem;
  text-align: center;
  color: gray;
  
  /*the below code is causing overlap with main page content*/
  position: fixed;
  bottom: 0;
}



/* --------End of code for footer.php--------- */