/*START OF CHOIR AND PRAISE & WORSHIP TEAM*/

/* Choir & Worship Team Styles */
:root {
    --music-primary: #8e44ad;    /* Purple - worship and spirituality */
    --music-secondary: #e67e22;  /* Orange - energy and passion */
    --music-accent: #27ae60;     /* Green - growth and harmony */
    --music-dark: #2c3e50;       /* Dark blue */
    --music-light: #f8f9fa;      /* Light background */
    --music-border: #e0e0e0;
    --music-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --music-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

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

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

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--music-primary), var(--music-secondary));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Hero Section */
.worship-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.85), rgba(230, 126, 34, 0.8)), 
                url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1600&q=80') 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;
}

.worship-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;
}

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

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

/* Enhanced Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    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;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #ffffff33, transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary-btn {
    background: var(--music-primary);
    color: #e67e22;
    box-shadow: 0 4px 15px #8e44ad4d;
}

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

.cta-button.secondary-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    backdrop-filter: blur(10px);
}

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

/* Teams Section */
.teams-section {
    background: var(--music-light);
    position: relative;
}

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

.team-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--music-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--music-border);
}

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

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

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

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

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

.team-card h3 {
    color: var(--music-dark);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
}

.team-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.team-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.youtube-link, .tiktok-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.youtube-link {
    background: #ff0000;
    color: white;
}

.youtube-link:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.tiktok-link {
    background: #000000;
    color: white;
}

.tiktok-link:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.team-leader {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--music-border);
}

.team-leader small {
    color: #666;
    font-weight: 600;
}

.no-teams {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--music-shadow);
    border: 2px dashed var(--music-border);
}

.no-teams p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.no-teams::before {
    content: "🎵";
    font-size: 3.5rem;
    display: block;
    margin-bottom: 20px;
    opacity: 0.6;
}

/* Requirements Section */
.requirements {
    background: white;
}

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

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

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

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

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

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

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

