/*
Theme Name: FaithForumTheme Pro
Author: Your Name
Version: 3.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');


    body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f9f9f9;
      color: #333;
    }
    header {
      position: relative;
      background-size: cover;
      color: #6ca6cd;
      padding: 50px 0; /* Adjust the padding to reduce the height */
      margin-top: -10px; /* Nudge the banner up */
    }
    .slider {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }
    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }
    .slide.active {
      opacity: 1;
    }


    .slider-nav {
  position: absolute;
  width: 100%;
  top: 0;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* allows hover without interfering with slider */
}

    header:hover .slider-nav {
  opacity: 1;
  pointer-events: auto; /* activate buttons when visible */
}

    .arrow {
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

    .arrow:hover {
  background-color: rgba(0, 0, 0, 0.7);
}


 .header-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 30px;
      display: flex;
      align-items: center;
    }

 body.home header img {
  mix-blend-mode: multiply;
  top: -18px;
}

  #main-logo {
  width: 30vw !important;
  max-width: 350px !important;
  min-width: 200px !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
  position: relative;
  top: auto;
}




    nav {
      position: sticky;
      top: 0;
      background-color: #0697d4;
      padding: 0;
      z-index: 1000;
      display: flex;
      align-items: center; /* Vertically centers the content in the nav */
      justify-content: flex-start;
      min-height: 60px; /* or whatever your taller nav height is */
      transition: height 0.3s ease; /* optional smooth transition */
    }
    .nav-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      padding: 0 30px; /* Match the .container's horizontal padding */
    }

    .nav-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  Margin-left: -20px; 
  padding-top: 5px;
  padding-bottom: 5px;

  opacity: 0;
  transition: opacity 0.8s ease, position 0.3s ease;
  
  position: absolute;
  left: 30px; /* same as nav-content padding-left */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto; /* ensure clickable even when positioned */
  z-index: 10;
}

.nav-logo.visible {
  opacity: 1;
  pointer-events: auto;
}

    .nav-message {
  color: white;
  font-size: 18px;
  font-family: Georgia, serif;
  font-style: italic;
  margin: 0;
  flex-grow: 1;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out; /* add opacity transition */
  transform: translateX(0); /* Initial position */
  opacity: 1; /* fully visible by default */
  pointer-events: none;
  margin-left: -12px;
}
    .nav-message.faded {
  transform: none;
  opacity: 0; /* fades out */
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
.nav-left {
  min-height: 60px; /* match nav height so content fits */
  position: relative; /* keep for absolute logo */
  display: flex;
  align-items: center;
  gap: 20px;
  flex-grow: 1;
}
/* Grouping search and button */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
flex-shrink: 0;
}

.portrait-break {
  display: none;
}

@media (max-width: 768px) and (orientation: portrait) and (pointer: coarse) {
  .portrait-break {
    display: inline;
  }
}



/* NAV BAR FOR MOBILE */

@media (max-width: 768px) {
  .nav-content {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 20px;
    gap: 10px;
  }
  .nav-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  width: 100%;
  position: relative; /* ⬅️ this is key for absolute centering */
}
  .nav-message {
    font-size: 17.5px;
    text-align: center;
    margin: 0;
    flex-grow: 0;
    opacity: 1;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transform: translateY(0);
    margin-top: -26px; /* moves Speak your... up or down */
    margin-bottom: 0px;
  }
  .nav-message.faded {
    opacity: 0;
    transform: none;
  }
  .nav-logo {
  display: block;
  height: 45px;
  width: auto;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  padding: 0;
  position: absolute;
  top: 5px;                /* ⬅️ Nudge down — increase to go lower */
  left: 50%;
  transform: translateX(-50%);
  line-height: 0;
  margin: 0;
}
  .nav-logo.visible {
  opacity: 1;
}
  .nav-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 10px;
  overflow: visible;
  box-sizing: border-box;
  position: relative;
  top: -5px; /* moves search donate login up or down */
}

.nav-actions-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  flex-wrap: nowrap;
  box-sizing: border-box;
}
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap; /* This prevents wrapping on narrow screens */
}
  .search-bar {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 30px;
  overflow: hidden;
  height: 30px;
  padding: 0;
  width: auto;
  min-width: 50px;
  max-width: 200px;
  margin-left: 25px;     /* ⬅️ Gentle nudge right */
  margin-right: -20px;
  transform: none;
  box-sizing: border-box;
}

.search-bar input {
  border: none;
  padding: 0 10px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}
  .search-bar button {
  border: none;
  background: none;
  padding: 0 0px;
  font-size: 18px;
  cursor: pointer;
}

.donation-button {
  padding: 6px 10px;
  font-size: 0.9em;
  border-radius: 30px;
  white-space: nowrap;
  margin: 0;
  margin-right: 6px; /* 👈 space btw donate btn and login */

}
}





@media (max-width: 768px) {
  .container {
    display: flex;
    flex-direction: column;
  }
} 

