/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #FBF9F5;
    color: #3E4A52;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* =========================
   NAVBAR
========================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(251, 249, 245, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(44,74,94,0.08);
}

.navbar {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.7rem;
    font-weight: 700;
}

.logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-wordmark {
    display: inline-flex;
    align-items: baseline;
    font-size: 1.7rem;
    font-weight: 700;
    color: #2C4A5E;
    line-height: 1;
}

.accent {
    color: #D36135;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #2C4A5E;
    font-size: 0.97rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: #D36135;
}

/* =========================
   HERO
========================= */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;

    background:
        linear-gradient(to bottom, rgba(44,74,94,0.45), rgba(44,74,94,0.55)),
        url('https://images.unsplash.com/photo-1504052434569-70ad5836ab65?q=80&w=1974&auto=format&fit=crop')
        center/cover no-repeat;
}

.hero-content {
    max-width: 900px;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}

.hero-content p {
    margin-top: 20px;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.92);
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.primary-btn,
.secondary-btn {
    padding: 15px 34px;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.2s ease;
}

/* BUTTONS */
.primary-btn {
    background: #D36135;
    color: white;
}

.primary-btn:hover {
    background: #B94F28;
}

.secondary-btn {
    border: 1px solid #2C4A5E;
    color: #2C4A5E;
    background: white;
}

.secondary-btn:hover {
    background: #2C4A5E;
    color: white;
}

/* =========================
   SECTIONS
========================= */
section {
    padding: 110px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3rem;
    color: #2C4A5E;
}

.section-header p {
    margin-top: 15px;
    color: #5A6570;
    max-width: 700px;
    margin-inline: auto;
}

/* =========================
   ABOUT
========================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 20px;
    height: 500px;
    object-fit: cover;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: #4B5661;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* =========================
   MINISTRIES
========================= */
.ministry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ministry-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(44,74,94,0.08);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.25s ease;
}

.ministry-card:hover {
    transform: translateY(-8px);
}

.ministry-card img {
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 22px;
}

.card-content p {
    color: #5A6570;
}

.card-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #D36135;
    color: white;
    border-radius: 999px;
    font-size: 0.9rem;
    transition: 0.2s ease;
}

.card-btn:hover {
    opacity: 0.85;
}

/* =========================
   CONTACT US
========================= */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    align-items: stretch;
}

.contact-info,
.service-times {
    background: white;
    padding: 45px 40px;
    border-radius: 24px;
    border: 1px solid rgba(44,74,94,0.08);

    text-align: left;

    display: flex;
    flex-direction: column;
    gap: 18px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Titles inside cards */
.contact-info h3,
.service-times h3 {
    font-size: 1.6rem;
    color: #2C4A5E;
    margin-bottom: 5px;
    text-align: center;
}

/* Paragraph spacing improved */
.contact-info p,
.service-times p {
    color: #5A6570;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

/* Add subtle separators between items */
.contact-info p + p,
.service-times p + p {
    padding-top: 10px;
    border-top: 1px solid rgba(44,74,94,0.08);
}

/* SOCIAL LINKS */
.social-links {
    margin-top: 10px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-links a {
    padding: 10px 16px;
    background: #D36135;
    border-radius: 999px;
    color: white;
    font-size: 0.9rem;
    transition: 0.25s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

/* MOBILE IMPROVEMENT */
@media (max-width: 768px) {
    .contact-info,
    .service-times {
        padding: 30px;
    }
}

/* =========================
   WHATSAPP BUTTON
========================= */
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.2s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

/* =========================
   FOOTER
========================= */
footer {
    text-align: center;
    padding: 40px;
    background: #2C4A5E;
    color: rgba(255,255,255,0.8);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .hero-content h1 { font-size: 3.2rem; }
    .about-grid { grid-template-columns: 1fr; }
    .ministry-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    section { padding: 80px 0; }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    .ministry-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo { font-size: 1.4rem; }
    .hero-content h1 { font-size: 2rem; }
    .section-header h2 { font-size: 1.9rem; }
}
