/* ================================
   Men's Discipleship Page Styling
   ================================ */
.mens-discipleship,
#MensDiscipleship {
  max-width: 860px;                  /* narrower for readability */
  margin: 3rem auto;
  padding: 2rem;
  background: linear-gradient(180deg, #f9f9f9, #ffffff);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  position: relative;
}

/* -------------------------------
   Header
   ------------------------------- */
.discipleship-header {
  text-align: center;
  margin-bottom: 2rem;
}

.discipleship-title {
  font-size: 2.4rem;                 /* slightly smaller */
  font-weight: 800;
  color: var(--primary-green);
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.discipleship-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-top: 0.5rem;
}

.discipleship-note {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-top: 0.75rem;
  font-style: italic;
  text-align: center;
}

/* -------------------------------
   Groups
   ------------------------------- */
.discipleship-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.discipleship-group {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  padding: 1.25rem;
  border-top: 4px solid var(--primary-green);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.discipleship-group:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Group Card Title */
.group-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-green-dark);
  margin-bottom: 0.75rem;
  text-align: center;               /* keep title centered */
}

/* Group Card Content */
.group-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0.25rem 0;
  text-align: center;               /* center text for cohesion */
}

/* Tables inside Group Cards */
.group-card table {
  width: 100%;                      /* full width of card */
  max-width: 90%;                   /* narrower for balance */
  margin: 0 auto 1rem auto;         /* center within card */
  border-collapse: collapse;
  text-align: center;               /* align with title */
}

.group-card table th,
.group-card table td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
  color: var(--text-body);
}

.group-card table th {
  font-weight: 700;
  color: var(--primary-green-dark);
  background: var(--light-gray);
}

/* Optional: subtle hover row effect */
.group-card table tr:hover {
  background: rgba(0,0,0,0.03);
}

.discipleship-group p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0.25rem 0;
}

/* Additional group details */
.group-area,
.group-day,
.group-time {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin: 0.25rem 0;
}

/* -------------------------------
   Study Section
   ------------------------------- */
.discipleship-study {
  margin-top: 2rem;
}

.study-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-align: center;
}

.study-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1.25rem;
  text-align: center;
}

.study-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.study-detail {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  padding: 1rem 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.study-detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.detail-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-green-dark);
  margin-bottom: 0.4rem;
}

.detail-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
}

.study-plan-description {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-top: 0.5rem;
  text-align: center;
}

/* -------------------------------
   Contact
   ------------------------------- */
.discipleship-contact {
  margin-top: 2.5rem;
  text-align: center;
}

.contact-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.75rem;
}

.contact-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-green-dark);
}

.contact-phone {
  font-size: 0.95rem;
  color: var(--text-body);
}

/* -------------------------------
   Scripture
   ------------------------------- */
.discipleship-scripture {
  margin-top: 2.5rem;
  text-align: center;
  font-style: italic;
  background: var(--light-gray);
  border-left: 4px solid var(--primary-green);
  padding: 1.25rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.scripture-text {
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.scripture-reference {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-green-dark);
}
