* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #1d4f91;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* CONTAINER */
.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.top-bar {
    background: #1d4f91;
    color: #fff;
    font-size: 0.95rem;
}

.top-bar-content {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    justify-content: center;
    padding: 10px 0;
}

.top-bar-content a {
    color: #fff;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
}

.site-logo {
    max-height: 72px;
}

/* NAV */
.site-nav ul {
    list-style: none;
    display: flex;
    gap: 22px;
    align-items: center;
}

.site-nav a {
    color: #222;
    font-weight: 600;
    font-size: 0.98rem;
}

/* BUTTON (GLOBAL) */
a.button {
    display: inline-block;
    background: #c0392b;
    color: #fff !important;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

a.button:hover {
    background: #a93226;
    text-decoration: none !important;
}

/* BUTTON IN NAV */
.site-nav a.button {
    padding: 8px 14px;
    line-height: 1.2;
}

/* HAMBURGER MENU */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #1d4f91;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ANIMATION */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* HERO */
.hero {
    min-height: 60vh;
    background: url("../images/churchfront.jpg") center / cover no-repeat;
}

.hero-overlay {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.38);
}

.hero-content {
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    margin-bottom: 10px;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
}

/* SECTIONS */
.section {
    padding: 70px 0;
}

.section-alt {
    background: #f4f7fb;
}

.section-label {
    color: #1d4f91;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.center {
    text-align: center;
}

.section h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 18px;
    color: #163763;
}

.section-intro {
    max-width: 850px;
    margin: 0 auto 34px;
}

.text-column {
    max-width: 700px;
    margin: auto;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

/* CARDS */
.card-grid {
    display: grid;
    gap: 28px;
}

.ministries-grid {
    grid-template-columns: repeat(3, 1fr);
}

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.staff-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.staff-card img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
}

/* FOOTER */
.site-footer {
    background: #163763;
    color: #fff;
    text-align: center;
    padding: 26px 0;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: flex;
    }

    .site-nav {
        width: 100%;
        display: none;
    }

    .site-nav.active {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding-top: 10px;
    }

    .site-nav li {
        width: 100%;
        border-top: 1px solid #e5e5e5;
    }

    .site-nav a {
        display: block;
        padding: 12px 0;
        width: 100%;
    }

    .two-column,
    .ministries-grid,
    .staff-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 45vh;
    }

    .hero-content {
        padding: 50px 0;
    }

    .section {
        padding: 55px 0;
    }
}