.req-card h4 {
    color: var(--music-dark);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.req-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.req-card li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.req-card li:before {
    content: "✓";
    color: var(--music-accent);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

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

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

.schedule-card {
    background: white;
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: var(--music-shadow);
    border: 1px solid var(--music-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.schedule-card h3 {
    color: var(--music-primary);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--music-border);
    transition: background-color 0.3s ease;
}

.schedule-item:hover {
    background-color: var(--music-light);
    margin: 0 -20px;
    padding: 18px 20px;
    border-radius: 8px;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-time {
    font-weight: 700;
    color: var(--music-dark);
    font-size: 1.1rem;
}

.schedule-activity {
    color: #555;
    font-weight: 500;
}

/* Registration Section */
.registration {
    background: white;
}

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

.reg-info {
    background: var(--music-light);
    padding: 45px 35px;
    border-radius: 16px;
    border: 1px solid var(--music-border);
}

.reg-info h3 {
    color: var(--music-dark);
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid var(--music-primary);
    padding-bottom: 10px;
}

.reg-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.reg-info li {
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

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

.reg-form {
    background: var(--music-light);
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: var(--music-shadow);
    border: 1px solid var(--music-border);
}

.reg-form h3 {
    color: var(--music-primary);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.interest-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
    padding: 16px 20px;
    border: 2px solid var(--music-border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus {
    outline: none;
    border-color: var(--music-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.1);
}

.interest-form textarea {
    min-height: 140px;
    resize: vertical;
}

.interest-form button {
    background: linear-gradient(135deg, var(--music-primary), #7d3c98);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.interest-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.interest-form button:hover::before {
    left: 100%;
}

.interest-form button:hover {
    background: linear-gradient(135deg, #7d3c98, #6c3483);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(142, 68, 173, 0.3);
}

.interest-form button:active {
    transform: translateY(0);
}

/* Bible Verse Section */
.bible-verse {
    background: linear-gradient(135deg, var(--music-primary), #6c3483);
    color: white;
    text-align: center;
    position: relative;
}

.bible-verse::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");
}

.bible-verse blockquote {
    font-size: 2rem;
    line-height: 1.6;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

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

.bible-verse blockquote::before {
    top: -20px;
    left: -10px;
}

.bible-verse blockquote::after {
    bottom: -40px;
    right: -10px;
}

.bible-verse cite {
    display: block;
    margin-top: 30px;
    font-size: 1.3rem;
    opacity: 0.9;
    position: relative;
}

/* Form Messages */
.alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 500;
    display: none;
    border: 2px solid transparent;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

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

.team-card,
.req-card,
.schedule-card {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Focus styles for accessibility */
.cta-button:focus,
.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus,
.interest-form button:focus {
    outline: 2px solid var(--music-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;
    }
    
    .teams-container,
    .reg-content {
        gap: 40px;
    }
    
    .worship-hero .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .worship-hero .tagline {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .teams-container,
    .reg-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .worship-hero {
        height: 60vh;
        min-height: 500px;
    }
    
    .worship-hero .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .worship-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: 16px 28px;
    }
    
    .req-grid,
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-card,
    .req-card,
    .schedule-card {
        padding: 35px 25px;
    }
    
    .reg-info,
    .reg-form {
        padding: 35px 25px;
    }
    
    h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 640px) {
    section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .worship-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .worship-hero .tagline {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .team-card h3 {
        font-size: 1.5rem;
    }
    
    .team-links {
        flex-direction: column;
        align-items: center;
    }
    
    .youtube-link,
    .tiktok-link {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .reg-info li,
    .req-card li {
        font-size: 1rem;
        padding-left: 28px;
    }
    
    .bible-verse blockquote {
        font-size: 1.6rem;
        padding: 0 15px;
    }
    
    .bible-verse blockquote::before,
    .bible-verse blockquote::after {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .worship-hero {
        height: 50vh;
        min-height: 400px;
        padding: 0 15px;
    }
    
    .worship-hero .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .worship-hero .tagline {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .team-card,
    .req-card,
    .schedule-card {
        padding: 25px 20px;
    }
    
    .reg-info,
    .reg-form {
        padding: 25px 20px;
    }
    
    .teams-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    .worship-hero .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .team-card,
    .req-card,
    .schedule-card {
        padding: 20px 15px;
    }
    
    .reg-info,
    .reg-form {
        padding: 20px 15px;
    }
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --music-border: #000000;
        --music-shadow: 0 0 0 2px #000000;
    }
    
    .team-card,
    .req-card,
    .schedule-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;
    }
    
    .team-card:hover,
    .req-card:hover,
    .schedule-card:hover {
        transform: none;
    }
    
    .cta-button::before,
    .interest-form button::before {
        display: none;
    }
}



















/* ===== CATHEDRAL MUSIC MINISTRY STYLES ===== */

/* Cathedral Heritage Section */
.cathedral-heritage {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.cathedral-heritage h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-dark);
    font-size: 2.4rem;
    font-weight: 700;
    position: relative;
}

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

.heritage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.heritage-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.heritage-text p {
    margin-bottom: 30px;
    font-size: 1.15rem;
}

.heritage-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.feature-item i {
    color: var(--cathedral-gold);
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

.feature-item span {
    font-weight: 500;
    color: var(--primary-dark);
}

.heritage-image {
    position: relative;
}

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

.heritage-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Enhanced Teams Section for Cathedral */
.teams-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-dark);
    font-size: 2.4rem;
    font-weight: 700;
    position: relative;
}

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

.team-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--cathedral-gold);
    position: relative;
    overflow: hidden;
}

.team-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;
}

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

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

.team-icon {
    font-size: 3rem;
    color: var(--cathedral-gold);
    margin-bottom: 25px;
    transition: var(--transition);
}

.team-card:hover .team-icon {
    transform: scale(1.1);
    color: var(--accent-red);
}

/* Enhanced Requirements Section */
.requirements h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-dark);
    font-size: 2.4rem;
    font-weight: 700;
    position: relative;
}

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

.req-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--cathedral-gold);
    position: relative;
    overflow: hidden;
}

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

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

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

.req-icon {
    font-size: 2.5rem;
    color: var(--cathedral-gold);
    margin-bottom: 20px;
    transition: var(--transition);
}

.req-card:hover .req-icon {
    transform: scale(1.1);
    color: var(--accent-red);
}

/* Enhanced Schedule Section */
.schedule h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-dark);
    font-size: 2.4rem;
    font-weight: 700;
    position: relative;
}

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

.schedule-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow);
    border-right: 4px solid var(--cathedral-gold);
    position: relative;
    overflow: hidden;
}

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

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

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

/* Enhanced Registration Section */
.registration h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-dark);
    font-size: 2.4rem;
    font-weight: 700;
    position: relative;
}

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

.reg-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid var(--cathedral-gold);
    position: relative;
}

.reg-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--cathedral-gold), transparent, var(--cathedral-gold));
    border-radius: calc(var(--border-radius) + 2px);
    z-index: -1;
    opacity: 0.3;
}

/* 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);
    }
}

.heritage-image:hover img,
.team-card:hover,
.req-card:hover,
.schedule-card:hover {
    animation: cathedralGlow 2s ease-in-out infinite;
}

/* ===== RESPONSIVE DESIGN FOR CATHEDRAL SECTIONS ===== */
@media (max-width: 768px) {
    .heritage-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .heritage-features {
        text-align: left;
    }
    
    .cathedral-heritage h2,
    .teams-section h2,
    .requirements h2,
    .schedule h2,
    .registration h2 {
        font-size: 2rem;
    }
    
    .heritage-image {
        order: -1;
    }
    
    .reg-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .cathedral-heritage h2,
    .teams-section h2,
    .requirements h2,
    .schedule h2,
    .registration h2 {
        font-size: 1.8rem;
    }
    
    .feature-item {
        gap: 10px;
    }
    
    .feature-item i {
        font-size: 1.1rem;
    }
    
    .heritage-text p {
        font-size: 1.05rem;
    }
    
    .team-card,
    .req-card,
    .schedule-card {
        padding: 25px 20px;
    }
}
/*END OF CHOIR AND PRAISE & WORSHIP*/