/* START OF MOTHER'S UNION PAGE STYLES */
/* Mother's Union Specific Styles */
:root {
    --mu-primary: #8e44ad;    /* Purple - traditional Anglican color */
    --mu-secondary: #2c3e50;  /* Navy blue */
    --mu-accent: #e67e22;     /* Orange accent */
    --mu-light: #f8f9fa;
    --mu-dark: #2c3e50;
    --mu-success: #27ae60;
    --mu-warning: #f39c12;
    --mu-border: #e0e0e0;
    --mu-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --mu-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Base Section Spacing */
section {
    padding: 100px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.mothers-union-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.9), rgba(44, 62, 80, 0.9)), 
                url('/static/images/mothers-union-banner.jpg') center/cover no-repeat;
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.mothers-union-hero .hero-content h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    font-weight: 700;
    letter-spacing: -0.5px;
}


.mothers-union-hero .tagline {
    font-size: 1.4rem;
    margin-bottom: 50px;
    font-style: italic;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-transform: none;
    letter-spacing: 0.5px;
}

.cta-button.primary-btn {
    background: var(--mu-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
}

.cta-button.primary-btn:hover {
    background: #7d3c98;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(142, 68, 173, 0.4);
}

.cta-button.secondary-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary-btn:hover {
    background: white;
    color: var(--mu-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* About Section */
.about-mothers-union {
    background: var(--mu-light);
    position: relative;
}

.about-mothers-union h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--mu-primary);
    font-size: 2.8rem;
    font-weight: 700;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.anglican-values {
    background: white;
    padding: 35px;
    border-radius: 16px;
    margin-top: 40px;
    border-left: 5px solid var(--mu-primary);
    box-shadow: var(--mu-shadow);
}

.anglican-values h3 {
    color: var(--mu-primary);
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
}

.anglican-values ul {
    list-style: none;
    padding: 0;
}

.anglican-values li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    font-size: 1.05rem;
    line-height: 1.6;
}

.anglican-values i {
    margin-right: 18px;
    color: var(--mu-primary);
    width: 22px;
    margin-top: 3px;
    flex-shrink: 0;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    width: 800px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--mu-shadow);
}

/* Objectives Grid */
.mu-objectives {
    background: white;
}

.mu-objectives h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--mu-primary);
    font-size: 2.8rem;
    font-weight: 700;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.objective-card {
    text-align: center;
    padding: 45px 30px;
    background: var(--mu-light);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--mu-border);
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mu-primary), var(--mu-accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--mu-shadow-hover);
}

.objective-card:hover::before {
    transform: scaleX(1);
}

.objective-icon {
    font-size: 3rem;
    color: var(--mu-primary);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.objective-card:hover .objective-icon {
    transform: scale(1.1);
}

.objective-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--mu-dark);
    font-weight: 600;
}

.objective-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Activities Section */
.mu-activities {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eaed 100%);
}

.mu-activities h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--mu-primary);
    font-size: 2.8rem;
    font-weight: 700;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.activity-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--mu-shadow);
    border: 1px solid var(--mu-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mu-primary), var(--mu-accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--mu-shadow-hover);
}

.activity-card:hover::before {
    transform: scaleX(1);
}

.activity-icon {
    font-size: 2.8rem;
    color: var(--mu-primary);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-icon {
    transform: scale(1.1);
}

.activity-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--mu-dark);
    font-weight: 600;
}

.schedule, .location {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.schedule i, .location i {
    color: var(--mu-primary);
    width: 16px;
}

.activity-card p {
    color: #555;
    line-height: 1.7;
    margin-top: 15px;
}

/* Leadership Section */
.mu-leadership {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.mu-leadership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mu-primary), var(--mu-secondary));
}

.mu-leadership h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--mu-primary);
    font-size: 2.8rem;
    font-weight: 700;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.leader-card {
    text-align: center;
    padding: 45px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--mu-shadow);
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--mu-primary), var(--mu-secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--mu-shadow-hover);
}

.leader-card:hover::before {
    transform: scaleX(1);
}

.leader-image-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
}

.leader-card img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.2);
    transition: all 0.3s ease;
}

.leader-card:hover img {
    border-color: var(--mu-primary);
    transform: scale(1.05);
}

.leader-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mu-light), #e8d6c9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border: 4px solid white;
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.15);
}

.leader-placeholder i {
    font-size: 3.5rem;
    color: var(--mu-primary);
    opacity: 0.7;
}

.leader-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mu-dark);
    margin-bottom: 12px;
}

.position {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mu-primary);
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 25px;
    display: inline-block;
}

