/* About Hero */
.about-hero {
    padding: 160px 20px 100px;
    background-color: #1b3022;
    color: #d2f3d3;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-top: 20px;
}

/* Split Sections */
.about-split {
    padding: 120px 0;
    background-color: #fcf9f2; /* Warm parchment tone from logo gold */
    color: #1b3022; /* Dark green text for readability */
}

/* Making the vision statement stand out */
.emphasized-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #1b3022;
    margin-bottom: 20px;
}

.emphasized-text strong {
    color: #4a7c44; /* Highlights the 'Real Disciples/Real Love' */
    font-weight: 700;
}

/* Ensuring the image wrapper maintains the aesthetic */
.about-img {
    border-radius: 40px; /* Large rounded corners */
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.about-img:hover {
    transform: scale(1.02); /* Very subtle zoom on hover */
}

.image-wrapper.about-img {
    width: 100%;
    max-width: 50vw;
    height: 600px;
}

.about-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Action Links */
.about-actions {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: #f4faf4; /* Light mint background */
    border-radius: 15px;
    text-decoration: none;
    color: #1b3022;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.action-link:hover {
    background-color: #ffffff;
    border-color: #d2f3d3;
    transform: translateX(10px); /* Slides slightly to the right on hover */
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.action-link .arrow {
    color: #4a7c44;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.action-link:hover .arrow {
    transform: translateX(5px);
}

/* Mobile Tweak */
@media (max-width: 600px) {
    .about-actions {
        margin-top: 25px;
    }
}

.about-split .split-layout {
    flex-direction: row;
}

/* Light mint background for the second section to create depth */
.about-split.reverse {
    background-color: #1b3022; /* Deep green from logo */
    color: #fcf9f2; /* Light cream text */
}

/* Make sure headings in the dark section turn light */
.about-split.reverse h2, 
.about-split.reverse p {
    color: #fcf9f2;
}

/* Styling the mission text specifically */
.about-split.reverse .mission-statement {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #fcf9f2; /* Light parchment color */
    margin-bottom: 25px;
    font-weight: 500;
}

.about-split.reverse p strong {
    color: #b39347; /* gold for the final powerful 'one' statement */
}

/* Responsive: Stacks them correctly on mobile */
@media (max-width: 992px) {
    .about-split.reverse .split-layout {
        flex-direction: column; /* Stack normally on mobile */
    }
    .about-split .split-layout {
        flex-direction: column; /* Stack normally on mobile */
    }
    .container.split-layout{
        width: auto;
    }
    .about-hero h1 {
        font-size: 2.5rem;
    }
    .image-wrapper.about-img {
        max-width: 80vw;
    }
}

.pastor-section {
    padding: 120px 0;
    background-color: #2e4f2d;
    color: #fcf9f2; /* Light parchment text for contrast */
}

/* Ensure the heading stands out */
.pastor-section h2 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.pastor-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Creating the large circular frame */
.portrait-circle {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.1); /* Subtle transparent white border */
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.portrait-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pastor-text {
    flex: 1.2;
}

.pastor-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #d2f3d3;
    line-height: 1.6;
    margin-bottom: 25px;
    border-left: 3px solid #b39347;
    padding-left: 20px;
}

.pastor-signature {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.name-style {
    font-family: 'Playfair Display', serif; /* Or any elegant serif font available */
    font-size: 1.8rem;
    color: #b39347; /* Gold for the Pastor's name */
    font-weight: 700;
    margin-top: 5px;
    display: block;
}

.pastor-contact {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(179, 147, 71, 0.2); /* Light gold divider */
}

.pastor-email-link {
    color: #b39347; /* Logo Gold */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pastor-email-link:hover {
    color: #d2f3d3; 
    transform: translateX(5px);
}

.email-icon {
    font-size: 1.1rem;
}

/* Mobile adjustments */
@media (max-width: 992px) {
    .portrait-circle {
        width: 600px;
        height: 600px;
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .portrait-circle {
        width: 70vw;
        height: 70vw;
    }
}


.affiliation-section {
    padding: 100px 20px;
    background-color: #fcf9f2; /* Logo-inspired cream */
    text-align: center;
}

.affiliation-content {
    max-width: 800px;
    margin: 0 auto;
}

.rccg-logo-wrapper {
    margin-bottom: 30px;
}

.rccg-logo {
    width: 100px; /* Small and dignified */
    height: auto;
    filter: grayscale(20%) sepia(20%); /* Softens the logo to match site's aesthetic */
    opacity: 0.9;
    border-radius: 50%;
}

.affiliation-text h2 {
    color: #1b3022;
    margin-bottom: 20px;
}

.affiliation-text p {
    color: #2d4434;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.external-link {
    display: inline-block;
    margin-top: 10px;
    color: #4a7c44;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(74, 124, 68, 0.2);
    transition: all 0.3s ease;
}

.external-link:hover {
    border-bottom-color: #4a7c44;
    padding-bottom: 5px;
}