/* ============================================
   International Missions Stylesheet - Refined
   ============================================ */

/* ---------------------
   Intro Section
   --------------------- */
.missions-intro {
  max-width: 900px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(to bottom, var(--white) 0%, var(--light-gray) 100%);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: 'Goudos', serif;
}

.intro-header {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-green-dark);
  margin-bottom: 1rem;
}

.intro-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 0 0 1rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.intro-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--primary-green);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.intro-scripture {
  font-size: 1.2rem;
  font-style: italic;
  color: #555;
  margin: 1.5rem auto;
  line-height: 1.6;
}

.intro-description {
  margin-top: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.intro-buttons {
  margin-top: 2rem;
}

/* ---------------------
   Buttons (shared)
   --------------------- */
.btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.7rem 1.4rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Goudos', serif;
  border-radius: 6px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
  color: var(--white);
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.btn-disabled {
  background: var(--light-gray);
  color: var(--dark-gray);
  cursor: not-allowed;
  box-shadow: none;
}

/* ---------------------
   Country Sections
   --------------------- */
#Japan-heading,
#Mexico-heading,
#Partners-heading {
  font-size: 2.4rem;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.2;
  animation: headingSlideIn 0.8s ease-out forwards;
}

#Japan-heading { font-family: 'Wonton', sans-serif; }
#Mexico-heading { font-family: 'MexicanTequila', serif; }
#Partners-heading { font-family: 'Lora', serif; font-weight: 700; }

#Partners-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* Country Flags & Icons */
.country-flag,
#Partners-heading .partners-icon {
  width: 24px;
  height: auto;
  vertical-align: middle;
  margin-left: 0.4rem;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
  transition: transform 0.25s ease;
}
.country-flag:hover,
#Partners-heading .partners-icon:hover {
  transform: scale(1.08) rotate(2deg);
}

/* ---------------------
   Missionary & Partner Cards
   --------------------- */
.missionary-card,
.partner-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1.5rem;
  margin: 0 auto 2rem auto;
  border-top: 3px solid var(--primary-green);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: 800px;
}
.missionary-card:hover,
.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Missionary-specific elements */
.missionary-header {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-green-dark);
  margin-bottom: 0.75rem;
}

.missionary-photo {
  width: 100%;
  max-width: 160px