@media (max-width: 768px) {
  .search-bar input {
    padding-left: 1px; /* or whatever amount looks good */
  }
}


@media (max-width: 768px) {
  .columns-wrapper {
    flex-direction: column;
  }
  .article-box,
  .news-box {
    width: 100%;
  }
}


    .donation-button {
      background-color: #82cbe9;
      color: white;
      padding: 4px 15px;
      border: none;
      border-radius: 30px;
      font-size: 1em;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      transition: background-color 0.3s;
      white-space: nowrap;
      margin-left: auto; /* Pushes button to the far right */
}
    .donation-button:hover {
      background-color: white;
      color: #a28d5f;
      outline: none;
    }
 





   .search-bar {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 30px;
  overflow: hidden;
  height: 27px;
  transform: translateX(-25px); /* keep if needed */
  max-width: 100%; /* prevent overflow */
  min-width: 120px; /* optional min width to prevent too small */
}





.search-bar input {
  border: none;
  padding: 0 12px;
  font-size: 16px;
  flex-shrink: 1; /* allow shrinking */
  flex-grow: 1;
  min-width: 0; /* important to allow shrinking inside flex container */
  outline: none;
}

.search-bar button {
  background-color: #ffffff;
  border: none;
  padding: 0 12px;
  cursor: pointer;
  color: #3c6e71;
  font-size: 18px;
  display: flex;
  align-items: center;
  flex-shrink: 0; /* prevent shrinking so icon always visible */
}


  .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 30px;
      max-width: 1200px;
      margin: 0 auto;
      
    }
    

    .content-wrapper {
      display: flex;
      gap: 28px; /* Adjust horizontal space between forum and sidebar */
      align-items: flex-start;
    }

    main {
      flex: 1;
    }

    .side-columns {
      flex: 0 0 500px; /* Set sidebar width here */
    }

    .columns-wrapper {
      display: flex;
      gap: 23px;
    }

    .article-box, .news-box {
      flex: 1;
    }

    section {
      margin-bottom: 0px;
    }
    .section-title {
      font-family: 'Roboto', Arial, sans-serif; /* Fallback to Arial if Roboto isn't available */
      font-weight: 100;  /* Lighter weight */
      text-transform: uppercase;  /* Ensures all caps */
      font-size: 2em;
      margin-bottom: 20px;
      margin-top: 10px;
      color: #a28d5f;
      letter-spacing: 0.02em;
    }


    .card, .article-link {
  display: block;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
  padding: 15px;
  margin-bottom: 20px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease;
}

.article-link:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
}
    .card h3 {
      color: #3c6e71;
    }
    .button {
      background-color: #3c6e71;
      color: white;
      padding: 12px 25px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1.1em;
      transition: background-color 0.3s;
    }
    .button:hover, .button:focus {
      background-color: #4f8a8b;
      outline: none;
    }

    footer {
      font-family: 'Roboto', Arial, sans-serif; /* Fallback to Arial if Roboto isn't available */
      background-color: #0697d4;
      color: white;
      text-align: center;
      padding: 15px 0;
      font-size: 0.8em; /* or 12px, adjust as needed */
      letter-spacing: 0.03em; /* Adjust this value as needed */
      font-weight: 300;  /* Lighter weight */
    }

    .article img {
      width: 100%;
      height: 140px;
      border-radius: 10px;
      margin-bottom: -12px;
      object-fit: cover;
      transition: filter 0.3s ease;
    }
