/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    font-family: 'Neuton', serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* End of CSS Reset */

/* Google Font: Neuton */
.neuton-extralight {
    font-family: "Neuton", serif;
    font-weight: 200;
    font-style: normal;
}
  
  .neuton-light {
    font-family: "Neuton", serif;
    font-weight: 300;
    font-style: normal;
}
  
  .neuton-regular {
    font-family: "Neuton", serif;
    font-weight: 400;
    font-style: normal;
}
  
  .neuton-bold {
    font-family: "Neuton", serif;
    font-weight: 700;
    font-style: normal;
}
  
  .neuton-extrabold {
    font-family: "Neuton", serif;
    font-weight: 800;
    font-style: normal;
}
  
  .neuton-regular-italic {
    font-family: "Neuton", serif;
    font-weight: 400;
    font-style: italic;
}
/* End of Google Font */

body {
    background-color: #f5f4eb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#div_logo {
    width: 100%;
    max-width: 1080px;
    margin-top: 30px;
    margin-bottom: 20px;
}

#logo {
    width: 100%;
    max-width: 300px;
}

#mission_statement {
    background-color: rgb(40, 80, 23);
    width: 100%;
    max-width: 1080px;
    margin-top: 30px;
}

#mission_statement p{
    font-size: 1.75rem;
    text-align: center;
    padding: 50px 15px 50px 15px;
    color: white;
    text-transform: capitalize;
}

.div_main-text {
    width: 100%;
    max-width: 1080px;
    max-height: fit-content;
    margin-top: 20px;
}

.main-text {;
    font-size: 1.3rem;
    text-align: center;
    padding: 15px 15px 15px 15px;
}

#div_bios {
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-direction: row;
    justify-content:center;
    margin-top: 50px;
}

.bios_block {
    width: 50%;
    padding: 30px;
}

/* .bios_block:first-child {
  border-right: 1px solid #555555;
} */

h3 {
    font-size: 1.5em; /* Increase font size for headers */
    font-weight: bold; /* Make headers bold */
    margin-bottom: 5px; /* Add some space below headers */
    color: #333; /* Darker color for headers */
}

.title-text {
    font-size: 1.1em; /* Slightly smaller than the name */
    font-weight: bold; /* Make the title bold */
    margin-top: 5px; /* Add some space above the title */
    margin-bottom: 10px; /* Add some space below the title */
    color: #555; /* Slightly lighter color for the title */
}

.bio-text {
    font-size: 1.2em; /* Font size for biography text */
    margin-top: 10px; /* Add some space between paragraphs */
}

/* Form Styling */
.contact-section {
    width: 100%;
    max-width: 40rem;
    padding: 5rem 1rem;
  }
  
  .contact-intro > * + * {
    margin-top: 1rem;
  }
  
  .contact-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
  }
  
  .contact-description {
    color:black;
  }
  
  .form-group-container {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-label {
    margin-bottom: 0.5rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    display: flex;
    height: 2.5rem;
    width: 100%;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  
  .form-input::placeholder,
  .form-textarea:focus-visible {
    color: #6b7280;
  }
  
  .form-input:focus-visible,
  .form-textarea:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
  }
  
  .form-textarea {
    min-height: 120px;
  }
  
  .form-submit {
    width: 100%;
    margin-top: 1.2rem;
    background-color: rgb(40, 80, 23);
    color: #fff;
    padding: 13px 5px;
    border-radius: 0.375rem;
  }
/* End of Form Styling */