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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Top Bar */
.top-bar {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .social-icons a {
    color: #fff;
    margin-right: 15px;
    transition: 0.3s;
}

.top-bar .social-icons a:hover {
    color: #c49a6c;
}

/* Navigation */
.navbar {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    color: #c49a6c !important;
}

.navbar-brand i {
    margin-right: 5px;
}

.nav-link {
    font-weight: 600;
    color: #333 !important;
    margin-left: 20px;
    transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: #c49a6c !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.pexels.com/photos/2609873/pexels-photo-2609873.jpeg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

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

.hero .lead {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-primary {
    background: #c49a6c;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #a87b4a;
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid #c49a6c;
    color: #c49a6c;
}

.btn-outline-primary:hover {
    background: #c49a6c;
    border-color: #c49a6c;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Section */
.stats-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.stat-box {
    text-align: center;
    padding: 30px;
}

.stat-box h3 {
    font-size: 48px;
    color: #c49a6c;
    margin-bottom: 10px;
}

/* Services Section */
.service-card {
    text-align: center;
    padding: 40px 20px;
    transition: 0.3s;
    border-radius: 10px;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 48px;
    color: #c49a6c;
    margin-bottom: 20px;
}

/* Sermon Cards */
.sermon-card, .cause-card, .blog-card, .event-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sermon-card:hover, .cause-card:hover, .blog-card:hover, .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Progress Bar */
.progress {
    height: 8px;
    border-radius: 5px;
    margin: 15px 0;
}

.progress-bar {
    background: #c49a6c;
}

/* Pastor Cards */
.pastor-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
}

.pastor-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.pastor-card h4 {
    margin-bottom: 5px;
}

.pastor-card .position {
    color: #c49a6c;
    margin-bottom: 15px;
}

.social-links a {
    color: #666;
    margin: 0 8px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #c49a6c;
}

/* Contact Form */
.contact-info {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-info i {
    font-size: 30px;
    color: #c49a6c;
    margin-bottom: 15px;
}

.form-control {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #c49a6c;
    box-shadow: none;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #999;
    padding: 70px 0 20px;
}

footer h3, footer h4 {
    color: #fff;
    margin-bottom: 25px;
}

footer ul {
    list-style: none;
    padding: 0;
}

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

footer ul li a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

footer ul li a:hover {
    color: #c49a6c;
    padding-left: 5px;
}

.footer-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #333;
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #c49a6c;
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .stat-box h3 {
        font-size: 32px;
    }
}