:root {
    --primary-color: #ff6347; /* Coral/orange color from reference */
    --secondary-color: #fff5f2; /* Light orange/peach background */
    --tertiary-color: #f0f0f0; /* Light gray background */
    --text-dark: #333;
    --text-light: #fff;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
  }
  
  .top-bar {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 0;
    overflow: hidden;
  }
  
  .top-bar-content {
    white-space: nowrap;
    animation: scrollText 20s linear infinite;
  }
  
  @keyframes scrollText {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }
  
  .navbar {
    padding: 15px 0;
  }
  
  .navbar-brand {
    font-weight: bold;
    font-size: 24px;
  }
  
  .navbar-brand span {
    color: var(--primary-color);
  }
  
  .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 15px;
  }
  
  .nav-link:hover {
    color: var(--primary-color);
  }
  
  .nav-link.active {
    color: var(--primary-color);
    font-weight: bold;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
  }
  
  .btn-primary:hover {
    background-color: #e05a40;
    border-color: #e05a40;
  }
  
  .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
  }
  
  .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  .hero {
    background-image: url('assets/img/banner.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 150px 0;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
  }
  
  .section-title h2 {
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  
  .section-title .icon {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  .about-section {
    padding: 80px 0;
  }
  
  .about-image {
    border-radius: 10px;
    overflow: hidden;
  }
  
  .about-content h2 {
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .about-content h2 span {
    color: var(--primary-color);
  }
  
  .feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: transform 0.3s;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 99, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .feature-icon i {
    color: var(--primary-color);
    font-size: 28px;
  }
  
  .ministries-section {
    background-color: var(--secondary-color);
    padding: 80px 0;
  }
  
  .ministry-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
  }
  
  .ministry-card img {
    transition: transform 0.5s;
  }
  
  .ministry-card:hover img {
    transform: scale(1.1);
  }
  
  .ministry-title {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
  }
  
  .ministry-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .ministry-link:hover {
    background-color: #e05a40;
    color: white;
  }
  
  .verse-section {
    padding: 80px 0;
    background-color: var(--tertiary-color);
  }

  .shepherds-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
  }
  
  .blog-section {
    padding: 80px 0;
  }
  
  .blog-card {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .blog-card img {
    transition: transform 0.5s;
  }
  
  .blog-card:hover img {
    transform: scale(1.1);
  }
  
  .blog-content {
    padding: 20px;
    background-color: white;
  }
  
  .blog-title {
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
  }
  
  .cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
  }
  
  .footer {
    padding: 80px 0 30px;
    background-color: #333;
    color: white;
  }
  
  .footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .footer-logo span {
    color: var(--primary-color);
  }
  
  .footer-links h4 {
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links ul li a:hover {
    color: var(--primary-color);
  }
  
  .footer-links .social-icons {
    margin-top: 20px;
  }
  
  .footer-links .social-icons a {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: background-color 0.3s;
  }
  
  .footer-links .social-icons a:hover {
    background-color: var(--primary-color);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
  }
  
  @media (max-width: 991.98px) {
    .hero {
      padding: 100px 0;
    }
    
    .hero h1 {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 767.98px) {
    .navbar-collapse {
      background-color: white;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link {
      margin: 10px 0;
    }
    
    .hero {
      padding: 80px 0;
    }
    
    .hero h1 {
      font-size: 2rem;
    }
    
    .about-image {
      margin-bottom: 30px;
    }
  }