
/* Leadership Page Styles */
.leadership-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.leadership-card .image-blog img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.leadership-card .course-title h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #333;
}

.leadership-card .course-title h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
}

.leadership-card .course-title h4,
.leadership-card .course-title h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.leadership-card .course-desc p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.leadership-card .course-meta-bot ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leadership-card .course-meta-bot ul li {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.leadership-card .course-meta-bot ul li i {
    margin-right: 8px;
    color: #ff9800;
    width: 16px;
}

.leadership-philosophy {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 30px 0;
}

.leadership-philosophy h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.leadership-philosophy p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
}

.philosophy-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.philosophy-icons > div {
    text-align: center;
    min-width: 120px;
}

.philosophy-icons i {
    font-size: 2.5rem;
    color: #ff9800;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.philosophy-icons i:hover {
    transform: scale(1.1);
}

.philosophy-icons p {
    margin: 0;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

/* Responsive adjustments for leadership page */
@media (max-width: 768px) {
    .leadership-philosophy {
        padding: 30px 20px;
    }

    .philosophy-icons {
        gap: 20px;
    }

    .philosophy-icons > div {
        min-width: 100px;
    }

    .leadership-card .image-blog img {
        height: 200px;
    }
}

/* Active Menu Highlighting */
.navbar-nav .nav-item.active > .nav-link {
    color: #ff9800 !important;
    font-weight: 600;
    border-bottom: 3px solid #ff9800;
}

.navbar-nav .nav-item.active > .nav-link::after {
    transform: rotate(180deg);
}

/* Dropdown Item Active State */
.dropdown-menu .dropdown-item.active {
    background-color: #f8f9fa;
    color: #ff9800;
    font-weight: 600;
}

.dropdown-menu .dropdown-item.active::before {
    content: "✓ ";
    margin-right: 5px;
}

/* Dropdown Menu Hover & Active */
.dropdown-item {
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    padding-left: 1.5rem;
}

.dropdown-item.active {
    border-left: 3px solid #ff9800;
    padding-left: 1.5rem;
}

/* Main nav link styling */
.nav-link {
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    transition: transform 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #ff9800;
}

/* Church and Youth Photo Slider Styling */
.church-photo-slider {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.church-photo-slider img {
    height: 500px;
    object-fit: cover;
}

.church-photo-slider .carousel-caption {
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 5px;
}

/* Service Tree Styling */
.service-tree {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
    font-family: 'Arial', sans-serif;
}

.service-tree ul {
    list-style: none;
    padding-left: 0;
}

.service-tree li {
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
}

.service-tree li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #ff9800;
    font-weight: bold;
    font-size: 18px;
}

.service-tree .service-category {
    font-weight: 600;
    color: #333;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.service-tree .service-category:first-child {
    margin-top: 0;
}

.service-tree .service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.service-tree .service-name {
    color: #555;
    font-size: 14px;
}

.service-tree .service-time {
    background: #ff9800;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}