/* Membership Page Styles */

/* Hero Section */
.membership-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('../images/header.png') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    color: white;
    position: relative;
    margin-bottom: 20px;
}

.divider {
    height: 4px;
    width: 80px;
    background: #7B1E22;
    margin-bottom: 20px;
    border-radius: 2px;
}

/* Benefits Section */
.benefits-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.benefits-section .section-title {
    position: relative;
    color: #333;
    font-weight: 700;
    padding-bottom: 15px;
    display: inline-block;
}

.benefits-section .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #7B1E22;
    border-radius: 2px;
}

.benefit-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(123, 30, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #7B1E22;
}

/* Statement Section */
.statement-section {
    background-color: #fff;
    padding: 60px 0;
}

.purpose-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.purpose-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #7B1E22;
    border-radius: 2px;
}

.purpose-item {
    margin-bottom: 30px;
}

.contact-box {
    background: linear-gradient(135deg, #7B1E22 0%, #A52A2A 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(123, 30, 34, 0.3);
}

.doctrinal-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e9ecef;
}

.doctrinal-item:last-child {
    border-bottom: none;
}

/* Ladies Section */
.ladies-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .statement-section .card {
        margin-bottom: 30px;
    }
    
    .purpose-title, .card-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .benefit-card {
        margin-bottom: 20px;
    }
    
    .gallery-img {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .membership-hero {
        padding: 80px 0;
    }
    
    .gallery-img {
        height: 120px;
    }
    
    .purpose-title, .card-title {
        font-size: 1.4rem;
    }
}
