/* You can add global styles to this file, and also import other style files */
html,
body {
  min-height: 120%;
  overflow-y: scroll;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
}
html .dark-theme,
body .dark-theme {
  background-color: #121212;
}
html .light-theme,
body .light-theme {
  background-color: #121212;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Page Sections */
html,
body {
  width: 100%;
  height: 100vh;
  margin: 0px;
  padding: 0px;
  font-family: "Open Sans", sans-serif;
  background-color: var(--background) !important;
  color: var(--text) !important;
}

:root {
  /* Define color variables */
  --background: #282828;
  --text: #ececec;
  --red: #d72638;
  --orange: #ffd897;
  --light: #fcf5c7;
  --blue: #a5d0d7;
}

::-webkit-scrollbar {
  display: none;
}

html {
  font-size: 62.5%;
  color: #eee6ff;
  background-color: var(--background);
}

a {
  color: var(--text) I !important;
  text-decoration: none;
  cursor: grab;
}

.mainbody {
  background-color: var(--background) !important;
  color: var(--text);
}

.socials {
  background-color: var(--red) !important;
}

.mainBanner {
  max-height: 200px;
  object-fit: cover;
  width: 100%;
}

.fa-brands {
  color: var(--blue);
}

.SiteLogo {
  width: 150px;
  height: 60px;
}

.dropdown-menu {
  background-color: var(--background) !important;
}

.dropdown-item {
  color: var(--light) !important;
  background-color: var(--background) !important;
  font-size: 2rem;
}

.dropdown-item:hover {
  color: #eee6ff !important;
  background-color: #121212 !important;
}

.navbar-nav .nav-link {
  margin-right: 10px; /* Adjust the right margin as needed */
}

.nav-item {
  font-size: 3rem;
}

.book-description {
  max-height: 70vh;
  overflow: auto;
  margin: auto;
  padding: 1rem;
  text-align: center;
  word-break: break-word;
}

.book-image {
  max-height: 70vh;
  margin: auto;
  text-align: center;
}

.buy-book-col {
  width: 50%;
}

.book-title {
  font-size: 4rem !important;
  font-weight: bold;
  margin-bottom: 1rem;
}

.max-vh-75 {
  max-height: 75vh;
  max-height: 75dvh; /* better on mobile browsers */
  width: 100%;
  height: auto;
  object-fit: contain; /* never crop; scale inside the box */
  display: block;
  padding-bottom: 5rem;
}

@media screen and (max-width: 900px) {
  .FPNewsContainer {
    grid-column-start: FPLeftCol;
    grid-column-end: FPEndCol;
    grid-row: FPNewsRow;
    background-color: red;
  }
}
@media screen and (min-width: 900.01px) {
  .FPNewsContainer {
    grid-column-start: FPMidCol;
    grid-column-end: FPRightCol;
    grid-row: FPNewsRow;
  }
}
.FrontPageTable {
  display: grid;
  grid-template-columns: [FPLeftCol] 15vw [FPMidCol] 70vw [FPRightCol] 15vw [FPEndCol];
  grid-template-rows: [FPImageRow] 200px [FPNewsRow] auto [FPEndRow];
  width: 100%;
}

.MainImageContainer {
  grid-column-start: FPLeftCol;
  grid-column-end: FPEndCol;
  grid-row: FPImageRow;
  overflow-y: hidden;
  width: 100%;
}

.MainImage {
  width: 100%;
  overflow-y: hidden;
  object-fit: cover;
}

.item {
  display: grid;
  grid-template-columns: 15rem calc(100% - 15rem);
  gap: 10px;
  padding: 10px;
  box-sizing: border-box;
  max-height: 15rem;
  margin-bottom: 2rem;
}

.item .img-container {
  width: 100%;
  padding-top: 100%; /* This creates a square container */
  position: relative; /* Position relative so we can absolutely position the img within it */
  overflow: hidden; /* To ensure the img doesn't overflow */
}

.item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 15rem;
  height: 15rem;
  object-fit: cover;
  max-height: 15rem;
  max-width: 15rem;
}

.item .details {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Aligns items to top and bottom */
  gap: 10px;
  height: 100%; /* Ensures the container uses the full height available */
}

.item .details .title {
  font-size: 1.5em;
  border-bottom: 1px solid white;
}

.item .details .date {
  font-size: 0.8em;
  color: grey;
}

.item .details .content {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: auto; /* Pushes the content to the bottom */
}

.card {
  height: auto;
}

