/* ================= JOIN OUR FAMILY ================= */
.join-family-section{
  background: url("../images/Rectangle\ 87.png"); /* use your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
   padding: 70px;
}
.join-family-container {

  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}

/* Overlay */
.join-family-overlay {
  /* background: rgba(255, 255, 255, 0.78); */
 
}

.join-family-content {
  max-width: 900px;
}

/* Title */
/* .join-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: EB Garamond;
  font-size: 32px;
  font-weight: 400;
  color: #252525;
  margin-bottom: 16px;
} */


.join-title {
  font-family: "EB Garamond";
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
  letter-spacing: 1%;
  color: #252525;

  display: flex;
  flex-direction: column; /* stack line + text */
  align-items: flex-start;
  gap: 2px;

  margin-bottom: 35px;
  position: relative;
}

/* small line above */
.join-title::before {
  content: "";
  width: 32px;          /* very small line */
  height: 4px;
  background: #e11b22;  /* change color if needed */
  border-radius: 2px;
}

/* .join-title .line {
  width: 30px;
  height: 3px;
  background: #e11b22;
} */

/* Text */
.join-text {
  font-family: Outfit;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 650px;
  margin-bottom: 28px;
}

/* Buttons */
.join-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-family: Outfit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Admission */
.btn-red {
  background: #e11b22;
  color: #fff;
}

.btn-red:hover {
  background: #c9161c;
}

/* Prospectus */
.btn-outline-red {
  border: 2px solid #e11b22;
  color: #e11b22;
  background: transparent;
}

.btn-outline-red:hover {
  background: #e11b22;
  color: #fff;
}

/* Donate */
.btn-outline-green {
  border: 2px solid #1c9c54;
  color: #1c9c54;
  background: transparent;
}

.btn-outline-green:hover {
  background: #1c9c54;
  color: #fff;
}

@media(max-width:990px){
  .join-title {
    font-size: 30px;
  }
  .join-family-section{
    padding: 30px 35px;
  }

}
