﻿.header-div {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}

.header-div img {
  width: 100%;
}

div .header-text {
  font-family: var(--headerFont);
  color: var(--darkOrange);
  font-size: 100px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.card {
  border-radius: 0.5rem;
  box-shadow: 0 8px 25px rgba(var(--darkBlueRGB), 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 5px solid var(--logoOrange);
  border-right: 5px solid var(--logoBlue);
  border-left: 5px solid var(--logoBlue);
  border-top: 5px solid var(--logoBlue);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(var(--darkBlueRGB), 0.15);
}

.card-header, .card-body {
  border: 0;
}

.card-header {
  background: var(--logoBlue);
  color: white;
  font-family: var(--headerFont);
  font-size: 1.8rem;
  padding: 1.5rem;
  position: relative;
}

.card-body h5 {
  font-family: var(--bodyFont);
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  color: var(--logoBlue);
}

.team-member {
  padding: 1.2rem;
  border-radius: 10px;
  position: relative;
}

.team-member:hover {
  background: rgba(var(--logoBlueRGB), 0.05);
}

.team-member h5 {
  font-family: var(--bodyFont);
  font-weight: 600;
  color: var(--logoBlue);
  margin-bottom: 0.3rem;
}

.team-member p {
  font-family: var(--bodyFont);
  color: var(--darkBlue);
  margin-bottom: 0;
  opacity: 0.8;
}

.card-body p {
  font-family: var(--bodyFont);
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
}

.subheading {
  background: rgba(var(--logoBlueRGB), 0.5);
  color: var(--logoBlue);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-family: var(--headerFont);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.section-divider {
  height: 2px;
  background: var(--logoOrange);
  border-radius: 1px;
  margin: 2rem 0;
  margin-top: 0.4px;
}

#card-header:focus, .member-styling:focus {
  outline: none;
}

#card-header:focus-visible, .member-styling:focus-visible {
  outline: 6px solid var(--darkOrange);
  outline-offset: 4px;
}

.join-box {
  background-color: #ffe9d0;
  border: none;
  border-bottom: 2px solid var(--logoOrange);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.join-title {
  font-family: var(--headerFont);
  color: var(--darkBlue);
  font-size: 35px;
}

.join-btn {
  background-color: var(--logoOrange);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-family: var(--headerFont);
  font-size: 20px;
}

.join-btn:focus {
  outline: none;
}

.join-btn:focus-visible {
  outline: 6px solid var(--darkBlue);
  border-radius: 6px;
  outline-offset: 3px;
}

.join-sub-header, .join-desc {
  font-family: var(--bodyFont);
  font-weight: 500;
  color: var(--darkBlue);
}

.join-sub-header {
  font-size: 20px;
}

.join-desc {
  font-size: 18px;
}

@media (max-width: 1490px) {
  div .header-text {
    font-size: 90px;
  }
}
@media (max-width: 1340px) {
  div .header-text {
    font-size: 75px;
  }
}
@media (max-width: 1180px) {
  div .header-text {
    font-size: 70px;
    margin-right: -1rem;
  }
}
@media (max-width: 1150px) {
  div .header-text {
    font-size: 60px;
    margin-right: -0.5rem;
  }
}
@media (max-width: 900px) {
  div .header-text {
    font-size: 50px;
    margin-right: -0.5rem;
  }
}
