:root {
    --primary: #006064;
    /* Teal - Top Bar */
    --secondary: #0F172A;
    /* Dark Navy - Hero/Footer */
    --accent: #D32F2F;
    /* Red - Donate Button */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f4f6f8;
    --gold: #FFD700;
    /* For 'Year of Expansion' text or accents */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-donate {
    background: var(--accent);
    color: white;
}

.btn-donate:hover {
    background: #b71c1c;
    color: white;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #004d40;
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
    font-family: var(--font-heading);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    color: white;
    margin-left: 15px;
    font-size: 1.1rem;
}

.contact-info i {
    margin-right: 5px;
}

.contact-info span {
    margin-right: 15px;
}

/* Header & Nav */
header {
    background: var(--secondary);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    order: 2;
}

.logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-right: 12px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    order: 1;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: white;
}

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

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: var(--secondary);
    color: white;
    text-align: center;
    padding: 120px 20px;
    background-image: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1510915361894-db8b60106cb1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero h2 {
    font-size: 4rem;
    /* Large year */
    color: white;
    margin-bottom: 20px;
}

.hero .sub-headline {
    font-size: 2rem;
    color: #4DB6AC;
    /* Teal-ish Green for 'Year of Expansion' */
    margin-bottom: 30px;
    font-weight: 600;
}

.hero .quote {
    font-style: italic;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Stats / Highlights - Like reference products/media strip if any */
/* We'll use this for 'Ministries' or 'About' */

/* Image Overlap Section (Pastor) */
.pastor-meet {
    background: linear-gradient(to bottom, var(--secondary) 150px, white 150px);
    padding-bottom: 80px;
}

.pastor-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align images to bottom if multiple */
    gap: 20px;
    flex-wrap: wrap;
    margin-top: -50px;
    /* Pull up into hero a bit or just sit nicely */
}

.pastor-image-card {
    /* Mimicking the cutout look if possible, otherwise card */
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pastor-image-card img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Banner / Revival Section */
.revival-banner {
    background: black;
    color: var(--gold);
    text-align: center;
    padding: 40px;
    margin: 40px 0;
    font-family: 'Cinzel', serif;
    /* Or playful serif */
}

.revival-banner h3 {
    color: var(--gold);
    font-size: 2.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Content Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--bg-light);
}

/* Footer */
footer {
    background: var(--primary);
    /* Teal footer like top bar/reference? Or Navy? Ref is Teal/Dark */
    color: white;
    padding: 60px 0 20px;
}

.footer h4 {
    color: white;
    text-transform: uppercase;
    font-size: 1.2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        background: white !important;
    }

    nav {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 10px 0 !important;
    }

    .nav-links {
        display: flex !important;
        gap: 8px !important;
        order: 1 !important;
        margin: 0 !important;
    }

    .nav-links li {
        margin: 0 !important;
    }

    .nav-links a {
        font-size: 0.7rem !important;
        padding: 5px 8px !important;
        border: 1px solid var(--secondary);
        border-radius: 4px;
        background: rgba(15, 23, 42, 0.05);
        /* Very light navy bg */
        white-space: nowrap !important;
        color: var(--secondary) !important;
    }

    .mobile-toggle {
        display: none !important;
    }

    .logo {
        flex: 1 !important;
        min-width: 0 !important;
        order: 2 !important;
        justify-content: flex-end !important;
        text-align: right !important;
    }

    .logo span {
        color: var(--secondary) !important;
        font-size: 0.85rem !important;
        margin-right: 5px !important;
        margin-left: 0 !important;
        white-space: normal !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        line-height: 1.1 !important;
        text-align: right !important;
    }

    .logo img {
        height: 35px !important;
        flex-shrink: 0 !important;
    }

    header .container {
        padding: 0 10px !important;
    }

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

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

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Swiper Carousel */
.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Bible Section */
.verse-display {
    background: #fff;
    border-left: 4px solid var(--primary);
    padding: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.bible-controls select {
    background: white;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 768px) {
    #bible-controls {
        flex-direction: column;
    }

    #bible-controls select,
    #bible-controls button {
        width: 100%;
    }
}