html {
  background: linear-gradient(to bottom, rgb(50, 50, 50) 0%, rgb(50, 50, 50) 50%, rgb(17.25, 17.25, 17.25) 50%, rgb(17.25, 17.25, 17.25) 100%);
}

body {
  padding: 0px;
  margin: 0px;
  margin-top: 50px;
  min-height: calc(100vh - 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #e7dbc4;
  overflow-x: hidden;
}

input, textarea, select {
  font-size: 16px;
}

#topNavBar {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 50px;
  display: flex;
  background-color: rgb(50, 50, 50);
  user-select: none;
  box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.3);
  z-index: 5;
}
#topNavBar li {
  display: flex;
  width: 10%;
  min-width: 120px;
}
#topNavBar li:not(#loginNavBarEntry):hover {
  background-color: rgb(70, 70, 70);
}
#topNavBar li.active {
  background-color: #004462;
  border-bottom: 5px #c01d18 solid;
}
#topNavBar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: white;
  font: bold 20px Helvetica, Arial, sans-serif;
}

#navToggle {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: rgb(50, 50, 50);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 6;
  align-items: center;
  justify-content: center;
}
#navToggle:hover {
  background-color: rgb(70, 70, 70);
}

#loginNavBarEntry {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
#loginNavBarEntry a {
  width: calc(100% - 40px);
  height: calc(100% - 15px);
  background-color: rgb(90, 90, 90);
  border-radius: 15px;
  border: solid rgb(90, 90, 90) 2px;
}
#loginNavBarEntry a:hover {
  background-color: rgb(228, 44.625, 39);
  border: solid #c01d18 2px;
}

.shell {
  display: flex;
  justify-content: center;
  align-items: center;
  position: static;
  margin: 0px;
  width: 100%;
  height: fit-content;
}

@media (max-width: 800px) {
  #loginBase {
    width: 100%;
    border-radius: 0px;
  }
}
.headerImage img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  display: block;
}
.headerImage #imageOverlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 119, 123, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: inset 10px 0px 20px rgba(0, 0, 0, 0.6);
}
.headerImage #sectionTitle {
  font-family: "Graduate", serif;
  font-weight: bolder;
  font-size: clamp(22px, min(13vw, 15vh), 160px);
  color: white;
  text-shadow: 0.06em 0.06em 0px #c01d18;
  line-height: 1.1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  overflow: hidden;
  padding: 10px 20px;
  box-sizing: border-box;
}
.headerImage {
  width: 100%;
  max-height: 500px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.bodyImage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bodyImage #imageOverlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 119, 123, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: inset 10px 0px 20px rgba(0, 0, 0, 0.6);
  max-height: 100vh;
  overflow-y: hidden;
}
.bodyImage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 800px) {
  #navToggle {
    display: flex;
  }
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: rgb(50, 50, 50);
    z-index: 5;
    box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.3);
  }
  #topNavBar {
    top: 50px;
    height: auto;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }
  #topNavBar.open {
    max-height: 400px;
  }
  #topNavBar li {
    width: 100%;
    min-width: unset;
    height: 50px;
    border-bottom: 1px solid rgb(70, 70, 70);
  }
  #loginNavBarEntry {
    margin-left: 0;
  }
  #loginNavBarEntry a {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}
footer {
  margin-top: 20px;
  background-color: rgb(17.25, 17.25, 17.25);
  width: 100%;
  box-sizing: border-box;
  color: rgb(200, 200, 200);
  padding: 10px;
  text-align: center;
  min-height: calc(100vh - 60px);
  height: auto;
  z-index: 4;
}
footer .footerSection h3 {
  color: rgb(200, 200, 200);
  font-size: 30px;
  margin-bottom: 0px;
  margin-top: 5px;
}
footer .footerSection ul {
  background-color: rgb(17.25, 17.25, 17.25);
  padding: 10px;
}
footer .footerSection li, footer .footerSection a {
  color: white;
  list-style: none;
  margin-top: 10px;
}
footer .footerContacts {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .footerContacts li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  justify-content: center;
}
footer .footerContacts .footerContactLabel {
  font-weight: bold;
  opacity: 0.75;
  white-space: nowrap;
}
footer .footerContacts .footerContactValue a {
  color: white;
  text-decoration: none;
}
footer .footerContacts .footerContactValue a:hover {
  text-decoration: underline;
}

#leadershipContainer {
  height: fit-content;
  width: 80%;
  box-sizing: border-box;
  margin-top: 20px;
  border-radius: 30px;
  padding: 30px;
}
@media (max-width: 800px) {
  #leadershipContainer {
    width: 100%;
    border-radius: 0px;
  }
}
#leadershipContainer {
  width: calc(90% - 60px);
  max-width: 1000px;
  background-color: rgb(50, 50, 50);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  color: white;
}

#leadershipHeading {
  font: bold 20px Helvetica, Arial, sans-serif;
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#noLeaders {
  opacity: 0.5;
  text-align: center;
  padding: 32px 0;
}

#leaderGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.leaderCard {
  background-color: rgb(30, 30, 30);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.leaderCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.leaderPhoto {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: rgb(30, 30, 30);
}
.leaderPhoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.leaderPhotoPlaceholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  color: rgba(255, 255, 255, 0.12);
}

.leaderInfo {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.leaderName {
  font: bold 20px Helvetica, Arial, sans-serif;
  font-size: 20px;
  color: white;
  margin: 0 0 6px;
}

.leaderEmail {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  word-break: break-all;
}
.leaderEmail:hover {
  color: white;
  text-decoration: underline;
}

.leaderBio {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  margin: 0 0 14px;
  flex: 1;
}

.leaderActions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  flex-wrap: wrap;
}
.leaderActions button {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 8px;
}

