/* ============================================================
   MEMBERS DIRECTORY PAGE STYLES (Mobile Fullscreen)
   ============================================================ */

.members-directory {
  width: 100%;        
  margin: 0;
  padding: 3rem 2rem;             /* generous padding */
  background: #ffffff;
  border-radius: 0;               /* no rounding, full page */
  box-shadow: none;               /* remove blur-causing shadow */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;        /* vertically center content */
  align-items: center;
}

/* Header */
.members-directory__header {
  margin-bottom: 1rem;
}

/* Title + Icon */
.members-directory__title {
  font-size: 4.2rem;              /* larger for mobile readability */
  font-family: var(--font-serif-primary);
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: titleFadeUp 0.8s ease-out forwards;
}

.members-directory__title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 4px;
  background: var(--primary-green);
  border-radius: 2px;
}

.members-directory__icon {
  width: 6rem;
  height:6rem;
}

/* Intro paragraph */
.members-directory__intro {
  font-size: 3.8rem;
  line-height: 4.6rem;
  color: #333;
  max-width: 90%;
  margin: 0 auto 2rem auto;
  animation: fadeUp 0.8s ease-out 0.2s forwards;
}

/* Access instructions */
.members-directory__instructions {
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #222;
}

/* Contact info */
.members-directory__contact {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  font-size: 1.6rem;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 560px;               /* keep cards readable */
}

.members-directory__contact li {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  background: #f3f7f9;
  padding: 1.2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.members-directory__contact strong {
  color: var(--primary-green);
  font-weight: 800;
}

.members-directory__contact a {
  color: #222;
  font-weight: 500;
  text-decoration: none;
  font-family: var(--font-serif-secondary);
  font-size: 3rem;
}

/* Directory button */
.members-directory__button {
  margin-top: 2rem;
  animation: fadeUp 0.8s ease-out 0.4s forwards;
}

.btn {
  display: inline-block;
  padding: 2.2rem 3.5rem;
  border-radius: 8px;
  font-size: 3.8rem;
  font-weight: 300;
  text-decoration: none;
  font-family:var(--font-sans-secondary) ;}


.btn-primary {
  background: var(--primary-green);
  color: #fff;
}

/* Animations */
@keyframes titleFadeUp {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