.article:hover img {
  filter: brightness(70%);
}
    .article h4 {
      font-family: 'Roboto', Arial, sans-serif; /* Fallback to Arial if Roboto isn't available */
      font-weight: 300;  /* Lighter weight */
      font-size: 1.3em;
      color: #a28d5f;
      margin-bottom: 10px; /* Vertical space b/w Insights HL & Text> */
      Margin-top: 20px; /* Vertical space b/w Insights HL & Image> */
    }

    .article h4 a {
      text-decoration: none; /* Remove underline from the <a> inside <h4> */
    }
    .article a {
      text-decoration: none;
    }

    .read-more {
      font-weight: bold;
      color: #a28d5f;
      text-decoration: underline;
      cursor: pointer;
    }
    .article .read-more {
      margin-top: 15px; /* increase this value as needed */
      display: inline-block; /* ensure margin works properly */
    }
    .article {
      margin-bottom: 25px;
    }
    .news-frame {
      background-color: white;
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
    }
    .news-image {
  position: relative;
  height: 180px;
  border-radius: 10px;
  margin-bottom: 27px;
  overflow: hidden;
    }

    .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
    }


   .news-image .caption-wrapper {
      position: absolute;
      bottom: 5px;
      left: 5px;
      z-index: 2; /* Higher than ::after */
      color: white;
      font-size: 16px;
      font-weight: bold;
      padding: 4px 5px;
      border-radius: 5px;
    }

    * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
    }

    a {
  color: #333;
    }



    #content {
  max-width: 1100px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    /* Forum Threads */
      #recent-forum-topics {
      max-width: 1100px;
      margin: 40px auto;
    }

    #recent-forum-topics h2 {
  font-size: 2em;
  text-align: left;
  margin-bottom: 20px;
  color: #0697d4;
  font-weight: 700;
    }

    .topic-card {
  display: block; /* make link fill the card */
  padding: 10px 15px;
  background: white;
  border-radius: 10px;
  margin-bottom: 12px;
  margin-top: .9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: transform 0.2s ease;
  transition: background-color 0.2s ease;
  text-decoration: none;

    }

    .topic-card:hover {
  transform: scale(1.01);
  background-color: #f5f5f5; /* light gray */
    }

    .topic-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #d1c4e9;
  display: inline-block;
  margin-right: 20px;
  flex-shrink: 0;
    }

    .topic-content {
  flex-grow: 1;
    }

    .topic-title {
  font-weight: 600 !important;
  margin-bottom: 4px;
  color: #0697d4;
  font-size: 1.15em !important;
  text-decoration: none;

    }

    .topic-meta {
      color: #666;
      margin-top: 2px;
    }

    .topic-tag {
  display: inline-block;
  font-size: 0.75em;
  background-color: #eee;
  color: #555;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 10px;
    }

    .topic-actions {
  text-align: right;
  font-size: 0.8em;
  color: #888;
    }

    .forum-section h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #333;
    }

    .forum-section {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  padding: 0;
  margin-top: 22px;
  margin-bottom: 27px;
  transition: box-shadow 0.3s ease;
    }

    .forum-section:hover {
      box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    }

    .forum-section h3 {
  font-size: 1.5em;
  font-weight: 700;
  color: #0697d4;  /* forum topic HL color */
  margin-bottom: 10px;
    }

    .forum-section .forum-topic-preview {
  margin-left: 0;
  padding-left: 0;
  border-top: 1px solid #eee;
  padding-top: 10px;
  margin-top: 15px;
    }

    .forum-section .forum-topic-preview a {
  font-weight: 600;
  color: #3b49df;
  font-size: 1em;
    }

    .forum-section .forum-topic-meta {
  font-size: 0.85em;
  color: #888;
  margin-left: 0;
    }

    .forum-card-header-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

    .forum-card-header {
  background-color: #a28d5f;
  padding: 0.5em 1em;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin: 0;
  transition: background-color 0.2s ease;
  }

    .forum-card-header:hover {
  background-color: #8d7a50; /* Slightly darker bronze */
}

    .forum-card-header h3 {
  color: white !important; /* Forum Category HL Color */
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.5em; /* Forum Category HL Size */
}

    .forum-card-header .forum-arrow {
  color: white; /* keep arrow white too */
  font-size: 1.2em;
  margin-left: 0.4em;
  transition: transform 0.2s ease;
}

    .forum-card-header-link:hover .forum-arrow {
  transform: translateX(4px);
}

    .forum-card-body {
      padding: 15px 25px;
    }

.forum-description {
}

.forum-topic-preview {
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  transition: background-color 0.2s ease;
}

.forum-topic-preview:last-child {
  border-bottom: none;
}

.forum-topic-preview:hover {
  background-color: #f0e9ff; /* subtle light highlight */
}

.forum-topic-preview a.topic-title {
  font-size: 1em;
  color: #0697d4;
  margin-bottom: 4px;
  text-decoration: none;
}

.forum-topic-preview a.topic-title:hover {
  text-decoration: underline;
}

.topic-meta {
  font-size: 0.85em;
  color: #666;
}

.forum-topic-preview {
  margin-left: 20px;
  font-size: 0.95em;
}

.forum-topic-preview a {
  color: #0073aa;
  text-decoration: none;
}

.forum-topic-preview a:hover {
  text-decoration: underline;
}

.forum-topic-meta {
  font-size: 0.85em;
  color: #666;
  margin-left: 10px;
}

  .topic-avatar {
    margin-bottom: 10px;
  }

  .topic-actions {
    margin-top: 10px;
    width: 100%;
    text-align: left;
  }

   .image-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      color: white;
      text-align: left;
      padding: 8px;
      font-weight: bold;
    }

    .news-link {
      display: block;
      margin-bottom: 17px;
      color: #333; 
      text-decoration: underline;
    }
    .news-link:hover {
      text-decoration: underline;
    }


.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4); /* 40% black initial overlay */
  transition: background-color 0.3s ease;
  z-index: 1;
}

/* Caption sits above the overlay */
.caption-wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: none;
  color: white;
  z-index: 2;
  font-size: 1.1em;
}

.news-link:hover .image-overlay {
  background-color: rgba(0,0,0,0.55); /* darker on hover */
}


p.subhead {
  margin-top: 1.85em;
  margin-bottom: -2em;
}

p.subhead + p {
  margin-top: -.5em; /* adjust as needed */
}

.trending-label {
    font-family: 'Roboto', Arial, sans-serif; /* Fallback to Arial if Roboto isn't available */
    font-weight: 100;  /* Lighter weight */
    color: #a28d5f;
    text-transform: uppercase;
    font-size: 2em;
    margin-bottom: 20px;  /* Adjust margin for better spacing */
    letter-spacing: 0.02em; /* Adjust this value as needed */
  }