.bio {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.contact {
    font-size: 0.95rem;
    color: #777;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact i {
    color: var(--mu-primary);
    width: 18px;
}

/* Membership Section - Simplified without form */
.mu-membership {
    background: linear-gradient(135deg, var(--mu-primary), #6c3483);
    color: white;
    text-align: center;
}

.mu-membership h2 {
    color: white;
    margin-bottom: 60px;
    font-size: 2.8rem;
    font-weight: 700;
}

.membership-content {
    max-width: 800px;
    margin: 0 auto;
}

.membership-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.membership-info h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.membership-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
}

.membership-info li {
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.membership-info li:before {
    content: "✓";
    color: var(--mu-accent);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

/* Events Section */
.mu-events {
    background: white;
}

.mu-events h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--mu-primary);
    font-size: 2.8rem;
    font-weight: 700;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    display: flex;
    background: var(--mu-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--mu-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--mu-border);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--mu-shadow-hover);
}

.event-date {
    background: linear-gradient(135deg, var(--mu-primary), var(--mu-secondary));
    color: white;
    padding: 25px 20px;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.month {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.day {
    font-size: 2rem;
    font-weight: 700;
}

.event-details {
    padding: 30px;
    flex: 1;
}

.event-details h3 {
    color: var(--mu-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.event-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.event-details small {
    color: #a55d5d;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Prayer Section */
.mu-prayer {
    background: linear-gradient(135deg, var(--mu-secondary), #1a2530);
    color: white;
    text-align: center;
    position: relative;
}

.mu-prayer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.mu-prayer h2 {
    color: white;
    margin-bottom: 50px;
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
}

.mu-prayer blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    padding: 0 20px;
}

.mu-prayer blockquote::before,
.mu-prayer blockquote::after {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    line-height: 1;
}

.mu-prayer blockquote::before {
    top: -20px;
    left: -10px;
}

.mu-prayer blockquote::after {
    bottom: -40px;
    right: -10px;
}

.prayer-reference {
    font-style: italic;
    opacity: 0.9;
    margin-top: 30px;
    font-size: 1.1rem;
    position: relative;
}

/* Empty States */
.no-activities,
.no-leaders,
.no-events {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--mu-shadow);
    border: 2px dashed var(--mu-border);
}

.no-activities p,
.no-leaders p,
.no-events p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.no-activities::before,
.no-leaders::before,
.no-events::before {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 20px;
    opacity: 0.6;
}

.no-activities::before { content: "📅"; }
.no-leaders::before { content: "👥"; }
.no-events::before { content: "🎉"; }

/* Animation for card entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.objective-card,
.activity-card,
.leader-card,
.event-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.cta-button:focus {
    outline: 2px solid var(--mu-accent);
    outline-offset: 2px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }
    
    .container {
        max-width: 960px;
        padding: 0 25px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .mothers-union-hero .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .mothers-union-hero .tagline {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .mothers-union-hero {
        height: 60vh;
        min-height: 500px;
    }
    
    .mothers-union-hero .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .mothers-union-hero .tagline {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 28px;
    }
    
    .objectives-grid,
    .activities-grid,
    .leadership-grid,
    .events-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .objective-card,
    .activity-card,
    .leader-card {
        padding: 35px 25px;
    }
    
    .leader-image-container,
    .leader-placeholder {
        width: 130px;
        height: 130px;
    }
    
    .anglican-values {
        padding: 30px 25px;
    }
    
    .membership-info {
        padding: 35px 25px;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        min-width: auto;
        padding: 20px;
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }
    
    .month, .day {
        font-size: 1.3rem;
    }
}

@media (max-width: 640px) {
    section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .mothers-union-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .mothers-union-hero .tagline {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .about-mothers-union h2,
    .mu-objectives h2,
    .mu-activities h2,
    .mu-leadership h2,
    .mu-membership h2,
    .mu-events h2,
    .mu-prayer h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .anglican-values li {
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .anglican-values i {
        margin-right: 0;
    }
    
    .objective-icon,
    .activity-icon {
        font-size: 2.5rem;
    }
    
    .leader-card {
        padding: 30px 20px;
    }
    
    .leader-card h3 {
        font-size: 1.3rem;
    }
    
    .position {
        font-size: 1rem;
        padding: 6px 16px;
    }
    
    .membership-info {
        padding: 30px 20px;
    }
    
    .membership-info li {
        font-size: 1rem;
        padding-left: 28px;
    }
    
    .mu-prayer blockquote {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .mu-prayer blockquote::before,
    .mu-prayer blockquote::after {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .mothers-union-hero {
        height: 50vh;
        min-height: 400px;
        padding: 0 15px;
    }
    
    .mothers-union-hero .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .mothers-union-hero .tagline {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .about-mothers-union h2,
    .mu-objectives h2,
    .mu-activities h2,
    .mu-leadership h2,
    .mu-membership h2,
    .mu-events h2,
    .mu-prayer h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .objective-card,
    .activity-card {
        padding: 25px 20px;
    }
    
    .leader-card {
        padding: 25px 15px;
    }
    
    .leader-image-container,
    .leader-placeholder {
        width: 110px;
        height: 110px;
    }
    
    .leader-placeholder i {
        font-size: 2.5rem;
    }
    
    .event-details {
        padding: 20px;
    }
    
    .no-activities,
    .no-leaders,
    .no-events {
        padding: 50px 25px;
    }
    
    .no-activities p,
    .no-leaders p,
    .no-events p {
        font-size: 1.1rem;
    }
}

@media (max-width: 360px) {
    .mothers-union-hero .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .objective-card,
    .activity-card,
    .leader-card {
        padding: 20px 15px;
    }
    
    .membership-info {
        padding: 25px 15px;
    }
}

/* Print styles */
@media print {
    .hero-buttons {
        display: none;
    }
    
    section {
        padding: 30px 0;
    }
    
    .mothers-union-hero {
        background: none !important;
        color: black;
        height: auto;
        min-height: auto;
    }
    
    .cta-button {
        display: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --mu-border: #000000;
        --mu-shadow: 0 0 0 2px #000000;
    }
    
    .objective-card,
    .activity-card,
    .leader-card,
    .event-card {
        border: 2px solid #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .objective-card:hover,
    .activity-card:hover,
    .leader-card:hover,
    .event-card:hover {
        transform: none;
    }
}










/* ===== CATHEDRAL CONNECTION SECTION ===== */
.cathedral-connection {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--mu-dark) 30%, var(--mu-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cathedral-connection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cathedral-gold), #ffffff, var(--cathedral-gold));
}

.cathedral-connection h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.4rem;
    font-weight: 700;
    color: white;
    position: relative;
}

.cathedral-connection h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--cathedral-gold);
}

.connection-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.connection-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.connection-text p {
    margin-bottom: 25px;
    opacity: 0.95;
    font-size: 1.15rem;
}

.connection-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.connection-text li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    opacity: 0.95;
    font-size: 1rem;
    line-height: 1.6;
}

