/* Board Section Styles */
.board-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #2f2f31;
    margin-bottom: 50px;
    font-family: 'Raleway', sans-serif;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #a89872;
}

.board-member-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    text-align: center;
}

.board-member-card:hover {
    transform: translateY(-5px);
}

.board-member-image {
    padding: 20px;
}

.board-member-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f8f9fa;
}

.board-member-info {
    padding: 20px;
}

.board-member-name {
    font-size: 18px;
    font-weight: 700;
    color: #2f2f31;
    margin-bottom: 5px;
    font-family: 'Raleway', sans-serif;
}

.board-member-title {
    font-size: 14px;
    color: #a89872;
    margin-bottom: 15px;
    font-weight: 500;
}

.board-member-bio {
    display: inline-block;
    padding: 8px 20px;
    background: #a89872;
    color: #fff;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.board-member-bio:hover {
    background: #2f2f31;
    color: #fff;
    transform: translateY(-2px);
}

/* Modal Styles */
.modal-content {
    border-radius: 10px;
    border: none;
}

.modal-header {
    background: #a89872;
    color: #fff;
    border-radius: 10px 10px 0 0;
    border: none;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 30px;
}

.modal-body h4 {
    color: #2f2f31;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
}

.modal-body p {
    color: #8d8d8d;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .board-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .board-member-card {
        margin-bottom: 20px;
    }
}
