/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Lora', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #2E4F3A;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    font-size: 24px;
    color: #D4A017;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #D4A017;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #D4A017;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    transition: background 0.3s;
}

.btn:hover {
    background: #4A90E2;
}

/* Welcome Section */
.welcome {
    padding: 60px 0;
    background: #F5F5F5;
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.pastor-img {
    width: 300px;
    border-radius: 10px;
}

.welcome-text h2 {
    font-size: 32px;
    color: #2E4F3A;
    margin-bottom: 20px;
}

/* About, Beliefs, Sermons, Services, Contact */
.about, .beliefs, .sermons, .services, .contact {
    padding: 60px 0;
    text-align: center;
}

.about h2, .beliefs h2, .sermons h2, .services h2, .contact h2 {
    font-size: 36px;
    color: #2E4F3A;
    margin-bottom: 20px;
}

.sermon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.sermon-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sermon-card img {
    width: 100%;
    border-radius: 10px;
}

.sermon-card h3 {
    font-size: 24px;
    margin: 10px 0;
}

.service-times p {
    font-size: 18px;
    margin: 10px 0;
}

.map iframe {
    width: 100%;
    max-width: 600px;
    height: 450px;
    margin-top: 20px;
}

.contact-content {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.contact-info p {
    font-size: 18px;
    margin: 10px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
}

.contact-form button {
    align-self: center;
}

/* Footer */
footer {
    background: #2E4F3A;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #D4A017;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #2E4F3A;
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .welcome-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-content {
        flex-direction: column;
        align-items: center;
    }
}