/* ===== Subpage Template Styles ===== */


body.subpage-template .container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 28px;
    padding: 30px;
    max-width: 1200px;
    margin: auto;
    margin-top: 5px;
  }
@media (max-width: 768px) {
  body.subpage-template .container {
    grid-template-columns: 1fr;
  }

  body.subpage-template .main-article,
  body.subpage-template .sidebar {
    width: 100%;
  }
}
body.subpage-template .main-article {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
  }

body.subpage-template .main-article h1 {
    font-size: 2em;
    margin: 0 0 10px;
    color: #a28d5f;
  }

body.subpage-template .main-article p {
    line-height: 1.6;
    margin-bottom: 1em;
  }

body.subpage-template .main-article hr {
    margin-top: 40px; /* Adds vertical space above the rule */
    Margin-bottom: 20px;


  }

body.subpage-template .sidebar {
    background: white;
    padding: 18px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
  }

body.subpage-template .sidebar h3 {
    margin-top: 0;
  }

body.subpage-template .sidebar .thumb-wrapper {
    margin-bottom: 30px;
}

body.subpage-template .sidebar .thumb {
  background: #ccc;
    height: 135px; /* Increased height */
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-top: 17px;
  }

body.subpage-template .sidebar .thumb-title {
  margin-top: 10px;
    font-size: 18px; /* Slightly bigger font size */
    color: black; /* Set text color to black */
    text-align: left;
    text-decoration: none; /* Remove underline */
  }

body.subpage-template .thumb-title a {
    text-decoration: none; /* Remove underline by default */
    color: inherit;
  }

body.subpage-template .thumb-title a:hover {
    text-decoration: underline; /* Underline on hover */
  }

body.subpage-template .image-placeholder {
    background: #ccc;
    height: 350px;
    margin-bottom: 22px;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
  }

body.subpage-template .image-placeholder img {
  width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);  /* Scales the image */
  }

body.subpage-template article h1 {
  font-size: 2em;
  color: #0697d4;
  margin-bottom: 10px;

}

body.subpage-template .byline {
  font-family: 'Roboto', Arial, sans-serif; /* Fallback to Arial if Roboto isn't available */
    font-size: 0.9em;
    color: #777;
    margin-top: -5px;
    margin-bottom: 20px;
padding-bottom: 5px;
    font-weight: 300;  /* Lighter weight */
  }

body.subpage-template .section-heading {
  margin-bottom: 6px !important;
  Margin-top: 17px !important;

  }

body.subpage-template .section-heading strong {
    color: #a28d5f; /* You can change this to any color */
    font-weight: bold;
  }

body.subpage-template ul {
  margin-top: 0 !important; /* No space before the list */
    padding-left: 10px !important;
    list-style-position: inside !important;
  }

body.subpage-template li {
  line-height: 1.55; /* Adjust value as needed; 1.6–2 is usually a good range */
}



body.donate-template .logo-container {
  margin-top: 0; /* Or a negative value if needed */
  padding-top: 0;
  position: relative;
  top: -80px; /* space above logo */
}
body.donate-template main {
  margin-top: -65px; /* space between transparent box and logo */
}


.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 1em;
}
.footer-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 10px;
}

.social-icon {
  width: 20px;
  height: 20px;
}

a.footer-link {
  color: white;
  text-decoration: none;
}

a.footer-link:hover {
  text-decoration: underline;
}

/* Container around logo + icons */
.logo-wrapper {
  text-align: center;
}

#main-logo {
  max-width: 300px; /* Or whatever your current value is */
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.social-icons {
  margin-top: 2px;
  display: inline-flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
}

.social-icon {
  width: 20px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  opacity: 1;
}
@media (max-width: 768px) and (orientation: portrait) and (pointer: coarse) {
  #main-logo {
    margin-left: -5vw; /* Nudges logo to the left */
    margin-right: auto;
  }
}
@media (max-width: 768px) and (orientation: portrait) and (pointer: coarse) {
  .social-icons {
    margin-left: -5vw; /* Nudges logo to the left */
    margin-right: auto;
  }
}



.forum-page h1 {
    text-align: center;
    margin-bottom: 1em;
}

.bbp-forum-wrapper {
    padding: 1em;
    background: #f9f9f9;
    border-radius: 8px;
}

.forum-card-header-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.forum-card-header {
  background-color: #a28d5f; /* Your bronze color */
  padding: 12px 16px;
  transition: background-color 0.2s ease;
}

.forum-card-header-link:hover .forum-card-header {
  background-color: #8f7f56; /* Slightly darker bronze for hover */
}
.forum-card-title {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.forum-arrow {
  font-weight: bold;
}


/* Increase overall forum text size */
#bbpress-forums {
  font-size: 1.125rem; /* 18px */
  line-height: 1.6;
}

