body,
html {
  margin: 0;
  font-family: "Times New Roman", serif;
  background-color: #111111; /* Sets the background for the whole page */
}

#toolbar {
  position: fixed;
  width: 100%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),
    0 6px 20px 0 rgba(0, 0, 0, 0.19);
  height: 5rem;
  top: 0;
  display: flex;
  justify-content: center; /* Center the new toolbar-content container */
  align-items: center;
  box-sizing: border-box;
  background-color: #3f3e3e;
  z-index: 10; /* Ensure the toolbar is always on top of other content */
}

.toolbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 90rem; /* Match the max-width of the .information container */
  padding: 0 4rem; /* Match the horizontal padding of the .information container */
  box-sizing: border-box;
}

.information {
  position: relative;
  top: 5rem;
  height: 100%;
  overflow: auto;
  scroll-behavior: smooth;
  color: #000000;
  background-color: #c0c0c0; /* The color of your content area */
  /* Constrain the width and center the container */
  max-width: 90rem; /* Adjust this value to make bars wider or narrower */
  margin: 0 auto; /* This centers the container horizontally */
  padding: 1.5rem 4rem; /* Adjust padding for inside the content area */
  box-sizing: border-box; /* Ensures padding is included in the width */
}


.logo-image {
  height: 4.75rem; /* Adjust the height to fit your toolbar */
  width: auto;
  margin-top: .12rem;
}


nav {
  display: none;
}
.actions {
  display: flex;
  column-gap: 1rem;
  text-align: center;
}

.actions button {
  height: 4.5rem;
  max-width: 15rem; /* Set a max-width for the buttons */
  padding: 0.75rem 1.5rem 0; /* Add horizontal padding for better sizing */
  font-size: 1rem;
  font-weight: bold;
  color: rgb(0, 0, 0);
  background: #3f3e3e;
  border-width: 0;
  border-radius: 8px;
  white-space: nowrap; /* Prevent text like "Meet The Team" from wrapping */
}
.actions button:hover {
  cursor: pointer;
  background-color: rgb(168, 79, 79) !important;
  color: rgb(255, 255, 255);
}

.actions .active {
  background: rgb(168, 79, 79);
  color: rgb(0, 0, 0);
}

.section-header {
  position: relative;
  text-align: center;
  animation: leftToRight 0.5s ease-in;
  font-size: 2.3rem;

}

.about-us-images,
.wip-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  /* Make the container take up a percentage of the width to be responsive */
  width: 100%;
  /* But cap the width on very large screens to prevent images getting too big */
  margin: 1.5rem auto 0; /* Center the container */
}

.about-us-images img {
  width: 30rem;
  aspect-ratio: 1300/ 1000; /* Use the image's natural aspect ratio */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.wip-images img {
  width: 30rem;
  aspect-ratio: 950/ 1280; /* Use the image's natural aspect ratio */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.section {
  position: relative;
  display: flex;
  margin-bottom: 3rem;
  animation: rightToLeft 0.5s ease-in;
}
.section-text {
  margin: 1rem;
  text-align: left;
  position: relative;
  font-size: 1.6rem;
}

.section-text ul {
  /* This allows the parent's text-align:center to center the list block */
  display: inline-block;
  /* This resets the text alignment for the list items back to the left */
  text-align: left;
}

.footer {
  position: fixed;
  bottom: 0;
  padding-bottom: 1rem;
  width: 100%;
  background-color: #3f3e3e;
}

.contact-us {
  margin: 0.5rem 0;
}

.no-flex {
  display: block !important;
}


@keyframes fadein {
  from {
    color: white;
  }
  to {
    color: red;
  }
}

@keyframes rightToLeft {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}

@keyframes leftToRight {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}

@media screen and (max-width: 900px) {
  .toolbar-content {
    padding: 0 2rem; /* Match the horizontal padding of .information on smaller screens */
  }
  .information {
    padding: 1rem 2rem;
  }
  .actions button {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 790px) {
  /* Stack the "About Us" images vertically on smaller screens */
}

@media screen and (max-width: 630px) {
}
