:root {
    --primary-blue: #1E3A8A;
    --light-blue: #3B82F6;
    --dark-blue: #1E40AF;
    --gold: #FFD700;
    --warm-gold: #DAA520;
    --white: #FFFFFF;
    --cream: #FFF8DC;
    --dark-gray: #2C3E50;
    --light-gray: #F5F5F5;
    --wood-brown: #8B4513;
    --warm-brown: #A0522D;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.church-icon {
    font-size: 2rem;
    color: var(--gold);
}

.church-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

.nav-menu a:hover {
    color: var(--gold);
}

.language-selector select {
    background: var(--white);
    border: 1px solid var(--gold);
    color: var(--dark-gray);
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 30px;
    height: 30px;
    justify-content: space-between;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-bg-image.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(30, 58, 138, 0.4) 0%,
        rgba(30, 58, 138, 0.6) 50%,
        rgba(30, 58, 138, 0.8) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.4rem;
    color: var(--cream);
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.hero-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

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

.indicator.active {
    background: var(--gold);
    transform: scale(1.3);
    border-color: var(--white);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.05));
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.history-section {
    margin-bottom: 2rem;
}

.history-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--warm-gold);
    margin-bottom: 1rem;
}

.history-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.about-image-placeholder {
    background: var(--light-gray);
    border: 2px dashed var(--primary-blue);
    border-radius: 10px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-style: italic;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: 
        linear-gradient(135deg, rgba(30, 58, 138, 0.7), rgba(59, 130, 246, 0.6)),
        url('wood.jpeg');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
    position: relative;
}

.services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.05));
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--gold);
    width: 40px;
    text-align: center;
}

.contact-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--dark-gray);
    font-size: 1rem;
}

.address-link {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.address-link:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.footer .address-link {
    color: var(--white);
}

.footer .address-link:hover {
    color: var(--gold);
}

.contact-image-placeholder {
    background: var(--light-gray);
    border: 2px dashed var(--primary-blue);
    border-radius: 10px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-style: italic;
}

.contact-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* News Section */
.news {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.03), rgba(59, 130, 246, 0.03));
}

.news h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 3rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image-placeholder {
    background: var(--light-gray);
    border-bottom: 2px dashed var(--primary-blue);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-style: italic;
}

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

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.news-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-date {
    color: var(--warm-gold);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Benefit items (shared) */
.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-size: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

/* Facebook Section */
.facebook-section {
    padding: 4rem 0;
    background:
        linear-gradient(135deg, rgba(24, 119, 242, 0.8), rgba(66, 103, 178, 0.75)),
        url('wood.jpeg');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
    position: relative;
}

.facebook-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.facebook-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.facebook-text p {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.facebook-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.facebook-action {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.facebook-button {
    background: #FFFFFF;
    color: #1877F2;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.facebook-button:hover {
    background: #F0F2F5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.facebook-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-blue);
    color: var(--light-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 20px;
    }
    
    .logo {
        flex: 1;
    }
    
    .church-name {
        font-size: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .navigation {
        position: relative;
        order: 2;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--primary-blue);
        min-width: 200px;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        padding: 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu a:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .language-selector {
        margin-top: 1rem;
        padding: 0 1.5rem;
    }
    
    .language-selector select {
        width: 100%;
    }
    
    .hero {
        min-height: calc(100vh - 80px);
    }

    .hero-text h2 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .hero-prev {
        left: 15px;
    }

    .hero-next {
        right: 15px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .facebook-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about h2,
    .services h2,
    .contact h2,
    .news h2,
    .facebook-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .about,
    .services,
    .contact,
    .news {
        padding: 2rem 0;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

    .hero-content {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Placeholder styling */
.placeholder-text {
    font-size: 1.1rem;
    font-weight: 500;
}