/* Keep headers and topic titles big */
#bbpress-forums .bbp-header,
#bbpress-forums .bbp-topic-title,
#bbpress-forums .bbp-forum-title {
  font-size: 1.125rem;
  font-weight: 600;
}

/* Reduce font size for Voices, Posts, and Last Post numbers */
#bbpress-forums .bbp-topic-voice-count,
#bbpress-forums .bbp-topic-reply-count,
#bbpress-forums .bbp-topic-freshness .bbp-topic-meta,
#bbpress-forums .bbp-forum-voice-count,
#bbpress-forums .bbp-forum-reply-count,
#bbpress-forums .bbp-forum-freshness .bbp-topic-meta {
  font-size: 0.875rem; /* 14px */
  color: #555;
}
/* Standardize bbPress table header styles */
#bbpress-forums .bbp-header .bbp-topic-voice-count,
#bbpress-forums .bbp-header .bbp-topic-reply-count,
#bbpress-forums .bbp-header .bbp-topic-freshness,
#bbpress-forums .bbp-header .bbp-forum-voice-count,
#bbpress-forums .bbp-header .bbp-forum-reply-count,
#bbpress-forums .bbp-header .bbp-forum-freshness {
  font-size: 1.125rem; /* Match header size */
  font-weight: 600;
  color: #222; /* Consistent dark color */
}

/* Styles only for the forum page */
.forum-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.forum-wrapper #bbpress-forums {
  width: 100%;
  margin: 0 auto;
  float: none;
  padding: 0;
}


/* Target bbPress forum layout and remove list padding/margin */
.bbpress .bbp-topics,
.bbpress .bbp-topics li {
  padding-left: 0 !important;
  margin-left: 0 !important;
  list-style: none !important;
}

/* Ensure rows inside forum stretch full width */
.bbpress .bbp-topics .bbp-header,
.bbpress .bbp-topics .bbp-body,
.bbpress .bbp-topics .bbp-footer {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Add padding inside each row */
.bbpress .bbp-topics .bbp-body li,
.bbpress .bbp-topics .bbp-header ul,
.bbpress .bbp-topics .bbp-footer {
  padding-left: 1.5rem !important;
  box-sizing: border-box;
}

/* Optional: ensure inner text also doesn't touch edge */
.bbpress .bbp-topics .bbp-topic-title,
.bbpress .bbp-topics .bbp-topic-reply-count,
.bbpress .bbp-topics .bbp-topic-freshness {
  padding-left: 0.5rem;
}
.bbp-topics .bbp-header ul.forum-titles > li.bbp-topic-title {
  padding-left: .75rem !important;
}

/* Right-align the "Last Activity" header */
.bbp-topics .bbp-header .bbp-topic-freshness {
  text-align: right;
  padding-right: 1.5rem; /* You can increase this */
  width: 20%;
}

/* Right-align the "Last Activity" content */
.bbp-topics .bbp-body .bbp-topic-freshness {
  text-align: right;
  padding-right: 1.5rem; /* Match the header */
  width: 20%;
}

/* Make sure other columns have defined widths too */
.bbp-topics .bbp-topic-title {
  width: 60%;
}

.bbp-topics .bbp-topic-reply-count {
  width: 20%;
  text-align: center;
}
.bbp-topic-meta,
.bbp-topic-meta a,
.bbp-topic-meta strong {
  font-weight: normal !important;
  font-size: 0.85rem !important;
}
/* Match forum title to homepage headline font */
.forum-title {
  font-family: var(--font-headings, Georgia, serif); /* Or match homepage exactly */
  font-size: 2rem; /* Adjust if needed */
  font-weight: bold;
  color: #1a1a1a; /* Or whatever color you're using on homepage */
  margin-bottom: 1rem;
}

.forum-description {
  margin-bottom: 30px; /* Adjust to your preference */
  display: block;
  font-size: 1.1em; /* or try 1.2em for a bit bigger */
  line-height: 1.4; /* optional: improves readability */
}

/* Homepage forum description spacing */
.forum-description.home {
   margin-top: -1.75em; /* Reduce this value as needed */
}



.bbp-topics li.bbp-header {
  background-color: #a28d5f !important;
  color: #fff !important;
}

.bbp-topics .bbp-header ul.forum-titles > li {
  color: #fff !important;
}

.bbp-pagination {
  font-size: 0.875em; /* slightly smaller */
  color: #666 !important;
  margin-bottom: 2rem; /* adds space below pagination */
}

.bbp-topic-permalink {
  color: #0697d4;
  font-size: 1.1em;
}

.topic-content .topic-meta {
  margin-top: -.35em; /* reduce this value as needed */
  padding-top: 0;
  line-height: 1.2;
  font-size: 0.85rem; /* optional, keep it consistent */
  color: #999;
}
#bbpress-forums .bbp-topic-meta,
#bbpress-forums .bbp-topic-meta a,
#bbpress-forums .bbp-topic-meta .bbp-author-name,
#bbpress-forums .bbp-topic-meta .bbp-author-link,
#bbpress-forums .bbp-topic-meta strong {
  color: #888 !important; /* Light gray */
}
#bbpress-forums .bbp-topic-meta {
  margin-top: 0rem !important;  /* Try reducing or setting to 0 */
  padding-top: 0 !important;
}

