/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

 :root {
  --bs-primary: #E74610 !important;
  --lp-beige: #F5F2ED !important;
  --lp-teal: #008080;
  --font-serif: "Radley", serif;
 }

.hero {
  @media screen and (min-width: 992px) {
    min-height: calc(100vh - 3rem);
  }
  img {
    @media screen and (max-width: 768px) {
      width: 50%;
    }
  }
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Roboto", serif;
  font-weight: 400;
  font-style: normal;
  background: var(--lp-beige);
  display: flex;
  flex-direction: column;
  /* background: #A37864; PANTONE 2025 MOCHA */
  /* background: #74c69d; */
  /* red #E74610 */
  /* beige #F5F2ED */

  & > main {
    flex: 1;
  }
}

a.active {
  color: #E74610 !important;
  pointer-events: none;
  font-weight: bold;
}

.navbar {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  
  img {
    width: 40px;
  }
}

.btn {
  min-width: 6.5rem;
}

.color-teal {
  color: var(--lp-teal);
}

.font-serif {
  font-family: var(--font-serif);
}

.sticky-sidebar {
  top: 7rem;
  z-index: 4;
  height: 100vh; /* Full height of the viewport */
  overflow-y: auto; /* Enable scrolling within the sidebar */
}

.sticky-name {
  position: sticky;
  top: 3rem;
  z-index: 4;
  background-color: #F5F2ED;
  padding-top: 2rem;
}

.sticky-header {
  position: sticky;
  top: 7rem;
  padding-top: 2rem;
  z-index: 3;
  background-color: #F5F2ED;
}

.sticky-topic-header {
  position: sticky;
  top: 11rem;
  padding: 1.25rem 0;
  z-index: 2;
  background-color: #F5F2ED;
}

.btn-lp {
  color: #fff;
  background-color: #e74610;
  border-color: #e74610;
}

.btn-lp:hover {
  color: #fff;
  background-color: #cf3f0e;
  border-color: #c1380d;
}

.btn-lp:focus {
  color: #fff;
  background-color: #cf3f0e;
  border-color: #c1380d;
  box-shadow: 0 0 0 0.25rem rgba(231, 70, 16, 0.5);
}

.btn-lp:disabled, .btn-lp.disabled {
  color: #fff;
  background-color: #e74610;
  border-color: #e74610;
  opacity: 0.65;
}

.btn-lp:not(:disabled):not(.disabled):active, 
.btn-lp:not(:disabled):not(.disabled).active,
.show > .btn-lp.dropdown-toggle {
  color: #fff;
  background-color: #c1380d;
  border-color: #b8300c;
}

.btn-lp:not(:disabled):not(.disabled):active:focus,
.btn-lp:not(:disabled):not(.disabled).active:focus,
.show > .btn-lp.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(231, 70, 16, 0.5);
}

.entry-content {
  white-space: pre-line;
}

.modal-backdrop {
  background: rgba(0,0,0,0.4);
}

.arrow-button {
  width: 1.5rem;        /* Set width to 1.5rem */
  height: 1.5rem;       /* Set height to 1.5rem */
  padding: 0;           /* Remove padding */
  border: none;         /* Remove border to avoid button styling */
  background: none;     /* Remove button background */
  display: flex;        /* Center the icon inside */
  justify-content: center;
  align-items: center;  /* Center the icon vertically and horizontally */
  cursor: pointer;      /* Change cursor to pointer for interactivity */
}

.arrow-button i {
  font-size: 1.5rem;     /* Ensure the icon fits within the button */
}