#addLeaderContainer {
  height: fit-content;
  width: 80%;
  box-sizing: border-box;
  margin-top: 20px;
  border-radius: 30px;
  padding: 30px;
}
@media (max-width: 800px) {
  #addLeaderContainer {
    width: 100%;
    border-radius: 0px;
  }
}
#addLeaderContainer {
  width: calc(90% - 60px);
  max-width: 1000px;
  background-color: rgb(50, 50, 50);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  color: white;
  margin-bottom: 40px;
}

#leaderFormContainer {
  height: fit-content;
  width: 80%;
  box-sizing: border-box;
  margin-top: 20px;
  border-radius: 30px;
  padding: 30px;
}
@media (max-width: 800px) {
  #leaderFormContainer {
    width: 100%;
    border-radius: 0px;
  }
}
#leaderFormContainer {
  width: calc(90% - 60px);
  max-width: 1000px;
  background-color: rgb(50, 50, 50);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  color: white;
  max-width: 680px;
  margin-top: 32px;
  margin-bottom: 40px;
}

.leaderBackLink {
  display: inline-block;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
}
.leaderBackLink:hover {
  color: white;
  text-decoration: underline;
}

.leaderFormHeading {
  font: bold 20px Helvetica, Arial, sans-serif;
  font-size: 24px;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.leaderFormError {
  color: rgb(230.8333333333, 66.7013888889, 61.6666666667);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.leaderRequired {
  color: rgb(230.8333333333, 66.7013888889, 61.6666666667);
}

.leaderLabel {
  display: block;
  font: bold 20px Helvetica, Arial, sans-serif;
  font-size: 15px;
  margin-bottom: 6px;
  margin-top: 20px;
}

.leaderInput {
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: white;
  font-size: 0.95rem;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.leaderInput::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.leaderInput:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.leaderTextarea {
  resize: vertical;
  min-height: 100px;
}

.leaderFormActions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.leaderFormBtn {
  flex: 1;
  min-width: 120px;
  height: 46px;
  border-radius: 10px;
  border: 2px solid #c01d18;
  background: #c01d18;
  color: white;
  font: bold 20px Helvetica, Arial, sans-serif;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.leaderFormBtn:hover {
  background: rgb(228, 44.625, 39);
}
.leaderFormBtn.leaderFormBtnCancel {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}
.leaderFormBtn.leaderFormBtnCancel:hover {
  background: rgba(255, 255, 255, 0.08);
}

.photoUploadArea {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 4px;
}

.photoFileInput {
  width: 100%;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  cursor: pointer;
  min-height: 44px;
  padding: 10px 0;
}

#photoPreviewWrap,
#currentPhotoWrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
#photoPreviewWrap img,
#currentPhotoWrap img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

#clearPhoto {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 4px;
  transition: background 0.15s;
}
#clearPhoto:hover {
  background: rgba(192, 29, 24, 0.4);
}

.photoHint {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  line-height: 1.4;
}

#contactContainer {
  height: fit-content;
  width: 80%;
  box-sizing: border-box;
  margin-top: 20px;
  border-radius: 30px;
  padding: 30px;
}
@media (max-width: 800px) {
  #contactContainer {
    width: 100%;
    border-radius: 0px;
  }
}
#contactContainer {
  width: calc(90% - 60px);
  max-width: 1000px;
  background-color: rgb(50, 50, 50);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  color: white;
  margin-bottom: 0;
}

#contactList {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contactEmpty {
  opacity: 0.5;
  text-align: center;
  padding: 20px 0;
}

.contactRow {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.contactDisplay {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  flex-wrap: wrap;
}

.contactIcon {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.contactLabel {
  font: bold 20px Helvetica, Arial, sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  min-width: 80px;
}
.contactLabel::after {
  content: ":";
}

.contactValue {
  font-size: 0.9rem;
  color: white;
  word-break: break-all;
  flex: 1;
}
.contactValue a {
  color: inherit;
  text-decoration: none;
}
.contactValue a:hover {
  text-decoration: underline;
}

.contactActions {
  display: flex;
  gap: 6px;
  margin-left: auto;
  flex-shrink: 0;
}

.contactEditBtn,
.contactDeleteBtn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.15s, color 0.15s;
}
.contactEditBtn:hover,
.contactDeleteBtn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: white;
}

.contactDeleteBtn:hover {
  background: rgba(192, 29, 24, 0.4);
}

.contactEditForm {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.contactEditActions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.contactAddHeading {
  font: bold 20px Helvetica, Arial, sans-serif;
  font-size: 16px;
  margin: 24px 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.contactAddRow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.contactAddRow .leaderInput {
  flex: 1;
  min-width: 140px;
}

.contactAddBtn {
  flex: 0 0 auto !important;
  min-width: 80px !important;
  height: 38px !important;
  font-size: 14px !important;
}

@media (max-width: 800px) {
  #leadershipContainer,
  #leaderFormContainer,
  #contactContainer,
  #addLeaderContainer {
    width: 100%;
    max-width: none;
    border-radius: 0;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  #leaderGrid {
    grid-template-columns: 1fr;
  }
  .leaderFormActions {
    flex-direction: column;
  }
  .leaderFormActions .leaderFormBtn {
    flex: none;
    width: 100%;
  }
  .contactAddRow {
    flex-direction: column;
  }
  .contactAddRow .leaderInput, .contactAddRow .contactAddBtn {
    width: 100%;
    min-width: unset !important;
  }
}

/*# sourceMappingURL=leadership.css.map */