.bbp-breadcrumb .bbp-breadcrumb-current {
  font-weight: bold;
  color: #a28d5f;
    font-size: 14.25px
}
#bbpress-forums .bbp-breadcrumb {
    font-size: 14px; /* Adjust this number as needed */
}

.bbp-topic-content,
.bbp-reply-content {
    font-size: 15px; /* Adjust to your preferred size */
    line-height: 1.6; /* Optional: better readability */
}

.bbp-header .bbp-reply-author,
.bbp-header .bbp-reply-content {
    font-size: 16px;
    font-weight: bold;
}
.bbp-header .bbp-reply-author,
.bbp-header .bbp-reply-content,
.bbp-footer .bbp-reply-author,
.bbp-footer .bbp-reply-content {
    font-size: 16px;
    font-weight: bold;
}
body.single-topic .bbp-topic-title {
	font-size: 27px !important;
	margin: 20px 0 10px;
	font-weight: bold;
	color: #a28d5f;
}

#bbpress-forums ul.bbp-replies {
    list-style: none;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

#bbpress-forums ul.bbp-replies > li {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

#bbpress-forums .bbp-reply {
    background-color: #f5f5f5; /* your gray */
    border: 1px solid #ccc;
    margin: 0;
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
}
#bbpress-forums .bbp-topics {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #ccc; /* Optional border */
    margin-bottom: 20px;
}

#bbpress-forums .bbp-body .bbp-topic-title {
    padding: 10px;
}



#bbpress-forums .bbp-replies tfoot {
    display: none;
}

#bbpress-forums .bbp-replies li.bbp-body .bbp-reply {
    border: 1px solid #ccc;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}


#bbpress-forums .bbp-replies .bbp-footer {
    display: none !important;
}

/* Round the full reply box */
#bbpress-forums .bbp-replies {
    border: 1px solid #ccc;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

/* Remove inner box outlines so it looks like one box */
#bbpress-forums .bbp-replies .bbp-reply,
#bbpress-forums .bbp-replies .bbp-header {
    border: none !important;
    border-radius: 0 !important;
}
#bbpress-forums .subscription-toggle,
#bbpress-forums .favorite-toggle {
    font-size: 13px !important;
  color: #999;

}

#bbpress-forums #bbp_reply_submit {
    background-color: #a28d5f !important;
    border: none;
    color: white;
    padding: 7px 30px; /* Adjusts height and width */
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#bbpress-forums #bbp_reply_submit:hover {
    background-color: #927c4f !important;
}

.donation-button,
.donation-button:hover,
.donation-button:focus {
  text-decoration: none !important;
}
.forum-button,
.forum-button:hover,
.forum-button:focus {
    text-decoration: none !important;
}

.login-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 22px;
}

.login-button {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.login-button img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.login-button:hover img {
  opacity: 0.7;
}

/* Dropdown styling */
.login-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  flex-direction: column;
  min-width: 120px;
  z-index: 1000;
}

.login-dropdown a {
  display: block;
  padding: 10px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s ease;
}

.login-dropdown a:hover {
  background-color: #f0f0f0;
}

/* Keep dropdown visible when hovering over button or menu */
.login-wrapper:hover .login-dropdown,
.login-button:focus + .login-dropdown,
.login-dropdown:hover {
  display: flex;
}

/* Tooltip for logged-out state only */
.login-button[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  background: #333;
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1000;
}

.login-button[data-tooltip]::after {
  opacity: 0;
}

/* Refined WB User Manager Login button */
input[type="submit"].button[name="submit_login"] {
  background-color: #a28d5f !important;
  color: #fff !important;
  border: none !important;
  border-radius: 20px !important;       /* More rounded */
  padding: 7px 30px !important;         /* Less height */
  font-size: 17px !important;
  font-weight: 600 !important;          /* Bold font */
  height: auto !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transition: background 0.3s ease;
  margin-bottom: 25px !important;       /* ✅ Adds space below the button */
}

input[type="submit"].button[name="submit_login"]:hover {
  background-color: #917d55 !important;
}

/* Style login input fields */
input.input-text {
  height: 48px;
  padding: 10px 14px;
  font-size: 17px !important;
  border-radius: 30px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
}
.wpum-login-form {
  margin-top: 40px; /* adjust as needed */
}

.wpum-login-form {
  margin-bottom: 20px; /* Adds space below the whole form */
}
a[href*="password-reset"] {
  display: inline-block;
  margin-bottom: 30px;
}


/* Style for WB User Manager Register button */
input[type="submit"].button[name="submit_registration"] {
  background-color: #a28d5f !important;
  color: #fff !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 7px 30px !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  height: auto !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transition: background 0.3s ease;
  margin-bottom: 25px !important; /* Space under button */
}

