/* Global Styles */
:root {
    --primary-color: #735d78;
    --secondary-color: #a288a6;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --white-color: #fff;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Lora', serif;
    --transition-speed: 0.3s;
    --border-radius: 8px;
    --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.07);
    --shadow-lifted: 0 10px 30px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.7;
    color: var(--dark-color);
    margin: 0;
    background-color: var(--white-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

h1, h2, h3 {
     font-family: var(--font-primary);
     font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -1px;
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.church-loader {
    width: 60px;
    height: 60px;
}

.church-loader path {
    stroke: var(--primary-color);
    stroke-width: 2;
    fill: transparent;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: draw-cross 2s ease-in-out infinite;
}

@keyframes draw-cross {
    0% {
        stroke-dashoffset: 100;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 100;
    }
}


.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}


/* Header & Navigation */
header {
    background-color: transparent;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

header.header-scrolled {
    background-color: var(--primary-color);
    box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--white-color);
    text-decoration: none;
    font-family: var(--font-primary);
    transition: color 0.4s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 65px; /* Increased logo size */
    width: auto;
    vertical-align: middle;
    transition: transform var(--transition-speed) ease;
}

.logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo .main-title {
    font-size: 1.5rem; /* Increased font size */
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.logo .sub-title {
    font-size: 1rem; /* Increased font size */
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}


.logo a:hover img {
    transform: scale(1.05);
}


header.header-scrolled .logo a {
    color: var(--white-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--white-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    padding-bottom: 5px;
    font-family: var(--font-primary);
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    border-bottom-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.nav-links a.active {
     border-bottom-color: var(--white-color);
}

header.header-scrolled .nav-links a {
    color: var(--white-color);
}

header.header-scrolled .nav-links a:hover {
    border-bottom-color: rgba(255, 255, 255, 0.7);
}

header.header-scrolled .nav-links a.active {
    border-bottom-color: var(--white-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--white-color);
    margin: 5px;
    transition: all 0.3s ease;
}

header.header-scrolled .hamburger div {
    background-color: var(--white-color);
}

/* Hero Section */
.hero {
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center center;
    height: 75vh; /* Reduced hero height */
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    position: relative; 
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
    text-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
    font-family: var(--font-primary);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn i {
    margin-right: 8px;
}

.btn:hover {
    background: #5a4a5e;
    border-color: #5a4a5e;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-light {
    background: var(--light-color);
    color: var(--dark-color);
    border: 2px solid var(--light-color);
}

.btn-light:hover {
    background: #ddd;
    border-color: #ddd;
}

/* General Section Styling */
section {
    padding: 80px 0;
}

.section-intro {
    max-width: 700px;
    margin: -15px auto 40px auto;
    text-align: center;
    font-size: 1.1rem;
}


/* Page Header */
.page-header {
    color: var(--white-color);
    padding: 120px 0 40px 0; /* Reduced padding */
    text-align: center;
    position: relative;
    background-color: var(--dark-color);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}


.page-header h1, .page-header p {
    position: relative;
    z-index: 3;
}

.page-header h1 {
    font-size: 2.8rem; /* Adjusted font size */
    margin: 0;
}

.page-header p {
    font-size: 1.1rem; /* Adjusted font size */
    color: var(--secondary-color);
}


/* Welcome Section */
.welcome-section {
    background: var(--white-color);
}
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}
.welcome-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
.welcome-image:hover img {
    transform: scale(1.03);
    box-shadow: var(--shadow-lifted);
}


/* Mission & Vision Section */
.mission-vision {
    background-color: var(--light-color);
    text-align: center;
}
.mission-vision .container {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}
.mission-vision h3 {
     font-size: 1.5rem;
     color: var(--primary-color);
}

/* Latest Sermon Section */
.latest-sermon-section {
    background: var(--white-color);
}
.sermon-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}
.sermon-video {
    aspect-ratio: 16 / 9;
}
.sermon-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-speed) ease;
}
.sermon-video:hover img {
    transform: scale(1.02);
}

.sermon-details h3 {
    font-size: 1.8rem;
    margin-top: 0;
}
.sermon-meta {
    color: #777;
    margin-bottom: 15px;
}

/* Our REAL Mission Section */
.our-mission-section {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
}
.our-mission-section h2 {
    color: var(--white-color);
}
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.mission-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.2);
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}
.mission-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}
.mission-item h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.mission-item h3 span {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Weekly Service Section */
.weekly-service {
    background-color: var(--white-color);
    text-align: center;
}
.weekly-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.service-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid transparent;
}
.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lifted);
    border-bottom-color: var(--primary-color);
}
.service-icon i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    transition: transform var(--transition-speed) ease;
}
.service-item:hover .service-icon i {
    transform: scale(1.1);
}
.service-item .service-time {
    font-weight: bold;
    margin-top: 15px;
    color: var(--primary-color);
}

