html,
body {
    height: 100%;
}

body {
    margin: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

.site-header {
    padding: 20px 16px;
    border-bottom: 1px solid #e5e5e5;
    background-color: #ffffff;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    font-weight: 700;
    font-size: 1.50rem;
    letter-spacing: .02em;
}

.nav-desktop ul {
    display: flex;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-desktop a {
    text-decoration: none;
    color: #111;
    padding: 8px 10px;
    border-radius: 6px;
}

.nav-desktop a:hover {
    background: #f2f2f2;
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    width: 40px;
    height: 32px;
    padding: 0;
    position: relative;
}

.menu-toggle span {
    position: absolute;
    left: 8px;
    right: 8px;
    height: 2px;
    background: #111;
    transition: transform .2s ease, opacity .2s ease, top .2s ease;
}

.menu-toggle span:nth-child(1) {
    top: 8px;
}

.menu-toggle span:nth-child(2) {
    top: 15px;
}

.menu-toggle span:nth-child(3) {
    top: 22px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .2);
    opacity: 0;
    transform: translateX(-100%);
    transition: transform .3s ease, opacity .3s ease;
    pointer-events: none;
    z-index: 9999;
}

.mobile-menu.open {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.mobile-menu .nav-mobile {
    background: #fff;
    width: 80%;
    max-width: 340px;
    height: 100%;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-mobile a {
    text-decoration: none;
    color: #111;
    font-size: 1.1rem;
    padding: 10px 8px;
    border-radius: 6px;
}

.nav-mobile a:hover {
    background: #f2f2f2;
}

.no-scroll {
    overflow: hidden;
}

.site-main {
    padding: 0px;
}

.site-footer {
    border-top: 1px solid #e5e5e5;
    padding: 16px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

@media (max-width: 980px) {
    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

.hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('uploads/hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* About Us Section */
.about-us {
    padding: 80px 16px;
    position: relative;
}

.about-us-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-us-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-us-subheading {
    font-size: 1.75rem;
    font-weight: 600;
    color: #4a5568;
    margin: 0 0 32px 0;
    position: relative;
    display: inline-block;
}

.about-us-subheading::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.about-us-content {
    margin-top: 48px;
}

.about-us-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2d3748;
    margin: 0 0 24px 0;
    text-align: justify;
}

.about-us-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-us {
        padding: 60px 16px;
    }

    .about-us-heading {
        font-size: 2rem;
    }

    .about-us-subheading {
        font-size: 1.5rem;
    }

    .about-us-content p {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .about-us {
        padding: 40px 16px;
    }

    .about-us-heading {
        font-size: 1.75rem;
    }

    .about-us-subheading {
        font-size: 1.25rem;
    }
}

@media (max-width: 425px) {
    .about-us-heading {
        font-size: 1.5rem;
    }
}

/* Bible Study Section */
.bible-study {
    padding: 80px 16px;
    background: #fff;
}

.bible-study-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.bible-study-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
}

.bible-study-intro {
    font-size: 1.125rem;
    color: #4a5568;
    margin: 0 0 48px 0;
}

.bible-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.bible-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 24px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.bible-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.bible-card-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.bible-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.bible-card-description {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 768px) {
    .bible-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bible-study {
        padding: 60px 16px;
    }

    .bible-study-heading {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .bible-study {
        padding: 40px 16px;
    }

    .bible-study-heading {
        font-size: 1.75rem;
    }

    .bible-card {
        padding: 32px 20px;
    }
}

/* Beliefs Summary Section */
.beliefs-summary {
    padding: 80px 16px;
    text-align: center;
}

.beliefs-summary-inner {
    max-width: 800px;
    margin: 0 auto;
}

.beliefs-summary-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.beliefs-summary-text {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.8;
    margin: 0 0 40px 0;
}

.beliefs-btn {
    display: inline-block;
    background-color: #667eea;
    color: #ffffff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(102, 126, 234, 0.25);
}

.beliefs-btn:hover {
    background-color: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(102, 126, 234, 0.35);
}

@media (max-width: 768px) {
    .beliefs-summary {
        padding: 60px 16px;
    }

    .beliefs-summary-heading {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .beliefs-summary {
        padding: 40px 16px;
    }

    .beliefs-summary-heading {
        font-size: 1.75rem;
    }
}

/* Contact Section */
.contact {
    padding: 80px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.contact-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-heading {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
}

.contact-intro {
    font-size: 1.125rem;
    margin: 0 0 48px 0;
    opacity: 0.95;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.contact-icon-fa {
    font-size: 1.5rem;
    min-width: 24px;
}

.contact-link,
.contact-text {
    font-size: 1.125rem;
    color: #fff;
    text-decoration: none;
    text-align: left;
}

.contact-link:hover {
    text-decoration: underline;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.youtube {
    background: #FF0000;
}

.social-btn.facebook {
    background: #1877F2;
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 16px;
    }

    .contact-heading {
        font-size: 2rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-text {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 40px 16px;
    }

    .contact-heading {
        font-size: 1.75rem;
    }

    .contact-item {
        padding: 16px 20px;
    }

    .social-buttons {
        gap: 12px;
    }

    .social-btn {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}