input[type="submit"].button[name="submit_registration"]:hover {
  background-color: #917d55 !important;
}

/* Input fields: reused from login */
input.input-text {
  height: 48px;
  padding: 10px 14px;
  font-size: 17px !important;
  border-radius: 30px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
}

/* Add top margin to registration form */
.wpum-registration-form {
  margin-top: 40px !important;
  margin-bottom: 20px !important;
}

/* Add bottom space to "Lost password?" if it appears */
a[href*="password-reset"] {
  display: inline-block;
  margin-bottom: 30px !important;
}

/* Match email input styling to other inputs */
input.input-email {
  height: 48px;
  padding: 10px 14px;
  font-size: 17px !important;
  border-radius: 30px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
}

.fieldset-privacy label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px !important;
}

.fieldset-privacy .field.required-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fieldset-privacy .field.required-field input[type="checkbox"] {
  margin: 0;
  flex-shrink: 0;
}

.fieldset-privacy .description {
  margin: 0;
  display: inline;
  line-height: 1.5 !important;
  font-size: 14px !important;
}

/* Style Reset Password button */
input[type="submit"].button[name="submit_password_recovery"] {
  background-color: #a28d5f !important;
  color: #fff !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 7px 30px !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  height: auto !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transition: background 0.3s ease;
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

input[type="submit"].button[name="submit_password_recovery"]:hover {
  background-color: #917d55 !important;
}
.wpum-password-recovery-form p:first-of-type {
  margin-top: 40px; /* adjust the value as needed */
  line-height: 1.5;
}
.wpum-form .fieldset-username_email {
  margin-top: 30px !important;
}
.wpum-password-recovery-form {
  margin-bottom: 15px;
}
body.page-id-144 .wpum-action-links {
  margin-bottom: 40px !important;
}

/* --- Premium Container Styling --- */
#site-content {
  max-width: 820px;
  margin: 60px auto;
  padding: 50px 40px;
  background: #fafafa;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: 18px;
  line-height: 1.65; /* tightened from 1.85 */
  color: #2d2d2d;
  transition: all 0.3s ease;
}

/* --- Headings --- */
#site-content h2,
#site-content h3 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: #a28d5f; /* custom color */
  margin-top: 3em;
  margin-bottom: 1em;
  line-height: 1.3; /* slightly tighter */
  position: relative;
}

#site-content h2::after,
#site-content h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: #a28d5f; /* match heading accent */
  margin-top: 10px;
  border-radius: 2px;
}

/* --- Paragraphs --- */
#site-content p {
  margin-bottom: 1.4em;
}

/* --- Lists --- */
#site-content ul.wp-block-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2em;
}

#site-content ul.wp-block-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 0.9em;
  line-height: 1.6;
}

#site-content ul.wp-block-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0.1em;
  color: #2a9d8f;
  font-weight: bold;
  font-size: 1em;
}

/* --- Separator --- */
.wp-block-separator {
  margin: 3em 0;
  border: none;
  height: 1px;
  background: #cccccc;
}

/* --- Links --- */
#site-content a {
  color: #264653;
  text-decoration: underline;
  font-weight: 600;
}

#site-content a:hover {
  color: #e76f51;
  text-decoration: none;
}

/* --- Email Highlight --- */
#site-content strong {
  color: #000;
}

/* --- Responsive Polish --- */
@media (max-width: 640px) {
  #site-content {
    padding: 30px 20px;
    font-size: 17px;
    line-height: 1.6;
  }

  #site-content h2,
  #site-content h3 {
    font-size: 1.3em;
  }
}

.wpum-action-links a {
  color: #a28d5f;
  text-decoration: none;
}

.wpum-action-links a:hover {
  text-decoration: underline;
  color: #8e784f; /* Optional darker hover shade */
}

/* Match Update Profile button to login/register/reset style */
.wpum-account-form input[type="submit"].button[name="submit_account"] {
  background-color: #a28d5f !important;
  color: #fff !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 7px 30px !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  height: auto !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transition: background 0.3s ease;
  margin-top: 25px !important;
  margin-bottom: 25px !important;
  display: inline-block;
}

.wpum-account-form input[type="submit"].button[name="submit_account"]:hover {
  background-color: #917d55 !important;
}




/* Sidebar styles */
#wpum-account-forms-tabs {
  background: #e7ecf3;
  border-radius: 20px;
  padding: 20px;
  max-width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', sans-serif;
  flex-shrink: 0;
}

/* Sidebar nav list reset */
#wpum-account-forms-tabs ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Sidebar nav item */
#wpum-account-forms-tabs li {
  margin-bottom: 15px;
}

/* Link styles */
#wpum-account-forms-tabs a {
  display: block;
  padding: 10px 15px;
  border-radius: 30px;
  color: #2d2d2d;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

/* Hover + active link */
#wpum-account-forms-tabs a:hover,
#wpum-account-forms-tabs .current-tab {
  background: #a28d5f;
  color: #fff !important;
}

