/* ================================
   Mentors and Moms Page Styling
   Modern, Sleek, Polished
   ================================ */

/* Global reset */
body {
  margin: 0;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: #ffffff;
  color: #222;
  line-height: 1.7;
}

/* Header section */
.mentors-intro header {
  display: flex;              /* logo + text side by side */
  align-items: center;        /* vertical centering */
  justify-content: center;    /* center horizontally */
  gap: 1.2rem;                /* space between logo and text */
  padding: 2rem 1rem;         /* tighter vertical spacing */
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;        /* rounded corners */
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.mentors-intro header img {
  max-width: 120px;           /* slightly smaller logo */
  flex-shrink: 0;
  transition: transform 0.6s ease;
}
.mentors-intro header img:hover {
  transform: scale(1.05) rotate(-2deg);
}

.mentors-intro header h1 {
  font-size: 2rem;            /* friendlier size */
  font-weight: 600;           /* softer weight */
  margin: 0;
  color: #6c3483;
  letter-spacing: 0.3px;
  line-height: 1.3;           /* tighter line spacing */
  font-family: 'Nunito', 'Inter', sans-serif; /* friendlier rounded font */
}

/* Intro content */
.mentors-intro p {
  max-width: 800px;
  margin: 1.2rem auto;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  background: #faf7fc;              /* soft lavender background */
  border-left: 4px solid #8e44ad;   /* accent stripe */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mentors-intro p:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* Optional: first paragraph slightly larger for emphasis */
.mentors-intro p:first-of-type {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
}


.mentors-intro a {
  display: inline-block;
  margin: 1.5rem 0;
  padding: 0.8rem 1.6rem;
  background: #6c3483;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.mentors-intro a:hover {
  background: #8e44ad;
  box-shadow: 0 6px 20px rgba(142, 68, 173, 0.3);
  transform: translateY(-3px);
}

/* Verse blockquote */
.mentors-intro blockquote {
  margin: 3rem auto;
  padding: 2rem;
  max-width: 700px;
  font-style: italic;
  font-size: 1.25rem;
  background: #faf7fc;
  border-left: 5px solid #8e44ad;
  border-radius: 6px;
  position: relative;
  color: #333;
}
.mentors-intro blockquote::before {
  content: "❝";
  font-size: 2.5rem;
  color: #8e44ad;
  position: absolute;
  top: -15px;
  left: 15px;
}
/* ================================
   Intro Links & Contact Styling
   ================================ */

/* Container for both links */
.intro-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem auto;
}

/* Campus link */
.campus-link {
  padding: 0.7rem 1.4rem;
  background: #6c3483;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.campus-link:hover {
  background: #8e44ad;
  box-shadow: 0 6px 20px rgba(142, 68, 173, 0.3);
  transform: translateY(-3px);
}

/* Registration link */
.registration-link {
  padding: 0.7rem 1.4rem;
  background: #f39c12;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.registration-link:hover {
  background: #d68910;
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
  transform: translateY(-3px);
}

/* Contact info block */
.intro-contact {
  margin: 2rem auto;
  max-width: 700px;
  padding: 1.2rem 1.5rem;
  background: #faf7fc;
  border: 1px solid #eee;
  border-radius: 10px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #444;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Contact name and phone emphasis */
.contact-name {
  font-weight: 600;
  color: #6c3483;
}
.contact-phone {
  font-weight: 600;
  color: #2c3e50;
}

/* Schedule section */
.mentors-schedule {
  background: #fdfdfd;
  padding: 4rem 2rem;
  text-align: center;
}
.mentors-schedule h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #6c3483;
}.schedule-table {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  border-collapse: collapse;
  font-size: 1rem;
}

.schedule-table th,
.schedule-table td {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  text-align: left;
}

.schedule-table th {
  background: #6c3483;
  color: #fff;
  font-weight: 600;
}

.schedule-table tr:nth-child(even) {
  background: #faf7fc;
}

.schedule-table tr:hover {
  background: #f0eaf7;
  transition: background 0.3s ease;
}

/* Gallery section */
.mentors-gallery {
  padding: 4rem 2rem;
  background: #fafafa;
}
.mentors-gallery h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #6c3483;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}
.gallery-grid figure:hover {
  transform: translateY(-6px);
}
.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-grid figure:hover img {
  transform: scale(1.08);
}
.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.25));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-grid figure:hover::after {
  opacity: 1;
}
