/* --- General Setup & Fonts --- */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #444; /* Soft black for main body text */
    background-color: #f8f8f8; /* Light gray background */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Typography & Headings --- */
h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #1a4d7c; /* Deep institutional blue */
    margin-top: 0;
}

h2 { font-size: 2.8em; text-align: center; margin-bottom: 0.2em; }
h3 { font-size: 2.2em; margin-bottom: 0.8em; color: #333; }
h4 { font-size: 1.4em; color: #1a4d7c; margin-bottom: 0.5em; }

p {
    font-weight: 300;
}

/* --- STRONG TAG VISUAL ENHANCEMENT --- */
/* This rule ensures all bolded text stands out significantly */
strong {
    font-weight: 700; /* Ensure maximum boldness for Roboto */
    color: #007bff; /* Change color to bright blue for emphasis */
}

/* --- Header & Navigation --- */
header {
    background-color: #1a4d7c; 
    color: white;
    padding: 15px 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6em;
    font-weight: 700;
    color: white;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-weight: 400;
}

nav a:hover {
    background-color: #2b7bbd; 
}

/* --- Section Styling & Layout --- */
.section-content {
    padding: 60px 0;
}

.section-padded {
    padding: 40px 0 60px;
}

.intro-header {
    background-color: #e9f2ff; /* Very light, welcoming blue */
    padding: 80px 0;
    text-align: center;
    border-bottom: 5px solid #007bff;
}

.intro-header .tagline {
    font-size: 1.3em;
    font-weight: 400;
    color: #007bff;
}

.about-text {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.history-box {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    border-left: 5px solid #ffaa00; /* Warm accent color */
    background-color: #fffaf0;
    border-radius: 4px;
}

.scripture-quote {
    display: block;
    font-style: italic;
    font-size: 1.1em;
    color: #555;
    margin: 15px 0;
    padding-left: 15px;
    border-left: 3px solid #ffaa00;
}

/* Mission Section */
.mission-section {
    background-color: #f0f4f8; /* Slightly darker background for mission */
}

.pastor-message {
    text-align: center;
    margin: 30px auto 50px;
    max-width: 800px;
}

.pastor-title {
    font-style: italic;
    color: #555;
    font-weight: 400;
}

.quote-text {
    font-size: 1.4em;
    line-height: 1.5;
    font-weight: 300;
    color: #1a4d7c;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    padding: 20px 0;
}

/* Four Pillars Grid */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.pillar-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.icon-placeholder {
    font-size: 2em;
    margin-bottom: 10px;
    color: #007bff;
}

.pillar-card h5 {
    color: #1a4d7c;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Outreach Section */
.outreach-section {
    background-color: #fff;
}

.outreach-flex {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.outreach-card {
    flex: 1;
    padding: 25px;
    border-radius: 8px;
    border-top: 4px solid #1a4d7c;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.outreach-card h4 {
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

/* Contact Info */
.contact-details {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-details p {
    font-size: 1.1em;
}

/* --- Footer --- */
footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
}

/* --- Media Queries --- */
@media (max-width: 768px) {
    h2 { font-size: 2em; }
    h3 { font-size: 1.8em; }
    
    header .container {
        flex-direction: column;
    }
    nav {
        margin-top: 15px;
    }
    nav a {
        margin: 5px 10px;
        padding: 5px;
    }
    .outreach-flex {
        flex-direction: column;
    }
}