/* Content panel styles (optional, adjust as needed) */
.wpum-account-content {
  flex: 1;
  min-width: 300px;
}
.wpum-template.wpum-account-page {
  margin-top: 40px; /* adjust this value as needed */
}
.wpum_two_third h2,
.wpum_two_third h3 {
  color: #a28d5f;
}

.wpum-account-form fieldset {
  margin-bottom: 15px; /* Adjust spacing as needed */
}
.wpum-account-form .field {
  margin-top: -2px; /* space between label and input */
}
.wpum-account-form select[name="user_displayname"] {
  height: 30px; /* Adjust to your preferred height */
  font-size: 16px; /* Optional: increase font size too */
  padding: 0 10px; /* Optional: horizontal padding */
  border-radius: 6px; /* Optional: rounded corners */
}
#wpum-account-forms-tabs {
  z-index: 1; /* Keep it low */
  position: relative; /* Needed to apply z-index */
}
.wpum-account-form h2 {
  margin-bottom: 25px; /* adjust as needed */
}

input[type="submit"][name="submit_password"] {
  background-color: #a28d5f !important;
  color: #fff !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 7px 30px !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  height: auto !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transition: background 0.3s ease;
  margin-top: 25px !important;
  margin-bottom: 25px !important;
  display: inline-block;
}

input[type="submit"][name="submit_password"]:hover {
  background-color: #917d55 !important;
}
.wpum-template h2 {
  margin-bottom: 25px;
}

#header-cover-image {
  margin-top: 40px; /* adjust this value as needed */
}

.profile-fields-table {
  margin-bottom: 40px; /* Adjust as needed */
}
.tab-about {
  margin-left: 10px;          /* Nudges to the left */
  border-radius: 12px;         /* Rounded corners */
  padding: 8px 20px !important;           /* Less vertical padding = shorter height */
  font-size: 18px;             /* Slightly increased text size */
  font-weight: 600;            /* Bolder text */
  display: inline-block;
  text-align: center;
  min-width: 120px;            /* Keeps it wide */
  line-height: 1.2;            /* Tightens up line height */
}
a.tab-about.active {
  background-color: #ffffff;
  color: #a28d5f;
  border-radius: 8px; /* or whatever radius you prefer */
  padding: 4px 20px; /* adjust as needed for size */
  font-size: 16px;
  display: inline-block;
  text-decoration: none;
}
/* Add space ABOVE the rounded box */
#profile-header-container {
  margin-top: 40px;  /* space above the whole box */
  border-radius: 12px;
  overflow: hidden;
  background: #f9f9f9; /* or your actual background color */
}

/* Reset internal margins to avoid extra stretching */
#header-cover-image,
#header-avatar-container {
  margin-top: 0;
  padding-top: 0;
}



.contact-wrapper {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.contact-title {
  font-size: 28px;
  color: #a28d5f;
  margin-bottom: 10px;
}

.contact-intro {
  font-size: 16px;
  margin-bottom: 20px;
  color: #444;
}

.contact-form label {
  display: block;
  margin: 15px 0 5px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
}

.contact-form button.contact-submit {
  margin-top: 20px;
  background-color: #a28d5f;
  color: #fff;
  border: none;
  padding: 10px 30px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button.contact-submit:hover {
  background-color: #8f7b4e;
}

.wpum-uploaded-files img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px; /* optional, for rounded corners */
  max-height: 200px;   /* optional: set a vertical limit */
  object-fit: cover;   /* optional: crop excess and fill space */
}
.wpum-user-avatar,
.avatar {
  display: none !important;
}


.online-baptism-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 68px 0 34px; /* ⬅️ Top margin added */
}

.online-baptism-banner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.online-baptism-banner img {
  transition: filter 0.3s ease;
}

.online-baptism-banner img:hover {
  filter: brightness(85%);
}


.custom-menu {
  display: flex;
  margin-left: -.9rem; /* adjust this value until alignment is perfect */
  padding: 0;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
}

.custom-menu > a,
.custom-menu > .dropdown > .dropbtn {
  color: #66ccff;
  text-decoration: none;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
  cursor: pointer;
}

.custom-menu > a:last-child,
.custom-menu > .dropdown:last-child > .dropbtn {
  border-right: none;
}

.custom-menu > a:hover,
.custom-menu > .dropdown > .dropbtn:hover {
  color: #33bbff;
  text-decoration: none !important;
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #003366;
  min-width: 160px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 1000;
  flex-direction: column;
  border-radius: 8.5px;
}

.dropdown-content a {
  color: #66ccff;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
  font-size: 0.8rem; /* slightly smaller than normal */
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: #0059b3;
  color: #ffffff;
  text-decoration: none;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: flex;
  flex-direction: column;
}

.compassion-banner {
  margin-top: -3px; /* Adjust this as needed */
  margin-bottom: 25px; /* Adjust this as needed */

}
.hungry-banner-link img {
  transition: filter 0.3s ease;
}

.hungry-banner-link:hover img {
  filter: brightness(85%);
}



