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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #20448C;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #20448C;
}

.join-btn {
    background: #20448C;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-btn {
    display: inline-block;
    background: #20448C;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.hero-btn:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 197, 95, 0.3);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

.hero-prev,
.hero-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Upcoming Event */
.upcoming-event {
    background: #f8f9fa;
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.event-label {
    color: #6c757d;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
}

.event-btn {
    background: #20448C;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 20px;
}

.feature-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    letter-spacing: 1px;
}

.feature-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-link {
    color: #20448C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: #e55a2b;
}

/* Programs & Events */
.programs {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #333;
    letter-spacing: 2px;
}

.programs-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.program-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.program-date {
    margin-bottom: 20px;
}

.month {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #20448C;
    letter-spacing: 1px;
}

.day {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.program-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.program-time {
    color: #666;
    margin-bottom: 20px;
}

.program-btn {
    background: #20448C;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

/* Content Section */
.content-section {
    padding: 80px 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.bulletin-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e9ecef;
}

.bulletin-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bulletin-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.bulletin-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.bulletin-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.bulletin-meta a {
    color: #20448C;
    text-decoration: none;
}

.bulletin-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.bulletin-link {
    color: #20448C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.bulletin-link:hover {
    color: #e55a2b;
}

.sermon-video {
    margin-bottom: 30px;
}

.video-thumbnail {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.video-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 197, 95, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(255, 197, 95, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.sermon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.sermon-item:last-child {
    border-bottom: none;
}

.sermon-title {
    font-weight: 500;
    color: #333;
}

.sermon-duration {
    color: #666;
    font-size: 0.9rem;
}

/* Outreach */
.outreach {
    padding: 80px 0;
    background: #f8f9fa;
}

.outreach-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.outreach-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.outreach-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.outreach-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.outreach-meta {
    color: #666;
    margin-bottom: 30px;
}

.outreach-meta a {
    color: #20448C;
    text-decoration: none;
}

.stat-amount {
    margin-bottom: 20px;
}

.amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.goal {
    color: #666;
    font-size: 0.9rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: #28a745;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.stat-details {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.donate-btn {
    background: #20448C;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

/* Gallery */
.gallery {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Bible Verses */
.bible-verses {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.verse-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.verse {
    display: none;
    padding: 40px;
}

.verse.active {
    display: block;
}

.verse-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.verse-reference {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

.verse-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

/* Ministries */
.ministries {
    padding: 80px 0;
    background: white;
}

.ministries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.ministry-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ministry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ministry-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.ministry-content {
    padding: 30px;
}

.ministry-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    letter-spacing: 1px;
}

.ministry-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.ministry-link {
    color: #20448C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ministry-link:hover {
    color: #e55a2b;
}

/* Newsletter */
.newsletter {
    padding: 60px 0;
    background: linear-gradient(135deg, #20448C, #e55a2b);
    color: white;
}

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

.newsletter-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-input {
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    width: 300px;
    outline: none;
}

.newsletter-btn {
    background: white;
    color: #20448C;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    letter-spacing: 1px;
}

.footer-text {
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #20448C;
}

.footer-address {
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-address a {
    color: #20448C;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #20448C;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .join-btn {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 3rem;
    }

    .upcoming-event .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bulletin-item {
        flex-direction: column;
    }

    .bulletin-image {
        width: 100%;
        height: 200px;
    }

    .outreach-card {
        grid-template-columns: 1fr;
    }

    .outreach-image {
        height: 300px;
    }

    .newsletter .container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-input {
        width: 100%;
    }

    .verse-text {
        font-size: 1.4rem;
    }

    .hero-prev,
    .hero-next {
        display: none;
    }
}

@media (max-width: 480px) {
    .features-grid,
    .programs-slider,
    .ministries-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .outreach-content {
        padding: 20px;
    }

    .outreach-title {
        font-size: 1.5rem;
    }

    .stat-details {
        gap: 20px;
    }
}