.wrap-around {
  position: relative;
  overflow: auto;
}

.wrap-around__image {
  float: left;
  width: 40%; /* Adjust according to your needs */
  height: auto;
  margin-right: 1rem;
}

.wrap-around__text {
  margin-bottom: 1rem;
}

.truncate-text {
  position: relative;
  max-height: 3em; /* Adjust the desired number of lines */
  overflow: hidden;
}

.truncate-overflow::after {
  content: "...";
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0.25em;
  background-color: #000;
  color: #fff;
}

div.overflow-auto {
  white-space: nowrap;
  overflow-x: scroll;
}

div.overflow-auto::-webkit-scrollbar {
  width: 1em;
}

div.overflow-auto::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

div.overflow-auto::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

.img-thumbnail {
  border: none;
  padding: 0;
}

.thumbnail {
  border: none !important;
  padding: 0 !important;
}

.thumbnail img {
  margin: 0px !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-container > div {
  height: 200px;
  display: flex;
  align-items: stretch;
  padding: 0; /* Removes padding from image containers */
  margin: 2px; /* Adds a small space between images */
  background-color: #000; /* Set to black background color */
}

.scroll-container img {
  height: 100%;
  object-fit: cover;
  border: none;
}

.modal-content {
  background: none;
  border: none;
}

.modal .modal-body {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: transparent;
}

.modal-body {
  padding: 0;
}

.modal-dialog {
  max-width: 90%;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.75); /* Set to semi-transparent black background */
}

.modal-xl {
  max-width: 90%;
}

.modal-content {
  background-color: transparent !important;
  border: none;
}

.modal-body {
  background-color: transparent !important;
}

.card-title {
  font-size: 3rem;
}

.card-text {
  font-size: 1.5rem; /* Change as per your requirement */
}

p {
  font-size: 2rem;
  padding-bottom: 1rem;
}

.cast-list {
  font-size: 1.5rem; /* Change as per your requirement */
}

.audio-description {
  color: #333; /* A darker color, adjust as needed */
  font-size: 1.2rem; /* Adjust as needed */
}

.podcast-banner {
  position: relative;
  width: 100%;
  height: 200px; /* Adjust the height as needed */
  background-size: cover;
  background-position: center;
}

.player-description {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
  color: var(--background);
}

.podcast-description {
  margin-top: 20px;
}

@font-face {
  font-family: "VT323", monospace;
  src: url("https://fonts.googleapis.com/css2?family=VT323&display=swap");
  font-weight: normal;
  font-style: normal;
}
#console-input-container {
  font-size: 28px;
  line-height: 18.2px;
}

.consoleContainer {
  position: absolute;
  left: 0;
  width: 100%;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.monitorFrame {
  position: absolute;
  width: 1400px;
  background-size: contain;
  justify-content: center;
  align-items: center;
}

.monitorImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}

.console {
  position: absolute;
  background-color: transparent;
  color: green;
  font-family: "VT323", monospace;
  overflow-wrap: break-word;
  letter-spacing: 0.13em;
  height: 400px;
  width: 538px;
  top: 204px;
  left: 433px;
  font-size: 25px;
  line-height: 17.8px;
}

#console-output {
  white-space: pre;
  overflow-y: auto;
  height: 90%;
  font-family: "VT323", monospace;
}

#console-input-container {
  position: absolute;
  background-color: transparent;
  color: green;
  font-family: "VT323", monospace;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.consoleOverlay {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  pointer-events: none;
  z-index: 2;
  background: url("https://media.allportsopen.org/WC/Console/MonitorLines1.png") no-repeat center center;
  background-size: contain;
}

.consoleDesk {
  position: relative;
  left: 0%;
  width: 100%;
  pointer-events: none;
  z-index: 2;
  background-size: contain;
}

.consoledeskimage {
  width: 100%;
  width: 100%;
}

#console-input-text {
  background-color: transparent;
  color: green;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  height: fit-content;
  min-height: 32px;
  line-height: normal;
  white-space: pre;
  text-transform: uppercase;
}

.CampContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

#JournalBook {
  width: 800px;
  height: 500px;
}

.page-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campbg {
  background: url("https://media.allportsopen.org/WC/Camp/campbg.jpg") no-repeat center center fixed;
}

#book0 {
  width: 90vw; /* 90% of viewport width */
  max-width: 800px; /* prevent it from getting too large */
  aspect-ratio: 550/850;
  margin: 0 auto;
}/*# sourceMappingURL=app.component.css.map */