/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fonts (Using Google Fonts) */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Top Bar */
.top-bar {
    background-color: #f8f8f8;
    padding: 5px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.language-selector select,
.auth-links a {
    margin-right: 15px;
    color: #555;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Navigation */
.navbar {
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
}

.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.nav-menu a:hover {
    color: #007bff;
}

.nav-icons a {
    margin-left: 15px;
    color: #333;
    font-size: 1.2em;
}

.nav-icons a:hover {
    color: #007bff;
}

/* Hero Section */
.hero {
    background: url('images/hero.jpg') no-repeat center center/cover;
    color: #fff;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: auto;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    margin: 5px;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.btn:hover {
    background-color: #0056b3;
}

/* Mission and Vision */
.mission-vision {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.mission-vision .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mission, .vision {
    flex: 0 0 48%;
    margin-bottom: 20px;
}

.mission-vision h2 {
    margin-bottom: 15px;
    color: #007bff;
}

/* Events Section */
.events {
    padding: 60px 0;
}

.events h2 {
    text-align: center;
    margin-bottom: 40px;
}

.events-slider {
    display: flex;
    overflow-x: auto;
}

.event-card {
    flex: 0 0 300px;
    margin-right: 20px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
}

.event-card img {
    width: 100%;
    border-bottom: 1px solid #eee;
}

.event-info {
    padding: 15px;
}

.event-info h3 {
    margin-bottom: 10px;
}

.event-info p {
    margin-bottom: 15px;
}

/* Sermons and Media */
.sermons-media {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.sermons-media h2 {
    text-align: center;
    margin-bottom: 40px;
}

.sermon-highlight {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.sermon-highlight img {
    flex: 0 0 50%;
    max-width: 500px;
    margin-right: 20px;
}

.sermon-info {
    flex: 1;
}

.sermon-info h3 {
    margin-bottom: 15px;
}

.sermon-info p {
    margin-bottom: 10px;
}

/* Ministries */
.ministries {
    padding: 60px 0;
}

.ministries h2 {
    text-align: center;
    margin-bottom: 40px;
}

.ministries-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ministry-item {
    flex: 0 0 30%;
    margin-bottom: 30px;
    text-align: center;
}

.ministry-item i {
    font-size: 3em;
    color: #007bff;
    margin-bottom: 15px;
}

.ministry-item h3 {
    margin-bottom: 10px;
}

/* Community Impact */
.community-impact {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.community-impact h2 {
    text-align: center;
    margin-bottom: 40px;
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}

.stat-item h3 {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.testimonials blockquote {
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
}

.testimonials cite {
    display: block;
    text-align: right;
    margin-top: 10px;
}

/* Prayer and Counseling */
.prayer-counseling {
    padding: 60px 0;
    text-align: center;
}

.prayer-buttons .btn {
    margin: 10px;
}

/* Digital Resources */
.digital-resources {
    padding: 60px 0;
}

.digital-resources h2 {
    text-align: center;
    margin-bottom: 40px;
}

.resources-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.resource-item {
    flex: 0 0 30%;
    margin-bottom: 30px;
    text-align: center;
}

.resource-item img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Newsletter */
.newsletter {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 5px 0 0 5px;
}

.newsletter-form button {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.newsletter-form button:hover {
    background-color: #0056b3;
}

/* Social Media */
.social-media {
    padding: 60px 0;
    text-align: center;
}

.social-icons a {
    margin: 0 10px;
    font-size: 2em;
    color: #333;
}

.social-icons a:hover {
    color: #007bff;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 0 0 22%;
    margin-bottom: 20px;
}

.footer-column h3 {
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-newsletter input {
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    border: none;
}

.footer-newsletter button {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #007bff;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

.footer-legal a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.footer-legal a:hover {
    text-decoration: underline;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .sermon-highlight {
        flex-direction: column;
    }

    .sermon-highlight img,
    .sermon-info {
        flex: 1;
    }

    .ministries-list .ministry-item,
    .resources-list .resource-item {
        flex: 0 0 45%;
    }

    .footer-columns {
        flex-direction: column;
    }

    .footer-column {
        flex: 1;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .ministries-list .ministry-item,
    .resources-list .resource-item {
        flex: 0 0 100%;
    }
}