/* Upcoming Events Section */
.upcoming-events-section {
    background-color: var(--light-color);
    text-align: center;
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.event-item {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    text-align: left;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-item:hover {
     transform: translateY(-8px);
     box-shadow: var(--shadow-lifted);
}
.event-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-speed) ease;
}
.event-item:hover img {
    transform: scale(1.05);
}
.event-details {
    padding: 25px;
}
.event-details h3 {
    margin-top: 0;
}
.event-date {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Gallery Preview Section */
.gallery-preview-section {
    background-color: var(--white-color);
    text-align: center;
}
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}
.gallery-item {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    aspect-ratio: 1 / 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Quote Section */
.quote-section {
    background: var(--primary-color) url('/images/quote-bg.jpg') center/cover no-repeat fixed;
    background-blend-mode: multiply;
    color: var(--white-color);
    text-align: center;
}
.quote-section blockquote {
    font-size: 1.8rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 20px auto;
    border: none;
    padding: 0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}
.quote-section .quote-citation {
    font-family: var(--font-primary);
}

/* CTA Section */
.cta-section {
    background-color: var(--dark-color);
    color: var(--white-color);
    text-align: center;
}
.cta-section h2 {
    color: var(--white-color);
}

/* Contact Page Styles */
.contact-section {
    background-color: var(--white-color);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-form-container h2, .contact-info-container h2 {
    text-align: left;
    margin-top: 0;
    font-size: 2rem;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-family: var(--font-primary);
    font-weight: 700;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    transition: all var(--transition-speed) ease;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(115, 93, 120, 0.2);
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}
.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}
.info-item h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}
.info-item p {
    margin: 0;
}
.info-item a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}
.info-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.map-section {
    padding: 0;
}
.map-section iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: 0;
}

/* Visit Us Section (Contact Page) */
.visit-us-section {
    background: var(--light-color);
    text-align: center;
}
.service-times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.service-time-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--primary-color);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
.service-time-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lifted);
}
.service-time-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}
.service-time-card .day {
    font-family: var(--font-primary);
    font-weight: 700;
    margin: 10px 0 5px 0;
}
.service-time-card .time {
    margin: 0;
    font-size: 1.1rem;
}


/* Gallery Page Styles */
.gallery-section {
    background: var(--white-color);
}
.gallery-filters {
    text-align: center;
    margin-bottom: 40px;
}
.filter-btn {
    background: none;
    border: 2px solid var(--light-color);
    color: var(--dark-color);
    padding: 10px 20px;
    margin: 5px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-family: var(--font-primary);
    font-weight: 700;
}
.filter-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}
.filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.gallery-grid-item {
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 1 / 1;
}
.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-grid-item:hover img {
    transform: scale(1.1);
}
.gallery-grid-item.hide {
    display: none;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.4s;
}
.lightbox.active {
    display: flex;
}
.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    animation: zoomIn 0.4s;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color var(--transition-speed) ease;
}
.lightbox-close:hover {
    color: var(--secondary-color);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

/* About Page Specific Styles */
.about-story-section {
    background: var(--white-color);
}

.focus-section {
    background: var(--light-color);
}
.focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.focus-grid h2 {
    text-align: left;
}
.focus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}
.focus-text ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.focus-text li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.focus-text i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.beliefs-section {
    background: var(--white-color);
}
.beliefs-section h2 {
    text-align: center;
    margin-bottom: 40px;
}
.beliefs-grid-about {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}
.beliefs-image {
    max-height: 500px;
}
.beliefs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}
.beliefs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.beliefs-list .belief-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}
.beliefs-list .belief-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
    width: 40px;
    text-align: center;
}
.beliefs-list .belief-item h3 {
    margin: 0 0 5px 0;
}
.beliefs-list .belief-item p {
    margin: 0;
}

