
/* Global font */
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
}

html, body {
  overflow-x: hidden;
}


/* Navbar container: height + subtle bottom shadow like the screenshot */
.moral-navbar {
  min-height: 80px;
  box-shadow: none;
}

.easton-logo {
  height: 100px;
  width: auto;
  display: block;
}


/* Brand styling */
.moral-brand {
  text-decoration: none;
}

.moral-mark {
  color: #2a153a; /* deep purple */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Center links */
.moral-nav-links .nav-link {
  color: #1f1f1f;
  font-weight: 500;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.moral-nav-links .nav-link:hover,
.moral-nav-links .nav-link:focus {
  color: #000;
}

/* CTA button (yellow pill) */
.moral-cta-btn {
  background: #f3cf69; /* warm yellow */
  border: 0;
  color: #1a1a1a;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.moral-cta-btn:hover,
.moral-cta-btn:focus {
  background: #351C42;
  color: #FFF8E1;
}

.moral-cta-icon {
  font-size: 12px;
  line-height: 1;
  transform: translateY(-1px);
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap; /* helps on mobile */
}

.hero-cta-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.hero-cta-outline:hover,
.hero-cta-outline:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

.inner-page .moral-navbar {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Optional: keep spacing clean on smaller screens */
@media (max-width: 991.98px) {
  .moral-nav-links .nav-link {
    padding: 0.75rem 0;
  }

  .moral-cta-btn {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }
}

/* NAV: add breathing room between links (desktop) */
@media (min-width: 992px) {
  .moral-nav-links {
    gap: 20px;              /* try 16px–28px */
  }

  /* optional: reduce padding since gap handles spacing now */
  .moral-nav-links .nav-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}


/* HERO SECTION */
.hero-section {
  background: #2b1438; /* deep purple */
  padding: 90px 0;
}

.hero-row {
  min-height: 520px;
}

/* Left side spacing */
.hero-left {
  padding-right: 32px;
}

/* Title */
.hero-title {
  color: #ffffff;
  font-weight: 500;
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

/* Subtitle */
.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* CTA button */
.hero-cta {
  background: #f3cf69;
  border: 0;
  color: #1a1a1a;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.hero-cta:hover,
.hero-cta:focus {
  background: #eac25b;
  color: #111;
}

.hero-cta-icon {
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Right image card */
.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-image-card {
  width: min(620px, 100%);
  border-radius: 0;              /* screenshot looks square */
  overflow: hidden;
  box-shadow: none;              /* keep it clean like your mock */
  margin-right:0;
  border-radius: 16px;
  overflow: hidden; 
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-left {
    padding-right: 0;
    margin-bottom: 28px;
  }

  .hero-row {
    min-height: auto;
  }
}


/* WHO WE ARE */
.who-section {
  background: #ffffff;
  padding: 90px 0;
}

/* IMAGE LAYOUT */
.who-images {
  position: relative;
  min-height: 520px; /* gives room for overlap */
  max-width: 100%;
  min-height: 520px;
}

/* Shared image card styles */
.who-img-card {
  position: absolute;
  overflow: hidden;
  border-radius: 18px;
  background: #eee;
}

.who-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Back image (top-left) */
.who-img-back {
  left: 0;
  top: 0;
  width: 420px;
  height: 420px;
  z-index: 1; 
}

/* Front image (overlapping, lower + more centered) */
.who-img-front {
  left: 56%;
  top: 110px;
  transform: translateX(-50%);
  width: 420px;
  height: 420px;
  z-index: 2; 
}

/* CONTENT */
.who-content {
  max-width: 560px;
}

.who-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.who-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #2b1438; /* brand purple */
}

.who-kicker-text {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: #2b1438;
}

.who-title {
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 600;
  color: #0b0f14;
}

.who-body p {
  color: #2a2a2a;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* Button */
.who-btn {
  background: #2b1438;
  color: #fff;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: 0;
}

.who-btn:hover,
.who-btn:focus {
  background: #241030;
  color: #fff;
}

.who-btn-icon {
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .who-section {
    padding: 60px 0;
  }

  .who-images {
    position: relative;
    min-height: 520px;
    margin-bottom: 10px;
  }

  .who-img-back {
    width: 300px;
    height: 300px;
  }

  .who-img-front {
    width: 340px;
    height: 390px;
    left: 55%;
    top: 160px;
  }
}

@media (max-width: 575.98px) {
  .who-images {
    min-height: 520px;
  }

  .who-img-back {
    width: 260px;
    height: 260px;
  }

  .who-img-front {
    width: 300px;
    height: 360px;
    left: 58%;
  }
}

/* SERVICE SCHEDULE */
.schedule-section {
  background: #351C42;
  padding: 90px 0;
  color: #ffffff;
}

.schedule-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 60px;
}

/* Grid */
.schedule-grid {
  align-items: stretch;
}

.schedule-col {
  height: 100%;
}


/* Headings */
.schedule-heading {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

/* Schedule item */
.schedule-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

/* Calendar badge (matches example structure) */
.schedule-date {
  width: 70px;
  border-radius: 0;          /* example is square */
  overflow: hidden;
  flex: 0 0 auto;
  background: #4a285a;       /* your new scheme */
}

/* Top bar */
.schedule-date-top {
  background: #6a3a80;       /* lighter purple bar */
  color: #ffffff;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 6px 5px;
}

/* Big number */
.schedule-date-day {
  background: #4a285a;       /* main block */
  color: #ffffff;
  text-align: center;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  padding: 10px 6px 9px;
}

/* Bottom bar */
.schedule-date-bottom {
  background: #3a1f49;       /* darker purple bar */
  color: #ffffff;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 6px 5px;
}


/* Info */
.schedule-info strong {
  display: block;
  font-size: 1rem;
}

.schedule-time {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Morning minyan text */
.schedule-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.schedule-text a {
  color: #f3cf69;
  text-decoration: underline;
}

.schedule-meta {
  margin-top: 18px;
  font-size: 0.9rem;
}

/* Footer */
.schedule-footer {
  margin-top: 70px;
}

.schedule-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.schedule-btn {
  background: #a67612;
  color: #ffffff;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
}

.schedule-btn.outline {
  background: transparent;
  border: 1px solid #a67612;
}

.schedule-btn:hover {
  background: #8f640f;
  color: #fff;
}

@media (min-width: 992px) {
  /* keep your spacing */
  .schedule-divider {
    padding-left: 32px;
  }

  /* row becomes the divider container */
  .schedule-grid {
    position: relative;
  }

  /* draw the two vertical lines from the ROW height */
  .schedule-grid::before,
  .schedule-grid::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
    pointer-events: none;
  }

  /* between col 1 and col 2 */
  .schedule-grid::before {
    left: 33.3333%;
  }

  /* between col 2 and col 3 */
  .schedule-grid::after {
    left: 66.6666%;
  }
}



@media (min-width: 992px) {
  /* Force equal-height columns */
  .schedule-grid {
    display: flex;
    align-items: stretch;
  }

  .schedule-grid > .schedule-col {
    display: flex;
    flex-direction: column;
  }
}



/* MOBILE: add horizontal dividers between items */
@media (max-width: 991.98px) {
  /* remove the desktop vertical dividers when stacked */
  .schedule-divider {
    margin-top: 12px;
  }

  /* Divider after each schedule item except the last in its column */
  .schedule-col .schedule-item:not(:last-child) {
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
}

@media (max-width: 991.98px) {
  /* Divider after Friday item too */
  .schedule-col:first-child .schedule-item {
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
}

@media (max-width: 991.98px) {
  /* Divider after last Saturday item too */
  .schedule-col:nth-child(2) .schedule-item:last-child {
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
}

/* EVENTS */
.events-section {
  background: #ffffff;
  padding: 90px 0;
}

.events-header {
  margin-bottom: 34px;
}

.events-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.events-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #351C42; /* your brand purple */
}

.events-kicker-text {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #351C42;
}

.events-title {
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 500;
  margin: 0;
  color: #0b0f14;
}

/* Card */
.event-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  background: #f2f2f2;
  aspect-ratio: 1 / 1; /* keeps all 4 evenly sized */
  margin-bottom: 18px;
}

.event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-name {
  font-size: 1.15rem;
  font-weight: 500;
  color: #0b0f14;
  margin: 0 0 14px;
}

/* Learn more */
.event-link {
  margin-top: auto; /* pushes link to the bottom for even alignment */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b0f14;
  text-decoration: none;
  font-weight: 500;
}

.event-link:hover {
  text-decoration: underline;
}

.event-link .material-symbols-outlined {
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .events-section {
    padding: 60px 0;
  }
}

/* TESTIMONIALS */
.testimonials-section {
  background: #ffffff;
  padding: 90px 0;
}

.testimonials-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.testimonials-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.testimonials-kicker-text {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: #351C42;
}

.testimonials-title {
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 500;
  margin: 0;
  color: #0b0f14;
}

/* Controls (top-right buttons) */
.testimonials-controls {
  display: inline-flex;
  gap: 10px;
  margin-top: 6px;
}

.testimonials-control-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: #351C42;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.testimonials-control-btn:hover {
  background: #2b1438;
}

/* Card */
.testimonial-card {
  height: 100%;
  border-radius: 14px;
  padding: 28px 28px 30px;
  background: #F9FAFB; /* warm cream (matches your gold aesthetic) */
  border: 1px solid #E5E7EB;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 auto;
  background: rgba(53, 28, 66, 0.12);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-name {
  font-weight: 500;
  color: #351C42;
  font-size: 1.05rem;
  margin-bottom: 3px;
}

.testimonial-location {
  font-size: 0.9rem;
  color: rgba(11, 15, 20, 0.85);
}

.testimonial-quote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(11, 15, 20, 0.9);
}

.testimonial-highlight {
  display: inline;
  margin-top: 6px;
  font-weight: 600;
}


/* Responsive */
@media (max-width: 991.98px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonials-controls {
    margin-top: 0;
  }
}

/* Testimonials carousel: keep it clean, no layout shifts */
#testimonialsCarousel .carousel-item {
  padding: 0.5px; /* prevents margin-collapsing edge cases */
}

#testimonialsCarousel .carousel-inner {
  overflow: visible; /* keeps shadows/rounding visible if you add later */
}

@media (max-width: 991.98px) {
  .testimonial-card {
    padding: 18px;
  }

  .testimonial-name {
    font-size: 0.95rem;
  }

  .testimonial-location {
    font-size: 0.8rem;
  }

  .testimonial-quote {
    font-size: 0.9rem;
    line-height: 1.55;
  }
}


/* BLOGS */
.blogs-section {
  background: #ffffff;
  padding: 90px 0;
}

.blogs-header {
  margin-bottom: 26px;
}

.blogs-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.blogs-kicker-text {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: #351C42;
}

.blogs-title {
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 500;
  margin: 0;
  color: #0b0f14;
}

/* Card */
.blog-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-img-wrap {
  aspect-ratio: 16 / 9;
  background: #f2f2f2;
}

.blog-card-link {
  text-decoration: none;
  display: block;
  color: inherit;
  height: 100%;
}

.blog-card-link:hover {
  text-decoration: none;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-body {
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-meta-top {
  font-size: 0.95rem;
  color: rgba(11, 15, 20, 0.75);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.blog-meta-divider {
  opacity: 0.6;
}

.blog-headline {
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 500;
  color: #0b0f14;
  margin: 0 0 18px;
}

/* Footer row inside card */
.blog-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.blog-tag {
  font-size: 0.95rem;
  color: rgba(11, 15, 20, 0.85);
}

/* Read Article link */
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b0f14;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.blog-link:hover {
  text-decoration: underline;
}

.blog-link .material-symbols-outlined {
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Bottom CTA */
.blogs-bottom {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.blogs-cta {
  background: #351C42;
  border: 0;
  color: #ffffff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.blogs-cta:hover {
  background: #2b1438;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 991.98px) {
  .blogs-section {
    padding: 60px 0;
  }

  .blogs-bottom {
    justify-content: flex-start;
  }
}

/* =========================
   CTA SECTION
========================= */
.cta-section {
  background: #f4efe7;
  padding: 90px 0;
  overflow: hidden; /* important for marquee */
}

/* =========================
   MARQUEE (LEFT SIDE)
========================= */
.cta-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* moving row */
.cta-marquee-track {
  display: flex;
  flex-wrap: nowrap;          /* ✅ prevents stacking */
  align-items: stretch;
  gap: 16px;
  width: max-content;
  animation: ctaMarqueeScroll 22s linear infinite;
}


/* individual image cards */
.cta-img-card {
  width: 310px;
  height: 340px;
  flex: 0 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #e9e3da;
}

/* images */
.cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* scroll RIGHT (positive translateX) */
@keyframes ctaMarqueeScroll {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* pause on hover (optional but nice) */
.cta-marquee:hover .cta-marquee-track {
  animation-play-state: paused;
}

/* reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .cta-marquee-track {
    animation: none;
  }
}

/* =========================
   RIGHT CONTENT
========================= */
.cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.cta-kicker-text {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: #351C42;
}

.cta-title {
  font-size: 1.9rem;
  font-weight: 500;
  margin: 0 0 14px;
  color: #0b0f14;
}

.cta-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(11, 15, 20, 0.82);
  margin-bottom: 26px;
  max-width: 460px;
}

/* =========================
   BUTTON + AVATARS
========================= */
.cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta-btn {
  background: #351C42;
  color: #ffffff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: none;
}

.cta-btn:hover {
  background: #2b1438;
  color: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-marquee-track {
    animation-duration: 28s; /* slower on mobile */
  }

  .cta-actions {
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (min-width: 992px) {
  .cta-title {
    font-size: 2.5rem;
    white-space: nowrap;
  }
}




/* =========================
   FOOTER
========================= */
.site-footer {
  background: #2b1438; /* deep purple */
  color: rgba(255, 255, 255, 0.85);
  padding: 70px 0 28px;
  overflow: hidden;
}

.footer-top{
  row-gap:32px;
}

/* Brand */
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-logo {
  height: 120px;
  width: auto;
  display: block;
}

/* Description */
.footer-desc {
  margin: 0 0 20px;
  line-height: 1.6;
  color: #b29fbc;
  font-weight: 400;
  font-size: 0.875rem;
}

/* =========================
   CONTACT BLOCKS
   (matches your HTML: block/head/rule/value)
========================= */

/* You are using a Bootstrap .row for footer-contact. Don't turn it into CSS grid. */
.footer-contact {
  margin-bottom: 26px;
}

/* Header row: icon + label aligned */
.footer-contact-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.footer-contact-head .material-symbols-outlined {
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.footer-contact-title {
  font-size: 0.95rem;
}

/* Divider line under label */
.footer-contact-rule {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.18);
  margin: 10px 0 12px;
}

/* Value link */
.footer-contact-value {
  display: inline-block;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap; /* keeps phone number on one line */
}

.footer-contact-value:hover {
  color: #f3cf69;
}

/* MOBILE: keep Email + Phone on the same row */
@media (max-width: 575.98px) {
  .footer-contact {
    display: flex;
    gap: 24px;
  }

  .footer-contact > div {
    flex: 1;
  }
}


/* =========================
   CTA BUTTON
========================= */
.footer-cta {
  margin-top: 26px;
  background: #f3cf69;
  color: #1a1a1a;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;

  /* prevents full-width stretching inside flex-column */
  align-self: flex-start;
  width: fit-content;
}

.footer-cta:hover {
  background: #eac25b;
  color: #111111;
}

/* RIGHT SIDE LAYOUT (desktop) */
.footer-right-col {
  display: flex;
  justify-content: flex-end;
}

.footer-right-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-links-col {
 margin-bottom: 180px;
}

/* =========================
   FOOTER LINKS
========================= */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-list a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* =========================
   SOCIAL ICONS (IMAGES)
========================= */
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  /* nudges socials to visually line up with CTA height */
  margin-bottom: 26px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.footer-social-btn img {
  width: 16px;
  height: 16px;
  display: block;
}

/* =========================
   DIVIDER + BOTTOM
========================= */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 34px 0 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-copy,
.footer-credit {
  white-space: nowrap;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
  .site-footer {
    padding-top: 55px;
  }

  .footer-copy,
  .footer-credit {
    white-space: normal;
  }

  /* allow phone/email to wrap on very small screens if needed */
  .footer-contact-value {
    white-space: normal;
  }

  .footer-social {
    margin-bottom: 0;
  }
}

@media (max-width: 991.98px) {
  .footer-right-col {
    justify-content: flex-start;
  }

  .footer-right-inner {
    align-items: flex-start;
  }

  .footer-links-col {
    margin-bottom: 32px;
  }

  .footer-list {
    text-align: left;
  }
}

/* =========================
   ABOUT: OUR STORY
========================= */
.about-story-section {
  background: #ffffff;
  padding: 90px 0;
}

.about-story-grid {
  margin-top: 18px;
}

/* Divider under the About header */
.about-story-section .section-divider{
  width: 100%;
  height: 1px;
  background: rgba(11, 15, 20, 0.15); /* darker so you can actually see it */
  margin: 28px 0 40px;
}



/* Title + paragraph */
.about-story-title {
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 500;
  color: #0b0f14;
  margin: 0 0 10px;
}

.about-story-text {
  max-width: 560px;
  color: rgba(11, 15, 20, 0.82);
  line-height: 1.75;
  margin: 0 0 18px;
}

/* Link */
.about-story-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0b0f14;
  font-weight: 600;
  text-decoration: none;
}

.about-story-link:hover {
  text-decoration: underline;
}

.about-story-link .material-symbols-outlined {
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Divider line */
.about-story-divider {
  height: 1px;
  background: rgba(11, 15, 20, 0.12);
  margin: 22px 0 18px;
}

/* Checklist items */
.about-story-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: rgba(11, 15, 20, 0.9);
}

.about-check {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #f3cf69;
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

/* Image card */
.about-story-img-card {
  border-radius: 16px;
  overflow: hidden;
  background: #f2f2f2;
  box-shadow: none;
  max-width: 600px;
}

.about-story-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.about-story-img-card--plaque {
  max-width: 420px;
}


/* Responsive */
@media (max-width: 991.98px) {
  .about-story-section {
    padding: 60px 0;
  }
}


/* =========================
   MEET OUR TEAM
========================= */
.team-section {
  background: #ffffff;
  padding: 90px 0;
}

.team-header {
  margin-bottom: 26px;
}

.team-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.team-kicker-text {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: rgba(11, 15, 20, 0.65);
  text-transform: uppercase;
}

.team-title {
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 500;
  margin: 0;
  color: #0b0f14;
}

/* Card */
.team-card {
  height: 100%;
}

.team-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  background: #efebe6;           
  aspect-ratio: 306 / 356;         
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-name {
  margin-top: 14px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #0b0f14;
}

.team-role {
  margin-top: 2px;
  font-size: 0.9rem;
  color: rgba(11, 15, 20, 0.65);
}




/* Responsive */
@media (max-width: 991.98px) {
  .team-section {
    padding: 60px 0;
  }
}

/* =========================
   TEAM MEMBER PROFILE PAGE
========================= */
.member-section{
  background:#fff;
  padding: 90px 0;
}

.member-photo-card{
  width: 100%;
  max-width: 624px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
}

.member-photo{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Right side text */
.member-name{
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
  margin: 0 0 6px;
  color: #0b0f14;
}

.member-role{
  font-size: 0.95rem;
  color: rgba(11, 15, 20, 0.65);
  margin-bottom: 22px;
}

.member-bio{
  color: rgba(11, 15, 20, 0.78);
  line-height: 1.8;
  margin: 0 0 16px;
  max-width: 620px;
}

.member-edu{
  margin: 0;
  color: rgba(11, 15, 20, 0.88);
}

.member-spacer{
  height: 44px;
}

/* Blocks */
.member-block{
  margin-top: 26px;
}

.member-block-title{
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 12px;
  color: #0b0f14;
}

/* Contact rows */
.member-contact{
  display: grid;
  gap: 10px;
}

.member-contact-row{
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(11, 15, 20, 0.85);
}

.member-contact-row .material-symbols-outlined{
  font-size: 18px;
  line-height: 1;
  color: rgba(11, 15, 20, 0.55);
}

.member-contact-label{
  min-width: 52px; /* keeps Email/Phone aligned */
  color: rgba(11, 15, 20, 0.75);
}

.member-contact-link{
  color: rgba(11, 15, 20, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Social buttons bar */
.member-social{
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(11,15,20,0.12);
  border-radius: 10px;
}

.member-social-btn{
  width: 78px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  text-decoration: none;
  border-right: 1px solid rgba(11,15,20,0.12);
}

.member-social-btn:last-child{
  border-right: none;
}

.member-social-btn img{
  width: 16px;
  height: 16px;
  display: block;
  opacity: 0.85;
}

.member-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;

  font-size: 0.95rem;
  font-weight: 500;
  color: #0b0f14;
  text-decoration: none; /* ← no underline on the whole link */
}

.member-back:hover .member-back-text {
  text-decoration: underline; /* ← only text underlines */
}

.member-back .material-symbols-outlined {
  font-size: 18px;
  text-decoration: none; /* ← extra safety */
}



/* Responsive */
@media (max-width: 991.98px){
  .member-section{
    padding: 60px 0;
  }

  .member-spacer{
    height: 28px;
  }

  .member-social-btn{
    width: 64px;
  }
}

/* =========================
   EVENTS LIST PAGE
========================= */
.events-list-section {
  background: #ffffff;
  padding: 90px 0;
}

.events-page-title {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 500;
  color: #0b0f14;
  margin: 0;
}

/* Large event card */
.event-feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  border: 1px solid rgba(11, 15, 20, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.event-feature-media {
  position: relative;
  height: 360px;
  background: #ece7e1;
  overflow: hidden;
}

.event-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tag pill */
.event-feature-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #5d5147;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(11, 15, 20, 0.06);
}

.event-feature-content {
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
}

.event-feature-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(11, 15, 20, 0.7);
  margin-bottom: 16px;
}


.event-feature-title {
  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
  line-height: 1.18;
  font-weight: 500;
  color: #0b0f14;
  margin: 0;
  max-width: 420px;
}

.event-feature-time {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.95rem;
  color: rgba(11, 15, 20, 0.78);
}

.event-feature-location {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  color: rgba(11, 15, 20, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
}

.event-feature-location .material-symbols-outlined,
.event-feature-time .material-symbols-outlined, 
.event-feature-location .material-symbols-outlined {
  font-size: 20px;
  line-height: 1;
  margin-top: 1px;
  color: rgba(11, 15, 20, 0.72);
}

/* Responsive */
@media (max-width: 1199.98px) {
  .event-feature-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .event-feature-media {
    min-height: 340px;
  }
}

@media (max-width: 991.98px) {
  .events-list-section {
    padding: 60px 0;
  }

  .event-feature-content {
    padding: 22px 22px 20px;
  }

  .event-feature-media {
    min-height: 300px;
  }

  .event-feature-title {
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  .event-feature-media {
    min-height: 240px;
  }

  .event-feature-tag {
    top: 14px;
    left: 14px;
    font-size: 0.82rem;
    padding: 7px 12px;
  }

  .event-feature-title {
    font-size: 1.9rem;
  }
}

/* =========================
   CONTACT MODERN PAGE
========================= */
.contact-modern-section {
  background: #ffffff;
  padding: 90px 0 80px;
}

.contact-modern-header {
  margin-bottom: 56px;
}

.contact-modern-title {
  font-size: clamp(2.8rem, 5vw, 4.3rem);
  line-height: 1.02;
  font-weight: 400;
  color: #0b0f14;
  margin: 14px 0 0;
}

.contact-modern-grid {
  align-items: start;
}

/* LEFT FORM */
.contact-modern-form {
  width: 100%;
  padding-top: 0;
}

.contact-modern-field {
  margin-bottom: 52px;
}

.contact-modern-field-full {
  margin-bottom: 48px;
}

/* NEW: wrapper handles icon + underline */
.contact-modern-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(11, 15, 20, 0.75);
  padding-bottom: 6px;
}

.contact-modern-input-wrap:focus-within {
  border-bottom-color: #2b1438;
}

.contact-modern-input-wrap .material-symbols-outlined {
  font-size: 18px;
  line-height: 1;
  color: rgba(11, 15, 20, 0.65);
  flex-shrink: 0;
}

/* input + textarea reset */
.contact-modern-input,
.contact-modern-textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 1rem;
  color: #0b0f14;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

.contact-modern-input::placeholder,
.contact-modern-textarea::placeholder {
  color: rgba(11, 15, 20, 0.72);
}

/* message field */
.contact-modern-message-wrap {
  margin-top: 10px;
}

.contact-modern-message-wrap .contact-modern-input-wrap {
  align-items: flex-start;
}

.contact-modern-message-wrap .material-symbols-outlined {
  margin-top: 2px;
}

.contact-modern-textarea {
  min-height: 110px;
  resize: vertical;
}

/* submit */
.contact-modern-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.contact-modern-submit {
  background: #351c42;
  border: 0;
  color: #ffffff;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.contact-modern-submit:hover,
.contact-modern-submit:focus {
  background: #2b1438;
  color: #ffffff;
}

.contact-modern-submit .material-symbols-outlined {
  font-size: 18px;
  line-height: 1;
}

/* RIGHT INFO */
.contact-modern-info {
  padding-left: 28px;
  padding-top: 45px;
}

.contact-modern-info-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 400;
  color: #0b0f14;
  margin: 0 0 18px;
}

.contact-modern-info-text {
  color: rgba(11, 15, 20, 0.72);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 420px;
  margin: 0 0 52px;
}

.contact-modern-info-block {
  margin-bottom: 34px;
}

.contact-modern-info-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 400;
  color: #0b0f14;
  margin-bottom: 8px;
}

.contact-modern-info-head .material-symbols-outlined {
  font-size: 19px;
  line-height: 1;
  color: rgba(11, 15, 20, 0.72);
}

.contact-modern-info-line {
  height: 1px;
  background: rgba(11, 15, 20, 0.12);
  margin-bottom: 10px;
  width: 100%;
  max-width: none;
}

.contact-modern-info-value,
.contact-modern-info-link {
  margin: 0;
  color: rgba(11, 15, 20, 0.75);
  line-height: 1.7;
  text-decoration: none;
}

.contact-modern-info-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* SOCIAL */
.contact-modern-social {
  display: inline-flex;
  align-items: center;
  margin-top: 52px;
  border: 1px solid rgba(11, 15, 20, 0.14);
  border-radius: 10px;
  overflow: hidden;
}

.contact-modern-social-btn {
  width: 78px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-right: 1px solid rgba(11, 15, 20, 0.14);
  text-decoration: none;
}

.contact-modern-social-btn:last-child {
  border-right: 0;
}

.contact-modern-social-btn img {
  width: 15px;
  height: 15px;
  display: block;
  opacity: 0.95;
}



/* RESPONSIVE */
@media (max-width: 991.98px) {
  .contact-modern-section {
    padding: 60px 0;
  }

  .contact-modern-header {
    margin-bottom: 34px;
  }

  .contact-modern-info {
    padding-left: 0;
    margin-top: 10px;
  }

  .contact-modern-info-text {
    margin-bottom: 34px;
  }

  .contact-modern-field {
    margin-bottom: 34px;
  }

  .contact-modern-actions {
    justify-content: flex-start;
  }
}

/* =========================
   ARTICLE PAGE
========================= */
.article-page-section {
  background: #ffffff;
  padding: 90px 0 70px;
}

.article-top-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  color: rgba(11, 15, 20, 0.72);
  font-size: 0.95rem;
}

.article-top-divider {
  width: 1px;
  height: 18px;
  background: rgba(11, 15, 20, 0.18);
}

.article-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.article-heading-main {
  max-width: 980px;
}

.article-page-title {
  font-size: 3rem;
  line-height: 1.40;
  font-weight: 400;
  color: #0b0f14;
  margin: 0;
}

.article-author {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-top: 14px;
}

.article-author-img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.article-author-name {
  font-size: 1rem;
  color: rgba(11, 15, 20, 0.78);
  white-space: nowrap;
}

.article-hero-wrap {
  max-width: 1100px;
  margin: 0 auto 48px;
  border-radius: 16px;
  overflow: hidden;
}

.article-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body-wrap {
  display: flex;
  justify-content: center;
}

.article-body {
  width: 100%;
  max-width: 860px;
}

.article-body p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(11, 15, 20, 0.82);
  margin: 0 0 24px;
}

.article-body h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  line-height: 1.2;
  font-weight: 500;
  color: #0b0f14;
  margin: 42px 0 18px;
}

.article-quote {
  margin: 34px 0;
  padding: 24px 28px;
  border-left: 4px solid #351C42;
  background: #f7f4ef;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #0b0f14;
  border-radius: 0 12px 12px 0;
}

/* =========================
   RELATED ARTICLES
========================= */
.related-articles-section {
  background: #ffffff;
  padding: 20px 0 90px;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .article-hero-img {
    height: 520px;
  }
}

@media (max-width: 991.98px) {
  .article-page-section {
    padding: 60px 0 50px;
  }

  .article-heading-row {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
  }

  .article-author {
    padding-top: 0;
  }

  .article-hero-img {
    height: 420px;
  }

  .related-articles-section {
    padding: 10px 0 60px;
  }
}

@media (max-width: 575.98px) {
  .article-top-meta {
    gap: 10px;
    margin-bottom: 20px;
  }

  .article-page-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .article-hero-wrap {
    margin-bottom: 36px;
  }

  .article-hero-img {
    height: 280px;
  }

  .article-body p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .article-quote {
    padding: 18px 18px 18px 20px;
    font-size: 1.03rem;
  }
}