/* Pages Specific Styles */

/* Page Hero Sections */
.page-hero {
    background: var(--gradient-hero), url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?ixlib=rb-4.0.3&w=1200');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.page-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero .hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.min-vh-80 {
    min-height: 80vh;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-top: 2rem;
}

.breadcrumb {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    display: inline-flex;
}

.breadcrumb-item a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--white);
    opacity: 0.8;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--gold);
    opacity: 0.7;
}

/* Section Badges */
.section-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--dark-maroon);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* About Page Styles */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.3rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--gold);
}

.timeline-year {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.timeline-content h5 {
    color: var(--dark-maroon);
    margin-bottom: 0.5rem;
}

/* Image Stack */
.image-stack {
    position: relative;
}

.stack-item {
    position: absolute;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.stack-item-1 {
    top: 0;
    left: 0;
    width: 80%;
    z-index: 2;
}

.stack-item-2 {
    bottom: 0;
    right: 0;
    width: 70%;
    z-index: 1;
}

.stack-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Belief Cards */
.belief-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--maroon);
}

.belief-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--gold);
}

.belief-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-section);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--maroon);
}

/* Leader Profiles */
.leader-profile {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.leader-profile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.leader-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.leader-info {
    flex: 1;
    margin-left: 1.5rem;
}

.leader-role {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.leader-social a {
    color: var(--text-light);
    margin-right: 0.8rem;
    transition: color 0.3s ease;
}

.leader-social a:hover {
    color: var(--maroon);
}

.leader-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--medium-gray);
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--maroon);
    margin-bottom: 0.2rem;
}

.stat-item span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Associate Leaders */
.associate-leader {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.associate-leader:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Facility Cards */
.facility-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.facility-info {
    padding: 1.5rem;
}

/* Ministries Page Styles */
.ministry-card-large {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    height: 100%;
}

.ministry-card-large:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.ministry-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.ministry-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.ministry-body {
    padding: 2rem;
}

.ministry-meta {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
}

.meta-item {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.meta-item i {
    margin-right: 0.5rem;
    color: var(--maroon);
}

.ministry-footer {
    padding: 1.5rem 2rem;
    background: var(--light-gray);
    display: flex;
    justify-content: space-between;
}

/* Ministry Detail Pages */
.ministry-detail-content {
    padding-right: 2rem;
}

.ministry-features {
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.feature-item i {
    margin-right: 1rem;
    width: 20px;
}

.ministry-schedule {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.schedule-list {
    margin-top: 1rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.schedule-item:last-child {
    border-bottom: none;
}

/* Choir Cards Detailed */
.choir-card-detailed {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.choir-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.choir-icon-detailed {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.choir-type {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.choir-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.choir-rehearsal {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Events Page Styles */
.weekly-schedule {
    margin-top: 2rem;
}

.day-schedule {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.day-schedule:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.day-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.day-header h4 {
    margin: 0;
    color: var(--white);
}

.day-events {
    padding: 1.5rem;
}

.event-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.event-item:last-child {
    border-bottom: none;
}

.event-time {
    background: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--maroon);
    min-width: 80px;
    text-align: center;
    margin-right: 1rem;
}

.event-details h6 {
    margin: 0 0 0.3rem 0;
    color: var(--dark-maroon);
}

.event-type {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Event Cards */
.event-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--light-gray);
}

.event-date {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 70px;
    margin-right: 1.5rem;
}

.date-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-info {
    flex: 1;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.event-meta span {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.event-category {
    background: var(--gold);
    color: var(--dark-maroon);
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.event-body {
    padding: 1.5rem;
}

.event-footer {
    padding: 1rem 1.5rem;
    background: var(--light-gray);
    display: flex;
    gap: 1rem;
}

/* Event Highlight Section */
.event-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.highlight-content {
    padding-right: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.detail-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.feature i {
    color: var(--maroon);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.countdown-item {
    background: rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Calendar Widget */
.calendar-widget {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.calendar-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calendar-nav {
    display: flex;
    gap: 0.5rem;
}

.calendar-placeholder {
    background: var(--light-gray);
    color: var(--text-light);
}

/* Music CTA */
.music-cta {
    background: var(--gradient-section);
    padding: 3rem;
    border-radius: 15px;
    border: 2px dashed var(--maroon);
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .leader-header {
        flex-direction: column;
        text-align: center;
    }
    
    .leader-info {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .ministry-footer {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .event-header {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
}