.centered-content {
  margin: 0 auto;
  max-width: 900px;
}
body {
  background-color: #ffffff;
  color: #ff5100;
  font-family: "Lucida", sans-serif;
  margin: 0px;
}
.everything {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
}
.side-bar {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #ffffff;
  color: #ff5100;
  padding: 20px;
}
.navbar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  color: #ff5100;
  padding: 20px 0px;
}
.nav-link {
  color: #ff5100;
  color: #ff5100;
  text-decoration: none;
  font-size: 20px;
  margin: 10px 0px;
  padding: 5px 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}
.nav-link:hover {
  color: #ff5100;
}
.nav-link-active {
  border-left: #ff5100 3px solid;
  padding-left: 10px;
}
.header-text {
  width: 160px;
  font-family: "Lucida", sans-serif;
  font-size: 50px;
  margin-bottom: 20px;
  text-align: start;
  color: #ff5100;
}
.about-text {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  text-align: left;
  line-height: 1.8;
  font-size: 1.15rem;
}
.main-container {
  height: 100%;
  width: 100%;
  overflow-y: scroll;
}
.contact-page {
height: 100%;
width: 100%;
overflow-y: scroll;
display: flex;
justify-content: center;
align-items: center;
}
.contact-links {
  text-align: center;
  margin-bottom: 30px;
  font-size: 20px;
}

.contact-links a {
  color: #ff5100;
  text-decoration: none;
}

.contact-links a:hover {
  text-decoration: underline;
}
.main-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height:100%;
}
.statement-image {
  max-width: 600px;
  min-width: 300px;
  width: 80%;
  border-width: 0px;
  border-color: #ff3700;
  border-style: solid;
}
.statement {
  font-family: "Lucida", sans-serif;
  font-size: 20px;
  padding: 40px;
  background-color: #ffffff;
  color: #ff3700;
  text-align: center;
  align-items: center;
  max-width: 700px;
  width: calc(90% - 80px);
}
.donor-names {
  font-family: "Lucida", sans-serif;
  font-size: 30px;
  padding:40px;
  background-color: #ffffff;
  color: #ff3700;
  text-align: center;
}
.things-i-made-image {
  margin: 40px;
  max-width:80%;
  max-height: 90vh;
}
.body {
  margin: 0;
}
.image-grid {
  --gap: 16px;
  --num-col: 4;
  --row-height: 300px;

  box-sizing: border-box;
  padding: var(--gap);

  display: grid;
  grid-template-columns: repeat(var(--num-col), 1fr);
  grid-auto-rows: var(--row-height);
  gap: var(--gap);
}
.image-grid > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
} 
.homepage-image-grid {
  --gap: 16px;
  --num-col: 4;
  --row-height: 350px;

  box-sizing: border-box;
  padding: var(--gap);

  display: grid;
  grid-template-columns: repeat(var(--num-col), 1fr);
  grid-auto-rows: var(--row-height);
  gap: var(--gap);
}
.homepage-image-grid > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bio-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}
.collection-headers {
  font-size:25px;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 4rem;

}
form label {
  display: flex; /* Make label block level for full width */
  flex-direction: column;
  justify-content: flex-start; /* Keep label left-aligned */

  margin-bottom: 10px; /* Space between each label */
}
form input[type="text"],
form input[type="email"],
form textarea {
  width: 400px; /* Full width inputs and textarea */
  padding: 8px; /* Padding inside inputs */
  margin-top: 5px; /* Space between label text and input */
  border: 1px solid #000; /* Border color */
  border-radius: 0px; /* Rounded corners */
}
form textarea {
  height: 100px; /* Make textarea 5 lines high */
}
form button {
  background-color: #ff5100; /* Button background color */
  color: white; /* Button text color */
  padding: 10px 20px; /* Button padding */
  border: none; /* Remove border */
  border-radius: 0px; /* Rounded corners */
  cursor: pointer; /* Mouse pointer on hover */
  margin-top: 10px; /* Space above the button */
}

form button:hover {
  background-color: #ff5100; /* Darker background on hover */
}

.drawer-button {
  display: none;
}

.drawer {
  display: none; /* Hidden by default */
  position: fixed; /* Positioned relative to the viewport */
  left: 0;
  top: 0;
  height: 100%; /* Full height */
  width: 0px; /* Set a width */
  background-color: #f1f1f1; /* Drawer background color */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* Smooth slide in effect */
  z-index: 1000; /* Ensure it's above other content */
}

.mobile-header {
  display: none;
}

@media screen and (max-width: 750px) {
  .everything {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
  }
  .things-i-made-image {
    max-height: 80vh;
    justify-content: center;
  }
  .mobile-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    width: calc(100% - 20px);
    background-color: #ff5100;
    color: #ffffff;
    height: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
  }
  .drawer {
    display: block;
  }
  .drawer-button {
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 900;
    background-color: #ff5100;
    color: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    cursor: pointer;
    border-radius: 5%;
    margin-right: 20px;
  }
  .drawer-button:hover {
    background-color: #ff5100;
  }
  .drawer-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    width: 100%;
    background-color: #ff5100;
    color: #ffffff;
    height: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
  }
  .drawer-header-text {
    font-size: 30px;
    color: #ffffff;
  }
  .nav-link {
    padding: 15px 0px;
    margin: 0px;
    width: calc(100% - 10px);
    text-align: center;
    border-width: 0px 5px;
    border-style: solid;
    border-color: transparent;
  }
  .nav-link-active {
    border-left-color: #ff5100;
  }
  .side-bar {
    display: none;
  }

  form {
    width: 100%;
  }

  form label {
    width: 80%;
  }
  form input[type="text"],
  form input[type="email"],
  form textarea {
    width: calc(100% - 16px);
  }
}
