/* About Navigation Styling */
.about-nav {
    background-color: #2d2d2d; /* Dark background for navigation */
    border-bottom: 2px solid #ff6600; /* Add a highlight border at the bottom */
}

.about-nav .about-link {
    color: #f1f1f1;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s, transform 0.3s;
}

.about-nav .about-link:hover {
    color: #ff6600; 
    transform: scale(1.1);
}

/* Add spacing and alignment */
.about-nav .d-flex {
    gap: 50px; /* Add spacing between links */
}

/* Adjust for mobile view */
@media (max-width: 768px) {
    .about-nav {
        padding: 10px 0; /* Reduce padding for smaller screens */
    }

    .about-link {
        font-size: 1rem; /* Smaller font size for mobile */
        padding: 0.4rem 0.8rem; /* Adjust padding for smaller screens */
    }

    .d-flex {
        flex-wrap: wrap; /* Allow links to wrap for smaller widths */
        gap: 15px; /* Adjust spacing for wrapped links */
    }
}

/* Mission & Vision Section */
.about-section {
    max-width: 80%; /* Set the section to take up 80% of the screen width */
    margin: 0 auto; /* Center the section horizontally */
    padding: 50px 0; /* Add vertical padding */
    display: flex;
    align-items: center; /* Vertically align items */
    gap: 30px; /* Add space between text and image */
}

/* Mission Text Styling */
.text-container h2 {
    font-size: 2.5rem; /* Larger heading font */
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4; /* Line spacing */
    color: #333;
}

.mission-bold {
    font-weight: bold; /* Bold styling */
    color: #333;
}

.mission-highlight {
    font-weight: bold; /* Bold for emphasis */
    color: #ff6600; /* Highlight color */
}

.text-container p {
    font-size: 1.2rem; /* Paragraph font size */
    line-height: 1.8; /* More spacing between lines */
    margin-bottom: 20px;
    color: #333;
}

.vision-bold {
    font-weight: bold; /* Bold styling for vision */
    color: #333;
    font-size: 2.5rem;
}

.vision-highlight {
    font-weight: bold; /* Bold for emphasis */
    font-style: italic; /* Italic styling */
    color: #ff6600; /* Highlight color */
}


/* Image Styling */
.about-section .image-container {
    flex: 1; /* Allow the image to take equal space */
    text-align: center; /* Center-align image */
}

.about-section .image-container img {
    max-width: 100%; /* Make image responsive */
    height: auto; /* Maintain aspect ratio */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column; /* Stack the text and image */
        max-width: 90%; /* Reduce width slightly for smaller screens */
        gap: 20px; /* Adjust spacing */
    }

    .about-section .text-container,
    .about-section .image-container {
        flex: unset; /* Reset flex behavior */
        width: 100%; /* Take full width */
    }

    .about-section .text-container h2 {
        font-size: 2rem; /* Adjust heading size for smaller screens */
    }

    .about-section .text-container p {
        font-size: 1rem; /* Adjust text size for readability */
    }
}

/* General Section Styling */
#beliefs-core-values {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6600; /* Highlight color for headings */
    margin-bottom: 30px;
}

/* Belief Cards */
.belief-card {
    background-color: #f9f9f9; /* Light background */
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.belief-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.belief-card p {
    font-size: 1.1rem;
    color: #333;
    font-weight: bold;
    text-transform: capitalize;
}

/* Core Value Cards */
/* General Section Styling */
#core-values {
    padding: 50px 0;
    background-color: #fff;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 30px;
}

/* Core Value Cards */
.value-card {
    text-align: center;
    margin: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-card .circle {
    width: 120px;
    height: 120px;
    background-color: #ff6600; /* Highlight color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card .circle h3 {
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
}

.value-card:hover .circle {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.value-card p {
    font-size: 1rem;
    color: #333;
    max-width: 150px;
    line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .value-card .circle {
        width: 100px;
        height: 100px;
    }

    .value-card .circle h3 {
        font-size: 1.5rem;
    }

    .value-card p {
        font-size: 0.9rem;
    }
}
/* General Section Styling */
#pastors {
    max-width: 80%; /* Limit section to 80% of the screen width */
    margin: 0 auto; /* Center the section horizontally */
    padding: 50px 0; /* Add vertical padding */
}

/* Section Heading */
#pastors .section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 20px;
}

/* Text Styling */
#pastors p {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

/* Image Styling */
#pastors img {
    max-width: 80%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #pastors {
        max-width: 90%; /* Adjust width for smaller screens */
    }

    #pastors .section-heading {
        font-size: 2rem; /* Adjust heading size for readability */
    }

    #pastors p {
        font-size: 1rem; /* Reduce text size for smaller screens */
    }

    #pastors img {
        margin-bottom: 20px; /* Add spacing below the image */
    }
}
