﻿/* Ministry Staff Page Styles */

/* Header and Navigation Styles - Consistent with other pages */
.header {
    background: #2c5530;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 85, 48, 0.95);
    z-index: 1000;
    padding-top: 4rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin: 1rem 0;
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 1rem;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: rgba(255, 255, 255, 0.2);
}

/* Ministry Hero Section */
.ministry-hero {
    height: 45vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.9), rgba(74, 124, 89, 0.8)), url('church2.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 i {
    margin-right: 1rem;
    color: #ffcccb;
}

.hero-content > p {
    font-size: 1.3rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-verse {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: 2rem;
}

.hero-verse i {
    font-size: 2rem;
    color: #ffcccb;
    margin-bottom: 1rem;
}

.hero-verse p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hero-verse cite {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Senior Pastor Section */
.senior-pastor-section {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.pastor-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pastor-image-container {
    position: relative;
}

.pastor-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.pastor-image:hover {
    transform: translateY(-5px);
}

.associate-pastor-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.pastor-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 85, 48, 0.9));
    color: white;
    padding: 2rem;
    text-align: center;
}

.pastor-title h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pastor-title p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.pastor-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pastor-details h3 {
    font-size: 2.2rem;
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.pastor-position {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
}

.pastor-description {
    margin-bottom: 2.5rem;
}

.pastor-description p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.pastor-education,
.pastor-ministry {
    margin-bottom: 2.5rem;
}

.pastor-education h4,
.pastor-ministry h4 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pastor-education ul {
    list-style: none;
    padding: 0;
}

.pastor-education li {
    color: #666;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.pastor-education li:before {
    content: '•';
    color: #2c5530;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.pastor-education li:last-child {
    border-bottom: none;
}

.ministry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.ministry-tag {
    background: #e8f5e8;
    color: #2c5530;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ministry-tag:hover {
    background: #2c5530;
    color: white;
    transform: translateY(-2px);
}

/* Pastor's Message */
.pastor-message {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.message-header {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.message-header i {
    font-size: 2rem;
    color: #2c5530;
}

.message-header h3 {
    font-size: 1.8rem;
    color: #2c5530;
    margin: 0;
    font-weight: 600;
}

.message-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.message-signature {
    text-align: right;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.message-signature p {
    color: #666;
    margin-bottom: 0.5rem;
}

.message-signature p:last-child {
    color: #2c5530;
    font-size: 1.2rem;
}

/* Ministry Staff Section */
.ministry-staff-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.staff-profiles {
    max-width: 1200px;
    margin: 0 auto;
}

.associate-pastor-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.associate-pastor-image-container {
    position: relative;
}

.associate-pastor-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.associate-pastor-image:hover {
    transform: translateY(-5px);
}

.associate-pastor-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.associate-pastor-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 85, 48, 0.9));
    color: white;
    padding: 2rem;
    text-align: center;
}

.associate-pastor-title h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.associate-pastor-title p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.associate-pastor-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.associate-pastor-details h3 {
    font-size: 2.2rem;
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.associate-pastor-position {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 500;
}

.associate-pastor-education {
    margin-bottom: 2.5rem;
}

.associate-pastor-education h4 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.associate-pastor-education ul {
    list-style: none;
    padding: 0;
}

.associate-pastor-education li {
    color: #666;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.associate-pastor-education li:before {
    content: '•';
    color: #2c5530;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.associate-pastor-education li:last-child {
    border-bottom: none;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.staff-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.staff-image {
    height: 200px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.staff-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.staff-photo-placeholder {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.staff-info {
    padding: 2.5rem;
}

.staff-info h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.staff-position {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.staff-description {
    margin-bottom: 2rem;
}

.staff-description p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.staff-ministry {
    margin-bottom: 2rem;
}

.staff-ministry h4 {
    color: #2c5530;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.staff-ministry ul {
    list-style: none;
    padding: 0;
}

.staff-ministry li {
    color: #666;
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.staff-ministry li:before {
    content: '▸';
    color: #2c5530;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.staff-contact {
    border-top: 1px solid #f0f0f0;
    padding-top: 1.5rem;
}

.staff-contact p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.staff-contact i {
    color: #2c5530;
    width: 16px;
}

.staff-education {
    margin-bottom: 2rem;
}

.staff-education h4 {
    color: #2c5530;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.staff-education ul {
    list-style: none;
    padding: 0;
}

.staff-education li {
    color: #666;
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.staff-education li:before {
    content: '•';
    color: #2c5530;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.staff-education li:last-child {
    border-bottom: none;
}

/* Contact Ministry Section */
.contact-ministry-section {
    padding: 5rem 0;
    background: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    border-color: #2c5530;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #2c5530;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: #1e3b21;
    transform: scale(1.1);
}

.contact-card h3 {
    color: #2c5530;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-card p {
    color: #666;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contact-card strong {
    color: #2c5530;
    font-weight: 600;
}

/* Ministry Schedule */
.ministry-schedule {
    max-width: 1000px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
}

.ministry-schedule h3 {
    color: #2c5530;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

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

.schedule-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-5px);
}

.day {
    color: #2c5530;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e8f5e8;
}

.activities p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.activities p:last-child {
    margin-bottom: 0;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        padding: 0 1rem;
    }

    .ministry-hero {
        height: 40vh;
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content > p {
        font-size: 1.1rem;
    }

    .hero-verse {
        padding: 2rem;
    }

    .hero-verse p {
        font-size: 1.1rem;
    }

    .pastor-profile {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .associate-pastor-photo {
        height: 350px;
    }

    .associate-pastor-profile {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .associate-pastor-photo {
        height: 350px;
    }

    .staff-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .staff-card {
        margin: 0 1rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        margin: 0 1rem;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pastor-message {
        margin: 0 1rem;
        padding: 2rem;
    }

    .ministry-schedule {
        margin: 0 1rem;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content > p {
        font-size: 1rem;
    }

    .hero-verse {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .pastor-details h3 {
        font-size: 1.8rem;
    }

    .staff-info {
        padding: 2rem;
    }

    .staff-info h3 {
        font-size: 1.3rem;
    }

    .contact-card {
        padding: 2rem;
        margin: 0 0.5rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .ministry-schedule {
        margin: 0 0.5rem;
        padding: 1.5rem;
    }

    .pastor-message {
        margin: 0 0.5rem;
        padding: 1.5rem;
    }

    .message-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .ministry-tags {
        justify-content: center;
    }

    .ministry-tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Footer already styled in styles.css */