.connection-text li::before {
    content: '🏛️';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    opacity: 0.9;
}

.connection-image {
    position: relative;
}

.connection-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 3px solid var(--cathedral-gold);
}

.connection-image:hover img {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.connection-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--cathedral-gold);
    border-radius: calc(var(--border-radius) + 5px);
    opacity: 0.3;
    transition: var(--transition);
}

.connection-image:hover::before {
    opacity: 0.6;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
}

/* Cathedral Pattern Overlay */
.cathedral-connection::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path fill="white" d="M50 10L60 40H40L50 10Z M30 50L60 40L50 70L30 50Z M70 50L40 40L50 70L70 50Z"/></svg>');
    background-size: 200px;
    opacity: 0.1;
    pointer-events: none;
}

/* ===== CATHEDRAL-SPECIFIC OBJECTIVE CARDS ===== */
.objective-card {
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.objective-card:hover::before {
    left: 100%;
}

.objective-icon {
    position: relative;
}

.objective-icon::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--cathedral-gold);
    transition: var(--transition);
}

.objective-card:hover .objective-icon::after {
    width: 50px;
    background: var(--accent-red);
}

/* ===== ENHANCED MEMBERSHIP SECTION ===== */
.mu-membership {
    position: relative;
}

.mu-membership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cathedral-gold), var(--accent-red), var(--cathedral-gold));
}

.membership-info h3 {
    color: var(--primary-dark);
    border-left: 4px solid var(--cathedral-gold);
    padding-left: 15px;
    margin: 25px 0 15px 0;
}

.membership-info ul li {
    position: relative;
    padding-left: 25px;
}

.membership-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cathedral-gold);
    font-weight: bold;
}

/* ===== CATHEDRAL PRAYER ENHANCEMENTS ===== */
.mu-prayer {
    position: relative;
}

.mu-prayer::before {
    content: '🙏';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 4rem;
    opacity: 0.1;
    z-index: 1;
}

.prayer-content {
    position: relative;
    z-index: 2;
}

/* ===== RESPONSIVE DESIGN FOR CATHEDRAL SECTIONS ===== */
@media (max-width: 768px) {
    .connection-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .connection-text li {
        text-align: left;
    }
    
    .cathedral-connection h2 {
        font-size: 2rem;
    }
    
    .connection-text p {
        font-size: 1.1rem;
    }
    
    .connection-image {
        order: -1;
    }
    
    .cathedral-connection::after {
        background-size: 150px;
    }
}

@media (max-width: 480px) {
    .cathedral-connection h2 {
        font-size: 1.8rem;
    }
    
    .connection-text li {
        padding-left: 25px;
        font-size: 0.95rem;
    }
    
    .connection-text li::before {
        font-size: 1rem;
    }
    
    .connection-image img {
        border-width: 2px;
    }
}

/* Cathedral Gold Color Variable */
:root {
    --cathedral-gold: #d4af37;
}

/* Animation for Cathedral Elements */
@keyframes cathedralGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }
}

.connection-image:hover img {
    animation: cathedralGlow 2s ease-in-out infinite;
}