/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #2c2c2c;
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #d4af37;
}

.nav i {
    font-size: 10px;
    margin-left: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="grad1" cx="50%" cy="100%" r="50%"><stop offset="0%" style="stop-color:%23d4af37;stop-opacity:0.3" /><stop offset="100%" style="stop-color:%23000000;stop-opacity:1" /></radialGradient></defs><rect width="100%" height="100%" fill="url(%23grad1)"/><circle cx="200" cy="700" r="50" fill="%23d4af37" opacity="0.2"/><circle cx="400" cy="650" r="80" fill="%23d4af37" opacity="0.15"/><circle cx="800" cy="680" r="60" fill="%23d4af37" opacity="0.2"/><circle cx="1000" cy="700" r="40" fill="%23d4af37" opacity="0.25"/></svg>') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 80px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.separator {
    width: 60px;
    height: 3px;
    background-color: #d4af37;
    margin: 20px 0;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #fff;
}

.scripture {
    font-weight: bold;
    color: #d4af37;
    margin-top: 30px;
}

.scripture-text {
    font-style: italic;
    font-size: 14px;
    line-height: 1.6;
}

.hero-button {
    flex-shrink: 0;
    margin-top: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #d4af37;
    color: #fff;
}

.btn-primary:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
}

.btn-outline:hover {
    background-color: #2c2c2c;
    color: #fff;
}

/* Love Section */
.love-section {
    background-color: #2c2c2c;
    padding: 80px 0;
}

.love-section h3 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.image-gallery {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.gallery-item {
    flex: 1;
    max-width: 300px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.section-text {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.button-center {
    text-align: center;
}

/* Sermon Section */
.sermon-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.sermon-section h3 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #2c2c2c;
    font-family: 'Times New Roman', serif;
}

.sermon-section .section-text {
    color: #2c2c2c;
}

/* Connect Section */
.connect-section {
    background-color: #2c2c2c;
    padding: 80px 0;
}

.connect-section h3 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.connect-section .separator {
    margin: 20px auto;
}

.connect-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-top: 40px;
}

.gathering-times h4 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.gathering-times p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 16px;
}

.social-icons a:hover {
    color: #d4af37;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    padding: 60px 0;
    text-align: center;
}

.footer h4 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer p {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    color: #fff;
    text-align: center;
    line-height: 36px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #d4af37;
    border-color: #d4af37;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h2 {
        font-size: 32px;
    }
    
    .image-gallery {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-item {
        max-width: 100%;
    }
    
    .connect-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h2 {
        font-size: 24px;
    }
    
    .love-section h3,
    .sermon-section h3,
    .connect-section h3 {
        font-size: 28px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 12px;
    }
}

