:root {
    --primary-blue: #2563eb;
    --primary-purple: #7c3aed;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-800: #1f2937;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
}

.navbar {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--gray-800);
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-800);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

/* About Section */
.about-section {
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Add these styles for the about image */
.about-image {
    width: 100%;
    height: 100%;
    max-height: 500px;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.achievement-card,
.impact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.award-image,
.impact-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Products Section */
.products-section {
    background: var(--gray-50);
    padding: 6rem 0;
}

.products-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-nav-btn {
    background: var(--white);
    border: none;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-nav-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-nav-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.product-nav-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-nav-btn h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.product-nav-btn p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    background: var(--gray-50);
}

.contact-grid {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.info-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.info-card p {
    margin: 0.5rem 0;
}

.info-card a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--primary-purple);
}

/* Footer */
.footer {
    background: var(--gray-800);
    color: var(--white);
    padding: 2rem 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-brand img {
    max-height: 50px;
}

.footer-links {
    text-align: left;
}

.footer-links h4 {
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin: 0.5rem 0;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9em;
    color: var(--gray-100);
}

/* Logo styles */
.logo img {
    max-height: 40px;
    width: auto;
}

/* Footer logo */
.footer-brand img {
    max-height: 35px;
    width: auto;
    margin-bottom: 1rem;
}

/* Enhanced responsive styles */
@media (max-width: 1024px) {
    .container {
        padding: 3rem 1.5rem;
    }

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

    .product-nav-btn {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .logo img {
        max-height: 35px;
    }

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

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

    .products-nav {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .product-nav-icon {
        width: 50px;
        height: 50px;
    }

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

    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand img {
        max-height: 30px;
    }

    .achievement-card,
    .impact-card {
        flex-direction: column;
        text-align: center;
    }

    .award-image,
    .impact-image {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .about-image {
        max-height: 300px;
        margin-top: 2rem;
    }

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

@media (max-width: 480px) {
    .logo img {
        max-height: 30px;
    }

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

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

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .product-nav-btn {
        padding: 1.5rem 1rem;
    }

    .product-nav-btn h3 {
        font-size: 1.25rem;
    }

    .product-nav-btn p {
        font-size: 0.9rem;
    }

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

    .container {
        padding: 2rem 1rem;
    }

    .about-image {
        max-height: 250px;
    }
}

/* Fix for very small screens */
@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .product-nav-icon {
        width: 40px;
        height: 40px;
    }
}

.logo-section, .bible-app-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    text-align: center;
    background: var(--gray-50);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo-image, .bible-logo-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

h1, h2, h3 {
    color: var(--primary-blue);
}

p {
    color: var(--gray-800);
    line-height: 1.6;
}

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

ul li {
    background: var(--gray-100);
    margin: 0.5rem 0;
    padding: 0.5rem;
    border-radius: 4px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.service-issue-section {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
    background: var(--gray-50);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-issue-section h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-issue-section p {
    color: var(--gray-800);
    font-size: 1.2rem;
} 