.leadership-section {
    background: var(--light-color);
    text-align: center;
}
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.leader-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lifted);
}
.leader-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--white-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.leader-card h3 {
    margin-bottom: 5px;
}
.leader-card span {
    display: block;
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 15px;
}

.annual-programmes-section {
    background: var(--white-color);
    text-align: center;
}
.programmes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.programme-card {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--secondary-color);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
.programme-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lifted);
}
.programme-card h4 {
    margin: 0 0 5px 0;
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-weight: 700;
}
.programme-card h3 {
    margin: 0;
    font-size: 1.4rem;
}

/* Membership Page Styles */
.membership-process-section {
    background: var(--white-color);
    text-align: center;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.step-card {
    background: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    position: relative;
    border-top: 4px solid var(--primary-color);
    box-shadow: var(--shadow-soft);
}
.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
}
.step-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}
.step-card h3 {
    margin-bottom: 15px;
}
.step-card .btn {
    margin-top: 20px;
}

.eternal-life-section {
    background: var(--light-color);
    text-align: center;
}
.prayer-box {
    background: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px auto;
    max-width: 800px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-soft);
}

.partnership-plan-section {
    background: var(--white-color);
}
.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch; /* Make cards same height */
}
.partnership-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}
.partnership-card.featured {
    transform: scale(1.05);
    background: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
}
.partnership-card.featured h3,
.partnership-card.featured .partnership-amount {
    color: var(--white-color);
}
.partnership-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lifted);
}
.partnership-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}
.partnership-card.featured .partnership-icon {
    color: var(--white-color);
}
.partnership-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}
.partnership-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    flex-grow: 1; /* Pushes button to bottom */
}
.partnership-card li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.paypal-button-container {
    margin-top: auto;
    padding-top: 20px;
}
.partnership-card.featured .btn {
    background: var(--white-color);
    color: var(--primary-color);
    border-color: var(--white-color);
}
.partnership-card.featured .btn:hover {
    background: var(--light-color);
}


/* Footer */
footer {
    background: #2b2b2b;
    color: #ccc;
    padding-top: 50px;
    font-size: 0.9rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 40px;
    text-align: left;
}
.footer-grid h3 {
    font-size: 1.2rem;
    color: var(--white-color);
    margin-bottom: 15px;
}
.footer-services p {
    margin: 0 0 10px 0;
}
.footer-services strong {
    color: #fff;
}

.footer-contact .footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}
.footer-contact .footer-info-item i {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-top: 5px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.footer-contact .footer-info-item p {
    margin: 0;
    line-height: 1.6;
}
.footer-contact .footer-info-item a {
    color: #ccc;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}
.footer-contact .footer-info-item a:hover {
    color: var(--white-color);
}

.social-links {
    margin-top: 15px;
}
.social-links a {
    color: #ccc;
    margin-right: 15px;
    font-size: 1.3rem;
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}
.social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}
.footer-links a:hover {
    color: var(--white-color);
}
.footer-bottom {
    border-top: 1px solid #444;
}
.footer-bottom .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 15px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}
.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}
.footer-bottom a:hover {
    color: var(--white-color);
}


/* Responsive Styles */
@media (max-width: 992px) {
    .sermon-grid, .welcome-grid, .focus-grid, .beliefs-grid-about {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
     .sermon-video {
        margin-bottom: 30px;
    }
    .contact-info-container {
        margin-top: 60px;
    }
    .focus-image {
        margin-top: 30px;
    }
    .beliefs-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        width: 60%;
        height: 100vh;
        text-align: center;
        transition: right 0.4s ease-in-out;
        gap: 0;
        padding-top: 80px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
     .nav-links li {
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
     .nav-links a, header.header-scrolled .nav-links a {
         color: var(--white-color) !important;
    }
    .nav-links.nav-active {
        right: 0;
    }
    .hamburger {
        display: block;
        z-index: 1001;
    }
    .logo a {
        white-space: normal;
        text-align: left;
    }
    .logo .main-title {
        font-size: 1.1rem;
    }
    .logo .sub-title {
        font-size: 0.7rem;
    }
    .welcome-image {
        grid-row: 1;
        margin-bottom: 30px;
    }
     .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-card {
        grid-template-columns: 1fr;
        padding: 25px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom .container {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .focus-image {
        grid-row: 1;
    }
    .beliefs-image {
        grid-row: 1;
    }
}

