/*
Theme Name: COGGA Theme
Theme URI: https://cogga.org.ng
Author: Your Name
Description: Official WordPress theme for Citizenship Orientation and Good Governance Advocacy (COGGA)
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: cogga-theme
*/

 /* Top Info Bar */
    .top-bar {
      background-color: #fff; /* Dark Green */
      color: #198754;
      padding: 8px 0;
      font-size: 14px;
    }
    .top-bar a {
      color: #198754;
      margin-left: 15px;
      text-decoration: none;
    }

    /* Navbar */
    .navbar {
      transition: background-color 0.3s, box-shadow 0.3s;
    }

    .navbar.scrolled {
      background-color: #fff !important;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .navbar.scrolled .nav-link,
    .navbar.scrolled .navbar-brand {
      color: #000 !important;
    }

    .navbar-brand img {
      height: 40px;
      margin-right: 10px;
    }

    .hero-section {
      position: relative;
      height: 100vh;
      overflow: hidden;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .hero-section video {
      position: absolute;
      top: 0;
      left: 0;
      min-width: 100%;
      min-height: 100%;
      z-index: -1;
      object-fit: cover;
      filter: brightness(60%);
    }

    .hero-text {
      z-index: 2;
      max-width: 800px;
      padding: 20px;
    }

    .navbar-dark {
	background: #198754 !important;
	margin-top: 35px;
	}
	
    @media (max-width: 768px) {
      .hero-text h1 {
        font-size: 2rem;
      }
      .hero-text p {
        font-size: 1rem;
      }
      .navbar-brand img {
        height: 30px;
      }
    }
	
.card-img-top {
  height: 320px;
  object-fit: cover;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 70% 70%;
}

.card-img-top {
  height: 280px;
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
}

/* member section */
    .trustee-section {
      padding: 60px 0;
    }

    .trustee-img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .chairman-img {
      height: 350px;
      max-width: 350px;
      margin: auto;
    }

    .trustee-card h5 {
      margin-top: 15px;
      font-weight: 600;
    }

    .trustee-card p {
      margin-bottom: 0;
      color: #6c757d;
    }
	
	/* contact */
	    .contact-section {
      padding: 60px 0;
    }
    .form-control, .btn {
      border-radius: 0.5rem;
    }
    iframe {
      border: 0;
      width: 100%;
      height: 350px;
      border-radius: 8px;
    }
    .info-box {
      background: #f8f9fa;
      padding: 20px;
      border-radius: 8px;
      margin-top: 20px;
    }
    .info-box i {
      color: #198754;
      margin-right: 10px;
    }