
/* General reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: custom-font;
  }

.image-header {
    background-color: black;
    width: 100%;
    height: 50vh; /* Full viewport height */
    background-image: url('./media/bg-image-2.jpg'); /* Replace with your image URL */
    background-size: cover; /* Ensures the image covers the entire area */
    background-position: top; /* Centers the image */
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
}
  
  /* Jumbotron styling */
  .jumbotron {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    background-image: url('./media/bg-image.jpg'); /* Replace with your image URL */
    background-size: cover; /* Ensures the image covers the entire area */
    background-position: top; /* Centers the image */
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
  }
  
  /* Content styling inside the jumbotron */
  .jumbotron-content {
    background: rgba(0, 0, 0, 0.5); /* Add a semi-transparent background for better readability */
    padding: 20px 40px;
    border-radius: 8px;
  }
  
  .jumbotron h1 {
    font-size: 3rem;
    margin: 0;
  }
  
  .jumbotron p {
    font-size: 1.2rem;
    margin: 10px 0;
  }
  
  /* Button styling */
  .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    background-color: #007bff; /* Bootstrap primary blue */
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #0056b3;
  }

  #footer {
    color: white;
  }

  .navbar-brand {
    padding-left: 50px; /* Prefer padding over text-indent */
  }

  /* Hamburger Menu Styling */
  .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5); /* Adjust border visibility */
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

  /* Indent menu items in mobile view */
  @media (max-width: 992px) { /* Adjust breakpoint as needed */
    .navbar-nav .nav-item {
      padding-left: 20px; /* Indent the items */
    }
  }
  