/* ===========================
   Youth Ministries Page (Mobile XL)
   =========================== */

.page-section {
  width: 100%;
  padding: 4rem 2.5rem;
  margin: 0 auto 4rem;
  box-sizing: border-box;
}

/* Intro header */
.youth-intro .intro-header {
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f9f9f9);
  padding: 3rem;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  max-width: 95%;
  margin: 0 auto;
}

.youth-intro .intro-logo {
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
}

.youth-intro .intro-heading {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

/* Youth links section */
.youth-links {
  text-align: center;
}

.link-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  justify-items: center;
}

.link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 3rem 2rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.link-card:active {
  transform: scale(0.97);
  box-shadow: inset 5px 5px 12px rgba(0,0,0,0.25);
}

.link-card .card-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 2rem;
}

.link-card h4 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.link-card p {
  font-size: 1.8rem;
  line-height: 2.5;
  color: #444;
  max-width: 90%;
  margin: 0 auto;
}

/* Conclusion section */
.youth-conclusion {
  text-align: center;
}

.youth-conclusion h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 2.5rem;
}

.youth-group,
.sunday-school {
  background: #fff;
  border-radius: 14px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  text-align: left;
}

.youth-group h3,
.sunday-school h3 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.youth-group p,
.sunday-school p {
  font-size: 1.8rem;
  line-height: 2.6;
  color: #333;
  margin-bottom: 1.5rem;
}

.youth-link {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1.5rem 2.5rem;
  border-radius: 12px;
  background: var(--primary-green);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.youth-link:active {
  transform: scale(0.96);
  box-shadow: inset 5px 5px 12px rgba(0,0,0,0.25);
}

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

.youth-contact p {
  font-size: 1.8rem;
  color: #333;
}

.contact-phone {
  font-weight: 800;
  color: var(--primary-green);
  font-size: 2rem;
}

/* Gallery */
.youth-gallery {
  margin-top: 3.5rem;
}

.youth-gallery h3 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 2.5rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.gallery-item img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}
