/**
 * place custom style in this file
 * add !important to the end if no effect
 * e.g. color: #fff !important;
 * --------------------------------------------------
 *
 */
 /* Row styling for alignment */
.row.welcomeBy {
    display: flex;
    align-items: center;   /* vertical centering */
    justify-content: flex-start;
    margin-top: 10px;      /* optional spacing from other sections */
  }
  
  /* Pastor photo */
  .pastor-photo {
    width: 120px;
    height: auto;
    border-radius: 50%;    /* circular look */
  }
  
  /* Text info beside photo */
  .pastor-info {
    margin-left: 30px;     /* <-- space between photo and text */
  }
  
  .pastor-info h5 {
    margin-bottom: 0;      /* removes bottom gap under name */
  }
  
  .pastor-info .position {
    margin-top: 2px;       /* slight breathing room instead of 0 */
    font-size: 14px;
  }

  .card-light {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    background: #fff;
  }
  
  .card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px 0;
    font-size: 1.125rem;         /* ~18px */
    font-weight: 700;            /* bolder title */
    color: #222;
  }
  
  .card-title i {
    font-size: 1.1em;
    color: var(--color-primary, #0ea5b7);
  }
  
  .card-light h5 {
    margin: 0 0 6px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary, #0ea5b7);
  }
  
  .card-light p,
  .card-light address {
    margin: 0 0 6px 0;
    font-size: 0.95rem;
    color: #444;
    font-style: normal;
  }
  
  .card-light a {
    color: var(--color-primary, #0ea5b7);
    text-decoration: none;
  }
  
  .card-light a:hover {
    text-decoration: underline;
  }
  .welcomeBy .pastor-info h5,
  .welcomeBy .pastor-info p {
    color: #fff !important;
  }
  .primary-text-light,
  .primary-text-light h5,
  .primary-text-light p {
    color: #fff !important;
  }
  .card-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #007bff; /* theme color */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: background 0.3s ease;
  }
  
  .card-avatar:hover {
    background: #0056b3;
  }
/* ---------- Footer: force white + hover accent ---------- */
/* Place this at the end of your main CSS file (style.css) */

#site_footer_info,
#site_footer_info * {
  color: #ffffff !important;               /* force white text */
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: none !important;
}

/* Links (normal + visited) */
#site_footer_info a,
#site_footer_info a:link,
#site_footer_info a:visited {
  color: #ffffff !important;
  text-decoration: none !important;
  outline: none;
}

/* Hover / focus — pick an accent color here (gold used as example) */
:root { --footer-accent: #f1c40f; } /* change this to match your theme */
#site_footer_info a:hover,
#site_footer_info a:focus {
  color: var(--footer-accent) !important;
  text-decoration: none !important;
}

/* Icons */
#site_footer_info i {
  color: #ffffff !important;
  transition: color .18s ease, transform .18s ease;
  vertical-align: middle;
}

/* Icon hover: color + subtle lift */
#site_footer_info a:hover i,
#site_footer_info a:focus i {
  color: var(--footer-accent) !important;
  transform: translateY(-2px);
}

/* Social menu item spacing and alignment */
.site-footer-social-menu .menu-item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .18s ease, color .18s ease;
}

/* Optional: subtle background on hover for clickable items */
.site-footer-social-menu .menu-item a:hover {
  background: rgba(255,255,255,0.04) !important;
}

/* Copyright/small text */
#site_footer_info small,
#site_footer_info .site-footer-copyright {
  color: #ffffff !important;
  opacity: 0.95;
  font-size: 0.9rem;
}

/* Ensure email/phone links don't get browser default colors */
#site_footer_info a[href^="mailto:"],
#site_footer_info a[href^="tel:"] {
  color: #ffffff !important;
}

/* Responsive spacing — keep things tidy on mobile */
@media (max-width: 767px) {
  #site_footer_info .site-footer-social-menu .menu-item {
    display: block;
    margin-bottom: 8px;
  }
}
        