@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: white;
    color: #222;
    line-height: 1.6;
    margin: 0;
}

.sr-only {
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}
/* Color scheme */
:root {
    --primary: #000000;
    --secondary: #cc0000;
    --accent: #ffffff;
    --ink: #171717;
    --muted: #5f6368;
    --surface: #f6f6f4;
    --warm: #f2c14e;
}

.container {
    width: min(100% - 32px, 1200px);
    margin: 0 auto;
    padding: 48px 0;
}

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

.text-xl {
    font-size: 1.25rem;
}

.mb-8 {
    margin-bottom: 2rem;
}
.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #000000;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary);
margin: 10px auto;
}
.ministry-grid,
.ministries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.about-section {
    margin-bottom: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    margin: 20px 0 10px;
    color: #cc0000;
}

.values-list {
    list-style: none;
    margin: 20px 0;
}

.values-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 5px;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
}

@media (max-width: 768px) {
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
}
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 60px 0;
}

.about-content h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
main.container {
    min-height: 50vh;
}
.button {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 10px 24px;
    border: 0;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 15px;
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
}
.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(204,0,0,0.2);
}

.coming-soon-hero {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48)),
        url('images/church-planting-background.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: center;
}

.hero-inner {
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 48px;
    align-items: start;
    padding: 84px 0;
}

.eyebrow {
    color: var(--warm);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-copy h1 {
    font-size: clamp(2.55rem, 6vw, 5.6rem);
    line-height: 0.96;
    max-width: 820px;
    margin-bottom: 24px;
}

.hero-lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    max-width: 720px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-actions .button,
.contact-strip .button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
}

.button-outline {
    background: #ffffff;
    color: #151515;
}

.hero-logo-panel {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    padding: clamp(22px, 4vw, 44px);
    margin-top: 42px;
}

.hero-logo-panel img {
    display: block;
    width: 100%;
    height: auto;
}

.meeting-preview {
    width: min(100% - 32px, 1180px);
    margin: -58px auto 0;
    position: relative;
    z-index: 2;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
    padding: clamp(28px, 4vw, 42px);
    text-align: center;
}

.meeting-preview h2 {
    color: var(--ink);
    font-size: clamp(1.45rem, 3vw, 2.4rem);
    line-height: 1.08;
    max-width: 760px;
    margin: 0 auto 24px;
}

.meeting-preview .eyebrow {
    color: var(--ink);
}

.info-card {
    padding: 30px;
    min-height: 190px;
    border: 1px solid #ececec;
    border-radius: 8px;
    background: #ffffff;
}

.info-icon {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    background: rgba(204, 0, 0, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    font-size: 1.15rem;
    margin-bottom: 18px;
}

.info-card h2,
.info-card h3 {
    color: var(--ink);
    font-size: 1.18rem;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--muted);
    margin: 0;
}

.contact-strip {
    width: min(100% - 32px, 1180px);
    margin: 64px auto 22px;
    display: grid;
    grid-template-columns: 1fr minmax(280px, 420px);
    gap: 36px;
    align-items: center;
    background: var(--surface);
    border-left: 6px solid var(--secondary);
    border-radius: 8px;
    padding: clamp(26px, 4vw, 44px);
}

.contact-strip h2 {
    color: var(--ink);
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    line-height: 1.08;
    text-align: center;
}

.contact-strip .eyebrow {
    color: #0b63ce;
    text-align: center;
}

.contact-list {
    display: grid;
    gap: 12px;
}

.contact-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid #e2e2df;
    border-radius: 8px;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: 700;
}

.contact-list a i {
    color: var(--secondary);
}

.contact-list a:hover {
    border-color: var(--secondary);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.contact-list .contact-whatsapp {
    background: #128c4a;
    border-color: #128c4a;
    color: #ffffff;
    justify-content: center;
    justify-self: start;
    min-width: 160px;
    width: 50%;
}

.contact-list .contact-whatsapp i {
    color: #ffffff;
}

.contact-list .contact-whatsapp:hover {
    border-color: #0d733c;
    box-shadow: 0 8px 22px rgba(18, 140, 74, 0.24);
}

.coming-soon-page {
    min-height: 72vh;
    display: grid;
    place-items: center;
    padding: 56px 20px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.9)),
        url('images/church-planting-background.png');
    background-size: cover;
    background-position: center;
}

