/* Organization Page Styles */
.org-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.org-section:nth-child(even) {
    background-color: #fff;
}

.org-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.org-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.org-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    color: #333;
    font-weight: 700;
}

.org-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #7B1E22;
    border-radius: 2px;
}

.org-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.org-highlight {
    background-color: rgba(123, 30, 34, 0.1);
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 600;
    color: #7B1E22;
}

/* Leadership styles */
.leader-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.leader-img-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-img {
    transform: scale(1.05);
}

.leader-info {
    padding: 1.5rem;
}

.leader-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #333;
}

.leader-title {
    color: #7B1E22;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.leader-bio {
    font-size: 0.9rem;
    color: #555;
}

.leader-bio ul {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.leader-bio li {
    margin-bottom: 0.5rem;
}

/* Chapter section */
.chapter-section {
    background-color: #f8f9fa;
}

.chapter-description {
    margin-bottom: 2rem;
}

.chapter-leaders {
    margin-top: 3rem;
}

.chapter-leader-card {
    text-align: center;
    padding: 1.2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.chapter-leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.chapter-leader-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid #7B1E22;
}

.chapter-leader-name {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.chapter-leader-title {
    color: #7B1E22;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .leader-img-container {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .org-section {
        padding: 50px 0;
    }
    
    .leader-card {
        margin-bottom: 30px;
    }
    
    .leader-img-container {
        height: 280px;
    }
    
    .chapter-leader-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .leader-img-container {
        height: 250px;
    }
}

/* Modal styles */
.leader-modal .modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
}

.leader-modal .modal-header {
    border-bottom: none;
    background-color: #f8f9fa;
    padding: 1.5rem;
}

.leader-modal .modal-body {
    padding: 1.5rem;
}

.leader-modal .modal-title {
    color: #333;
    font-weight: 700;
}

.leader-modal .modal-subtitle {
    color: #7B1E22;
    font-weight: 600;
    font-size: 0.95rem;
}

.leader-modal .modal-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #7B1E22;
    margin-bottom: 1rem;
}

.leader-modal-bio {
    margin-top: 1.5rem;
}

.leader-modal-bio ul {
    padding-left: 1.2rem;
}

.leader-modal-bio li {
    margin-bottom: 0.5rem;
}
