

/*===================================================================================*/
/*	CUSTOM CSS STYLES
/*===================================================================================*/

/* Insert your own styles in here! */

.blurred {
  /*filter: blur(1.8px);
  pointer-events: none; /* Prevent interaction with blurred content 
  */
}


body {
    margin: 0;
    padding: 0; /* Ensure the body is not affected */
    overflow-x: hidden; /* Prevent horizontal scroll when nav is visible */
  }



  
  #sideNav {
    position: fixed; /* Sit above the rest of the content */
    overflow: hidden;
    top: 0;
    right: 0;
    height: 100%;
    width: 400px;
    padding-left: 80px;
    padding-bottom: 0px;
    padding-top: 0px;
    overflow-y: auto;
    background-color: #28252d; /* Light background for visibility */
    transform: translateX(100%); /* Initially hide offscreen */
    transition: transform 0.3s ease; /* Smooth slide-in and slide-out */
    z-index: 1000 !important; /* Ensure it's above other elements */
    overflow-y: scroll; /* Enables scrolling */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer and Edge */
  }
  

.selected::before {
    content: '';
    position: absolute;
    left: -10px; /* Adjust position as needed */
    top: 0;
    bottom: 0;
    width: 3px; /* Thickness of the line */
    background-color: #007bff; /* Color of the line */
}



  #sideNav.visible {
    transform: translateX(0); /* Slide in */
  }


  .accordion{
      --bs-accordion-bg: transparent;

  }
  /* Ensure no lines in submenu items */
  .accordion-body ul.nav > li {
    border: none; /* Remove lines */
    padding-bottom: 0;
  }

  /* Style all items to align properly */
  .nav-link, .accordion-button {
    color: #e8e8e8 !important; /* Force all links to be black */
    text-decoration: none !important; /* Remove underline */
    padding: 0; /* Ensure no extra padding */
    font-size: 1.6rem; /* Make font size consistent */
    display: block; /* Ensure full block alignment */
    text-align: left; /* Align text to the left */
  }

  .accordion-link {
    color: #e8e8e8 !important; /* Force all links to be black */
    text-decoration: none !important; /* Remove underline */
    padding: 0; /* Ensure no extra padding */
    font-size: 132 rem; /* Make font size consistent */
    display: block; /* Ensure full block alignment */
    text-align: left; /* Align text to the left */

    margin-top: 30px;
  }




  .accordion-button {
    background: none !important; /* Ensure no background */
    border: none;
    box-shadow: none;
    --bs-accordion-bg: transparent !important; /* Override Bootstrap background */
  }
  .accordion-button:not(.collapsed) {
    color: inherit; /* Keep text color consistent */
  }
  .accordion-button:focus {
    box-shadow: none !important; /* Remove focus box shadow */
  }

.accordion-button:hover{
  color: #434343 !important;

}


  .accordion-item {
    border: none;
  }

  .accordion-body {
    padding-left: 0; /* Remove extra padding */
    background: none !important; /* Remove white background */
    --bs-accordion-bg: transparent !important; /* Override Bootstrap background */
  }
  .accordion-body ul {
  }






  .accordion-body .nav-link:focus {
    outline: none;

  }

  #top_bar {

  position: fixed;
  z-index: 5000;
  background-color: #28252d; /* Light background for visibility */
  border-bottom:solid #e8e8e8 1px;

    display: flex;
    justify-content: space-between; /* Push logo and button to edges */
    align-items: center; /* Vertically align items */
    height: 100px;
}

#top_bar .col-md-1 {
  display: flex;
  justify-content: flex-end; /* Ensure it pushes the button to the right */
  align-items: center; /* Center vertically */
}

#top_bar .row {
  display: flex;
  justify-content: space-between; /* Push items to the edges */
  align-items: center; /* Vertically center items */
  height: 100px;
}



.logo-img {
  width: 300px; /* Adjust the width as per your requirement */
  max-width: none;
  max-height: none;
}

.nav-button{
  margin: 0;
}


  .nav > li > a:hover{
    color: #434343 !important;
    background-color: transparent;
  }

  #main_ul{
    display: block;
    margin-top: 250px;

  }

  #main_ul> li{
    list-style-type: none;
    margin-bottom: 50px;
    font-size: 1rem;
  }


  .name-home >h1{
    margin-top: 18px;
    color: rgb(54, 120, 179) !important;

  }

  .home-shadow{
    font-size: 4rem;
    text-shadow: 3px 3px 3px rgb(153, 134, 118, 0.25);

  }

  .parallax {
    background-image: url('your-image.jpg'); /* Replace with your image path */
    background-attachment: fixed; /* This creates the parallax effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .case-button{
    background-color: #007bff;

    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  ::-webkit-scrollbar-track {
    background-color:  #28252d; /* Change to your desired color */
  }


  .scrollable-element {
    scrollbar-color: #28252d #f0f0f0; /* Thumb color, Track color */
    scrollbar-width: thin; /* Options: auto, thin, none */
  }


  .phase{
    font-size: 4rem;
  }

  @media (max-width: 500px) {


    .home-shadow{
      font-size:3rem;
    }

}

.contact-background {
  background-image: url('../images/art/office.webp');
  background-size: cover; /* Ensures proper scaling */
  background-position: 0% 85% !important;
  padding-top: 500px;
  

}


.jim_pic{
  display: block;
  position: absolute; left: 30px; top: 50px;
  background-image: url('../images/art/jim_headshot.webp');
  background-size: cover;
  width: 100%;
  height: 100%;

}

@media (max-width: 500px) {
  /* Keep the same image or adjust scaling */
  .contact-background {
    background-image: url('../images/art/the_office_phone.jpg');
      background-position: top !important;
      padding-top: 300px;
  }

  
}
@media (min-width: 2500px) {
  /* Keep the same image or adjust scaling */
  .contact-background {
    padding-top: 600px;
      background-position: 0% 40%!important;

  }
}



.inner-contact {
	padding-top: 0px !important;
	padding-bottom: 0!important;
}

/* Target all form controls */
form input,
form textarea,
form select,
form button {
    color: #414362 !important; /* Darker text color */
}

/* Optional: Add styling for placeholders */
form input::placeholder,
form textarea::placeholder {
    color: #414362 !important; /* Slightly lighter color for placeholders */
    font-weight: 400; /* Match weight with other text */
}




@media (max-width: 1200px) {

  .jim_pic2{
    display: block;
    position: relative;
    background-image: url('../images/art/jim_headshot.webp');
    background-size: cover;
    width: 400px;
    height: 400px;
    margin: auto;
    margin-bottom: 50px;
  }
}