/*!
 * FCC Website Stylesheet
/*!
 * style.css
 * Author: M.R.
 * Description: Main stylesheet for the FCC Website.
 * Last updated: 2025-27-2025
 */

.hero-inner {
    position: relative;
    height: 395px;
    display: flex;
    background-image: url("/images/Ministry-Hero.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    margin-top: 0px;
    overflow: hidden;
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(44, 28, 70, 0.5) 30%,
    rgba(150, 150, 149, 0.2) 70%
  );
  pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
}
.breadcrumbs {
  margin-top: 250px;
  font-size: 0.9rem;
  text-align: left;
}

.breadcrumbs span {
  color: #f3e8d4;
}

.page-title {
  text-align: left;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--beige);
  margin-top: 10px;
}
.section {
  padding: 0px 20px;
  margin: auto;
}

.section-header {
  text-align: center;
  font-style: italic;
  font-weight: 600;
  margin: 0px;
  text-align: left;
  padding: 20px;
  border-left: 1px solid #f5e5ca;
  line-height: 1.7rem;
}

.get-connected-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.connected-image {
  flex: 1;
  min-width: 380px;
}

.connected-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.connected-text {
  flex: 1.5;
  min-width: 280px;
}

.connected-text h2 {
  color: #a06b00;
  font-size: 1.6rem;
  margin-bottom: 10px;
  position: relative;
}

.connected-text h2::before {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: #a06b00;
  margin-bottom: 10px;
}

.connected-text p {
  line-height: 1.7;
  font-size: var(--font-lg);
  color: #444;
}

@media (max-width: 768px) {
  .get-connected-section {
    flex-direction: column;
    padding: 30px 20px;
  }
}
.ministries-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.ministries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.ministry-card {
  background: #fff;
  border: 5px solid #f7f4ec;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
  text-decoration: none;
  color: inherit;
  display: block;
}

.ministry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ministry-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ministry-name {
  padding: 15px;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
}

.ministry-card:hover .ministry-name {
  color: #a06b00;
}

.ministry-page {
  background-color: var(--beige-light);
}

.section-purpose {
  margin: auto;
  background-color: var(--beige-light);
}

.purpose-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.purpose-box {
  flex: 1;
  padding: 60px 0px;
}

.purpose-box h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.purpose-box p {
  line-height: 1.7;
  font-size: 1rem;
  color: #444;
}

@media (max-width: 768px) {
  .purpose-grid {
    flex-direction: column;
  }
}


