/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    color: #1a237e; /* Dark Blue */
    text-align: center;
    margin-bottom: 20px;
}

a {
    color: #c62828; /* Dark Red */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.button {
    display: inline-block;
    background-color: #c62828; /* Dark Red */
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-align: center;
}

.button:hover {
    background-color: #9c0000; /* Darker Red */
    text-decoration: none;
}

/* Header & Navigation */
header {
    background-color: #1a237e; /* Dark Blue */
    color: #fff;
    padding: 10px 0;
    border-bottom: 5px solid #c62828; /* Red accent */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    color: #fff;
    margin: 0;
    font-size: 2.2em;
    white-space: nowrap; /* Keep logo text on one line */
}

.nav-flag {
    height: 100px; /* Adjust size as needed */
    width: auto;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap; /* Allow wrapping */
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
    white-space: nowrap;
}

nav ul li a:hover {
    color: #ddd;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: url(Table,Flag,Bible,andCross.JPG) no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.4); /* Darker overlay for text readability */
}

.hero-content {
    max-width: 800px;
    z-index: 1; /* Ensure content is above overlay */
}

.hero h2 {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #eee;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

/* Section Containers */
.section-container {
    padding: 60px 0;
    text-align: center;
}

.section-container h3 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.bg-light {
    background-color: #e0e0e0; /* Light Gray */
}

/* Beliefs Grid */
.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.belief-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.belief-item:hover {
    transform: translateY(-5px);
}

.belief-item h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.8em;
    color: #0d47a1; /* Even darker blue */
    margin-bottom: 15px;
}

.belief-item h4 img {
    height: 40px;
    width: auto;
    filter: invert(10%) sepia(90%) saturate(6000%) hue-rotate(220deg) brightness(80%) contrast(120%); /* Makes icons blue */
}

.belief-item p {
    font-size: 1.1em;
    color: #555;
}

/* Issues List */
.issues-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.issue-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.issue-item h4 {
    font-size: 1.6em;
    color: #1a237e;
    text-align: left;
    margin-bottom: 10px;
}

.issue-item p {
    font-size: 1em;
    color: #666;
    text-align: left;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 1.2em;
}

/* Footer */
footer {
    background-color: #1a237e; /* Dark Blue */
    color: #fff;
    padding: 30px 0;
    text-align: center;
    border-top: 5px solid #c62828; /* Red accent */
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

footer a {
    color: #fff;
    text-decoration: underline;
}

footer .social-links img {
    height: 24px;
    width: auto;
    margin: 0 10px;
    filter: invert(100%); /* Makes icons white */
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.8em;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 15px;
    }
    nav ul li {
        margin: 10px 0;
    }
    .hero h2 {
        font-size: 2.5em;
    }
    .hero p {
        font-size: 1.1em;
    }
    .section-container {
        padding: 40px 0;
    }
    .section-container h3 {
        font-size: 2em;
    }
    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5em;
    }
    .hero h2 {
        font-size: 2em;
    }
    .hero p {
        font-size: 1em;
    }
    .container {
        padding: 10px;
    }
}