.coming-soon-card {
    width: min(100%, 760px);
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    padding: clamp(30px, 6vw, 58px);
    text-align: center;
}

.coming-soon-card img {
    width: min(100%, 440px);
    height: auto;
    display: block;
    margin: 0 auto 28px;
}

.coming-soon-card .eyebrow {
    color: #0b63ce;
}

.coming-soon-card h1 {
    color: var(--ink);
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
    margin-bottom: 18px;
}

.coming-soon-card p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 580px;
    margin: 0 auto 28px;
}

.coming-soon-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.coming-soon-actions .button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.72);
}

.modal-backdrop[hidden] {
    display: none;
}

.modal-panel {
    width: min(100%, 960px);
    max-height: min(760px, calc(100vh - 48px));
    overflow: auto;
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    padding: clamp(28px, 5vw, 52px);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.modal-panel h2 {
    color: var(--ink);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    line-height: 1;
    margin-bottom: 28px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.modal-panel .eyebrow {
    color: #0b63ce;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid #dedede;
    border-radius: 50%;
    background: #ffffff;
    color: var(--ink);
    cursor: pointer;
    font-size: 1.1rem;
}

.modal-close:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.modal-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.modal-actions .button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
}

.whatsapp-button {
    background: #128c4a;
}

.whatsapp-button:hover {
    box-shadow: 0 10px 20px rgba(18, 140, 74, 0.22);
}

body.modal-open {
    overflow: hidden;
}

.site-bot {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 900;
}

.site-bot-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    background: #0b63ce;
    color: #ffffff;
    padding: 13px 18px;
    font-family: inherit;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(11, 99, 206, 0.28);
    cursor: pointer;
}

.site-bot-panel {
    width: min(360px, calc(100vw - 32px));
    position: absolute;
    right: 0;
    bottom: 62px;
    overflow: hidden;
    border: 1px solid #dfe6ef;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.site-bot-panel[hidden] {
    display: none;
}

.site-bot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: #0b63ce;
    color: #ffffff;
    padding: 16px;
}

.site-bot-header p {
    margin: 0 0 2px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-bot-header h2 {
    margin: 0;
    font-size: 1.08rem;
}

.site-bot-close {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
}

.site-bot-messages {
    display: grid;
    gap: 10px;
    max-height: 310px;
    overflow: auto;
    padding: 16px;
    background: #f6f8fb;
}

.bot-message {
    max-width: 92%;
    border-radius: 8px;
    padding: 11px 12px;
    font-size: 0.92rem;
    line-height: 1.4;
}

.bot-message-question {
    justify-self: end;
    background: #171717;
    color: #ffffff;
}

.bot-message-answer {
    justify-self: start;
    background: #ffffff;
    color: var(--ink);
    border: 1px solid #e1e6ee;
}

.site-bot-form {
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid #dfe6ef;
    background: #ffffff;
}

.site-bot-form input {
    width: 100%;
    border: 1px solid #d7dde7;
    border-radius: 8px;
    padding: 11px 12px;
    font: inherit;
}

.site-bot-form button {
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 8px;
    background: #128c4a;
    color: #ffffff;
    cursor: pointer;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

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

    .coming-soon-hero {
        min-height: auto;
    }

    .hero-inner,
    .contact-strip {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        gap: 34px;
        padding: 56px 0 96px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-copy h1,
    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .hero-logo-panel {
        margin-top: 0;
        order: -1;
    }

    .hero-actions .button {
        width: auto;
        justify-content: center;
        flex: 1 1 0;
        min-width: 0;
        padding: 10px 6px;
        font-size: 0.68rem;
        white-space: nowrap;
    }

    .meeting-preview {
        margin-top: -42px;
    }

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

    .modal-actions {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .modal-actions .button {
        width: auto;
        justify-content: center;
        flex: 1 1 0;
        min-width: 0;
        padding: 10px 8px;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .contact-list .contact-whatsapp {
        width: 50%;
    }

    .site-bot {
        right: 12px;
        bottom: 12px;
    }

    .site-bot-panel {
        bottom: 58px;
    }
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #cc0000;
}
/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.gradient-text {
    background: linear-gradient(90deg, var(--secondary), #ff3333);
-webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hover-scale {
    transition: transform 0.3s ease;
}

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