/* css styles */
/*-- scss:defaults --*/

@import 'https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible&display=swap';
@import 'https://fonts.googleapis.com/css2?family=Open+Sans&display=swap';


@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Sen:wght@400..800&display=swap');


$font-family: "Open Sans", sans-serif;



$body-bg: #f8f8f8;    // Sets the body background color
$body-color: #333333; // Sets the main text (font) color
$link-color: #0F4C5C; // Optional: Sets the color for hyperlinks

$navbar-font-size: 1.2rem;
$navbar-font-weight: 100;
$navbar-font-style: montsserat;
$navbar-color: #1B263B;


/*-- scss:rules --*/

.render-commit-push {
  padding: 0.5em 0.5em 0em 3em;
  margin-top: 5px;
  margin-bottom: 5px;
  background: #f8f8f8 5px center/3em no-repeat;
  border-top: 1px solid #5B888C;
  border-bottom: 1px solid #5B888C;
  background-image: url("images/render-commit-push.png"); 
  background-size: 2em;
  background-position: 0.5em 0.5em;
}

.pull {
  padding: 0.5em 0.5em 0em 3em;
  margin-top: 5px;
  margin-bottom: 5px;
  background: #f8f8f8 5px center/3em no-repeat;
  border-top: 1px solid #E0A890;
  border-bottom: 1px solid #E0A890;
  background-image: url("images/pull.png"); 
  background-size: 1em;
  background-position: 1em 0.5em;
}


.quarto-figure p,
.figure-caption,
figcaption {
  text-align: center !important;
  margin: auto;
}

.navbar-brand img {
  max-height: 10px;
  width: auto;
  
}

/* Add padding around the navbar logo */
.navbar-brand img {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 100px;
  margin-right: 100px;
  
}

.navbar-nav {
  align-items: center; /* Vertically centers items */
}





/* styles.css */
.quarto-title-block .quarto-title-banner {
  background-image: url('images/logo_smart_reload.png'); /* Path to your image */
  background-size: 100px;                      /* Adjust size as needed */
  background-position: left;            /* Positions it to the left */
  background-repeat: no-repeat;
  padding-left: 20px;                         /* Shifts text to make room for image */
  background-origin: content-box;              /* Keeps image within the banner's padding */
}

.quarto-title-banner {
  background: #f0f0f0;
  color: #be2126;
  font-family: Montserrat;
}

.quarto-title-block .title {
  color:#be2126;
  font-size: 2rem;
  font-weight: 800;
}



 /* css styles */

/* Hide sidebar on mobile screens */
@media screen and (max-width: 767px) {
  .sidebar-navigation {
    display: none !important;
  }
}

/* Hide entire collapsed sidebar area on mobile */
@media screen and (max-width: 767px) {
  .quarto-sidebar-collapse-item,
  .quarto-page-spacer {
    display: none !important;
  }
  .quarto-sidebar-browser-menu {
    display: none !important;
  }

  .quarto-sidebar-menu-toggle {
    display: none !important;
  }

  .quarto-title-block .quarto-title-banner {
    background-image: none !important;
    font-size: 0.5rem;
  }
}

.custom-indent {
  padding-left: 30px;
}



#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

#splash-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.splash-content {
  text-align: center;
}

.splash-container {
  max-width: 750px;
  padding: 50px;
  text-align: center;
}

.splash-container h1 {
  color: #1f3b5c;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}