* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

.navbar {
    height: 80px;
    background: #063b91;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h2{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
}

.logo span {
    font-size: 13px;
    letter-spacing: 2px;
    color: #FFFFFF;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 50%;
}

.logo-text h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
    margin: 0;
}

.logo-text span {
    font-size: 13px;
    letter-spacing: 2px;
    color: #FFFFFF;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
}
.visit-button {
    border: 2px solid #0B2A5B;
    padding: 14px 20px;
    color: #FFFFFF;
}

/* Bible Verse Bar */
.verse-bar {
    background: #fdfeff;
    color: #0a2555;
    padding: 16px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.verse-bar p {
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
    line-height: 1.6;
}

.verse-bar a {
    color: #051c44;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

/* Our Story Section */
.our-story {
    background: #fdfeff;
    color: rgb(4, 13, 128);
    min-height: 500px;
    padding: 70px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left side */
.story-text {
    width: 50%;
}

.section-label {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: bold;
    margin-bottom: 20px;
}

.story-text h1 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 42px;
    line-height: 1.1;
    margin: 0 0 25px;
}

.story-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Right side */
.story-image {
    width: 45%;
}

.story-image img {
    width: 100%;
    display: block;
}

/* Fine-tuning the Our Story section */
.our-story {
    padding: 80px 8%;
}

.story-text h1 {
    font-size: 48px;
    line-height: 1.05;
}

.story-text p {
    max-width: 520px;
}

.story-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/*Sermon Section*/
.sermons {
    background-color: #0B2A5B;
    color: white;
    padding: 80px 8%;
    text-align: center;
}

.sermons .section-label {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: bold;
    margin-bottom: 15px;
}

.sermons h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 42px;
    margin-bottom: 42px;
}

.sermon-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.sermon-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.sermon-content p {
    font-size: 16px;
    line-height: 1.6;
}
/*Event Section*/
.events{
    background-color: #0B2A5B;
    color: white;
    padding: 80px 7%;
    text-align: center;
}

.events .section-label {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: bold;
    margin-bottom: 15px;
}

.events h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 42px;
    margin-bottom: 45px;
}

.events-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.event-card {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 30px;
    text-align: left;
    min-height: 200px;
}

.event-card h3 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.event-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.event-card span {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
}
/* Our Services Section */
.services {
    background-color: #0B2A5B;
    color: white;
    padding: 80px 7%;
    text-align: center;
}

.services .section-label {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: bold;
    margin-bottom: 15px;
}

.services h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 42px;
    margin-bottom: 45px;
}

.service-group {
    max-width: 1100px;
    margin: 0 auto;
}

.service-group-title {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 22px;
    margin-bottom: 25px;
}

.sunday-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.weekly-group {
    margin-top: 55px;
}

.weekly-services {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 25px 18px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card h4 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 17px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    margin: 5px 0;
    line-height: 1.5;
}

.service-card span {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* Give Section */
.give {
    position: relative;
    text-align: center;
    padding: 50px 7%;
    background: #FFFFFF;
    color: #0B2A5B;
    overflow: hidden;
}
.give .section-label {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: bold;
    margin-bottom: 8px;
}

.give h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 34px;
    margin: 0 0 12px;
    color: #0B2A5B;
}

.give p {
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #0B2A5B;
}

.payment-details {
    max-width: 600px;
    margin: 25px auto;
    padding: 22px;
    border: 1px solid rgba(11, 42, 91, 0.25);
}

.payment-details h3 {
    color: #0B2A5B;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 21px;
    margin-bottom: 15px;
}

.give-button {
    display: inline-block;
    padding: 13px 28px;
    margin-top: 8px;
    background: #0B2A5B;
    color: #FFFFFF;
    border: 1px solid #0B2A5B;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.give-button:hover {
    background: #FFFFFF;
    color: #0B2A5B;
}


/* Give - Mobile */
@media (max-width: 768px) {

    .give {
        padding: 45px 5%;
    }

    .give h2 {
        font-size: 28px;
    }

    .give p {
        font-size: 14px;
    }

    .payment-details {
        padding: 18px;
    }

    .payment-details h3 {
        font-size: 19px;
    }

    .give-button {
        padding: 12px 24px;
    }
}
/* Our Theme Verse */
.story-text h3 {
    color: #0a2555;
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.theme-verse-text {
    color: #0a2555;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.theme-verse-text span {
    font-weight: bold;
    font-size: 15px;
}

.give-button {
    display: inline-block;
    padding: 14px 30px;
    border: 1px solid rgba(7, 3, 65, 0.6);
    text-decoration: none;
    font-weight: bold;
}
.payment-details h3 {
color: #0B2A5B;
}
/*=========================
  HOME / HERO SECTION
  ========================= */

  .hero {
    position: relative;
    min-height: 82vh;
    background-image:
    url("Church-view.jpeg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3,20,55,0.85)0%,
     rgba(3,20,55,0.55)55%, 
     rgba(3,20,55,035)100%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 80px 8%;
    color: white;
  }

.hero-content h1 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 58px;
    line-height: 1.08;
    margin-bottom: 24px;
    color: white;
}

.hero-content h1 span {
    color: #f5d58a;
}

.hero-content p {
    font-size: 17px;
    line-height: 1.6;
    max-width: 650px;
    margin-bottom: 32px;
    color: white;
}

.hero-btn {
    display: inline-block;
    padding: 14px 26px;
    text-decoration: none;
    font-weight: bold;
    border: 3px;
    transition: 0.3s ease;
}

.primary-btn {
    background: #f5d58a;
    color: #063b91;
}

.primary-btn:hover {
    background: white;
}
.secondary-btn {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.secondary-btn:hover {
    background: white;
    color: #063b91;
}

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    font-size: 13px;
    letter-spacing: 3px;
}
@media (max-width:768px) {
    nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    nav a {
        font-size: 14px;
        white-space: nowrap;
    }
}
/* =========================
   COMPACT FOOTER
   ========================= */

.site-footer {
    background-color: #063b91;
    color: white;
    text-align: center;
    padding: 28px 20px 20px;
    margin-top: 0;
}

.site-footer h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: bold;
}

.social-title {
    margin: 0 0 18px;
    font-size: 15px;
}

/* Social media icons */

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
}

.social-links a {
    width: 44px;
    height: 44px;
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    text-decoration: none;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: 0.3s ease;
}

.social-links a svg {
    width: 23px;
    height: 23px;
    display: block;
}

.social-links a:hover {
    background-color: white;
    color: #063b91;
}

/* Divider */

.footer-line {
    width: 80%;
    max-width: 900px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 22px auto 14px;
}

/* Copyright */

.site-footer .copyright {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}
/* Developer Credit */
.developer-credit {
    margin-top: 25px;
    text-align: center;
    opacity: 0.85;
}

.developer-credit p {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.developer-credit span {
    display: block;
    font-size: 12px;
    margin-top: 3px;
    letter-spacing: 0.3px;
}
/* ==== MIBILE FIX ==== */
@media (max-width: 768px) {
    /* NAVIGATION */
    .navbar {
        height: auto;
        padding: 15px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .nav .logo {
        width: 100%;
        margin-bottom: 15px;
    }
    .navbar .logo h2 {
        font-size: 28px;
        line-height: 1;
    }
    .navbar nav {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .navbar nav a {
        font-size: 14px;
        white-space: nowrap;
        margin: 0;
    }
    
    /* OUR STORY */
    .our-story {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 50px 25px;
        box-sizing: border-box;
    }
    .story-text {
        width: 100%;
        box-sizing: border-box;
    }

    .story-text h1 {
        font-size: 58px;
        line-height: 0.95;
        margin-bottom: 35px;
    }

    .story-text p {
        font-size: 20px;
        line-height: 1.7;
    }
    .story-text h3 {
        font-size: 20px;
        margin-top: 25;
    }
    .theme-verse-text {
        font-size: 16px;
        line-height:1.6;
    }

    /* MOVE IMAGE BELOW TEXT */
    .story-image {
        position: static;
        width: 100%;
        margin-top: 40px;
    }
    .story-image img {
        position: static;
        width: 100%;
        height: auto;
        display: block;
    }

/* HOME /HERO - MOBILE FIX */
.hero {
    min-height: 75vh;
    background-image: url("Church-view.jpeg");
    background-size: cover;
}
.hero-overlay {
    background: rgba(3, 20, 55, 0.72);
}
.hero-content {
    max-width: 100%;
    padding: 70px 25px 80px;
}
.hero-content h1 {
    font-size: 42px;
    line-height: 1.05;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.hero-btn {
    padding: 14px 22px;
    font-size: 14px;
}
.scroll-indicator {
    bottom: 15px;
    font-size: 11px;
}
}

/*===== mobile event fix ===== */
@media (max-width: 768px) {

.events-container {
grid-template-columns: 1fr;
width: 100%;
gap: 20px;
}
.event-card {
width: 100%;
box-sizing: border-box;
padding: 25px;
}
}
.watch-service-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.site-footer {
    padding: 24px 15px 18px;
}

.site-footer h3 {
    font-size: 17px;
}

.social-title {
    font-size: 14px;
    margin-bottom: 15px;
}

.social-links {
    gap: 14px;
}

.social-links a {
    width: 40px;
    height: 40px;
}

.social-links a svg {
    width: 21px;
    height: 21px;
}

.footer-line {
    width: 90%;
    margin: 20px auto 12px;
}

.site-footer .copyright {
    font-size: 12px;
}
@media (max-width: 768px) {

    .services {
        padding: 60px 4%;
    }

    .services h2 {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .service-group-title {
        font-size: 18px;
        margin-bottom: 18px;
    }

    /* Keep all 3 Sunday services in one row */
    .sunday-services {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    /* Weekly services: 2 + 2 + 1 */
    .weekly-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .service-card {
        padding: 18px 8px;
        min-height: 100px;
    }

    .service-card h4 {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 12px;
    }

    .service-card span {
        font-size: 11px;
    }

    .weekly-group {
        margin-top: 40px;
    }

    /* Center the fifth card */
    .weekly-services .service-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 5px);
        justify-self: center;
    }
}

/* CHURCH LOGO - GIVE SECTION ONLY */
.give {
    position: relative;
    overflow: hidden;
}

.give::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background-image: url("church-logo.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translate(-50%, -50%);
    opacity: 0.10;
    z-index: 0;
    pointer-events: none;
}

.give > * {
    position: relative;
    z-index: 1;
}
/* ================================
   LARGE SCREEN / TV STYLING
   ================================ */

@media screen and (min-width: 1600px) {

    body {
        font-size: 22px;
    }

    .navbar {
        height: 100px;
        padding: 0 80px;
    }

    .logo h2 {
        font-size: 28px;
    }

    .logo span {
        font-size: 18px;
    }

    .navbar nav a {
        font-size: 20px;
        margin-left: 25px;
    }

    .hero {
        min-height: calc(100vh - 100px);
    }

    .hero-content {
        max-width: 1100px;
    }

    .hero-content h1 {
        font-size: 72px;
    }

    .hero-content p {
        font-size: 22px;
        max-width: 850px;
    }

    .hero-btn {
        padding: 16px 30px;
        font-size: 17px;
    }

    .our-story {
        padding: 100px 10%;
    }

    .story-text {
        max-width: 650px;
    }

    .story-text h1 {
        font-size: 56px;
    }

    .story-text p {
        font-size: 22px;
        line-height: 1.8;
    }

    .story-image img {
        max-width: 650px;
    }

    .sermons,
    .events,
    .give {
        padding: 100px 10%;
    }

    .sermons h2,
    .events h2,
    .give h2 {
        font-size: 48px;
    }

    .sermon-content {
        max-width: 1000px;
        margin: 40px auto;
    }

    .watch-service-image {
        max-width: 850px;
    }

    .events-container {
        max-width: 1400px;
        margin: 50px auto;
        gap: 35px;
    }

    .event-card {
        padding: 40px;
        font-size: 21px;
    }

    .give {
        min-height: 600px;
    }

    .payment-details {
        padding: 35px;
    }

    .give-button {
        padding: 18px 40px;
        font-size: 18px;
    }

    .site-footer {
        padding: 60px 10%;
        font-size: 21px;
    }
}
/* ================================
   LOCATION SECTION
   ================================ */

.location {
    background: #0B2A5B;
    color: white;
    text-align: center;
    padding: 90px 20px;
}

.location h2 {
    font-size: 42px;
    margin: 15px 0 25px;
}

.location p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.location-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background: #f5d58a;
    color: #0B2A5B;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.location-button:hover {
    background: white;
    color: #0B2A5B;
}
/* ================================
   MOBILE HAMBURGER MENU
   ================================ */

.menu-toggle {
    display: none;
}

/* PHONE */
@media screen and (max-width: 768px) {

    .navbar {
        height: 70px;
        padding: 0 15px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .logo h2 {
        font-size: 15px;
        white-space: nowrap;
    }

    .logo span {
        font-size: 10px;
    }
    .social-links a {
        width: 40px;
        height: 40px;
    }
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 30px;
        cursor: pointer;
        padding: 5px;
    }

    .navbar nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        width: 220px;
        background: #063b91;
        flex-direction: column;
        align-items: stretch;
        padding: 10px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .navbar nav.active {
        display: flex;
    }

    .navbar nav a {
        font-size: 14px;
        margin: 0;
        padding: 14px 20px;
        text-align: left;
        white-space: nowrap;
    }

    .navbar nav a:hover {
        background: #0B2A5B;
    }

    .visit-button {
        font-size: 13px !important;
        padding: 14px 20px !important;
    }
}
@media screen and (max-width: 768px) {

    .navbar {
        height: 70px;
        padding: 0 15px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .logo img {
        width: 42px;
        height: 42px;
    }

    .logo-text h2 {
        font-size: 15px;
        white-space: nowrap;
    }

    .logo-text span {
        font-size: 10px;
    }
}
/* NAVIGATION LOGO SIZE FIX */

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.navbar .logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.navbar .logo-text h2 {
    font-size: 18px;
    line-height: 1.1;
    margin: 0;
    white-space: nowrap;
}

.navbar .logo-text span {
    font-size: 11px;
    letter-spacing: 2px;
}

/* PHONE */

@media screen and (max-width: 768px) {

    .navbar .logo img {
        width: 40px;
        height: 40px;
    }

    .navbar .logo-text h2 {
        font-size: 14px;
    }

    .navbar .logo-text span {
        font-size: 9px;
    }
}
@media screen and (max-width:
                   768px) {
    .navbar .logo-text h2 {
        font-size: 12px;
        white-space: normal;
        line-height: 1.1;
    }
    .navbar .logo-text {
        max-width:230px;
    }
}
/* =========================
   LEADERSHIP SECTION
========================= */

.leadership {
    background: linear-gradient(135deg, #f4f8ff 0%, #ffffff 50%, #eef5ff 100%);
    color: #063b91;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.leadership::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(6, 59, 145, 0.05);
    border-radius: 50%;
    top: -150px;
    left: -150px;
}

.leadership::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(245, 213, 138, 0.10);
    border-radius: 50%;
    bottom: -140px;
    right: -120px;
}

.leadership-container {
    max-width: 1050px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.leadership h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.leadership-intro {
    font-size: 16px;
    margin-bottom: 35px;
    color: #333;
}


/* =========================
   LEADERS
========================= */

.leaders {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 35px;
    flex-wrap: nowrap;
}

.leader-card {
    width: 260px;
    flex: 0 0 260px;
    text-align: center;
    background: #ffffff;
    padding: 15px 15px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(6, 59, 145, 0.10);
}

.leader-card img {
    width: 230px;
    height: 260px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    margin: 0 auto 15px;
}

.leader-card h3 {
    font-size: 19px;
    margin: 8px 0;
    color: #063b91;
}

.leader-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
}


/* =========================
   LEADERSHIP MESSAGE
========================= */

.leadership-message {
    max-width: 800px;
    margin: 55px auto 0;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.leadership-message h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #063b91;
}

.leadership-message p {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .leadership {
        padding: 45px 15px;
    }

    .leadership h2 {
        font-size: 26px;
    }

    .leaders {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .leader-card {
        width: 100%;
        max-width: 300px;
        flex: none;
    }

    .leader-card img {
        width: 250px;
        height: 280px;
        object-fit: contain;
    }

    .leadership-message {
        margin-top: 45px;
    }

    .leadership-message h2 {
        font-size: 23px;
    }

    .leadership-message p {
        font-size: 15px;
        line-height: 1.7;
    }
}
.our-story::before {
    width: 380px;
    height: 380px;
    opacity: 0.045;
}

.leadership::before {
    width: 400px;
    height: 400px;
    opacity: 0.045;
}
/* =========================
   ABOUT + LEADERSHIP WATERMARK
========================= */

.our-story {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}
.our-story .story-text,
.our-story .story-image {
    position: relative;
    z-index: 1;
}
.leadership {
    position: relative;
    overflow: hidden;
}

.leadership::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    background-image: url("church-logo.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.055;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.leadership-container {
    position: relative;
    z-index: 1;
}
/* =========================
   ABOUT US LOGO WATERMARK
========================= */

.our-story {
    position: relative;
    overflow: hidden;
}

.our-story::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background-image: url("church-logo.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.08;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.our-story .story-text,
.our-story .story-image {
    position: relative;
    z-index: 1;
}
.memory-photos {
    background: linear-gradient(135deg, #063b91 0%, #0759c9 50%, #063b91 100%);
    color: white;
    padding: 70px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Gold church logo watermark */
.memory-photos::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    background-image: url("church-logo.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.07;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Gold decorative glow */
.memory-photos::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(245, 213, 138, 0.10);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
    pointer-events: none;
}

.memory-container {
    max-width: 900px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.memory-photos .section-label {
    color: #f5d58a;
    margin-bottom: 12px;
}

.memory-photos h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.memory-intro {
    max-width: 650px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================
   MEMORY PHOTO GRID
========================= */

.memory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 820px;
    margin: 0 auto;
}

.memory-card {
    background: white;
    padding: 12px 12px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.memory-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.memory-card h3 {
    color: #063b91;
    font-size: 17px;
    margin: 15px 5px 0;
    line-height: 1.4;
}


/* =========================
   MOBILE MEMORY PHOTOS
========================= */

@media (max-width: 768px) {

    .memory-photos {
        padding: 50px 12px;
    }

    .memory-photos h2 {
        font-size: 26px;
    }

    .memory-intro {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .memory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        width: 100%;
    }

    .memory-card {
        padding: 7px 7px 12px;
        border-radius: 9px;
    }

    .memory-card img {
        width: 100%;
        height: 125px;
        border-radius: 6px;
    }

    .memory-card h3 {
        font-size: 13px;
        margin: 9px 2px 0;
        line-height: 1.3;
    }

    .memory-photos::before {
        width: 400px;
        height: 400px;
        opacity: 0.05;
    }
}
/* =========================
   FORCE MEMORY PHOTO GRID
========================= */

.memory-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 25px !important;
    width: 100% !important;
    max-width: 820px !important;
    margin: 0 auto !important;
}

.memory-card {
    width: 100% !important;
    display: block !important;
}

.memory-card img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    display: block !important;
}

/* Phone: still 2 columns */
@media (max-width: 768px) {

    .memory-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .memory-card img {
        height: 120px !important;
    }

    .memory-card h3 {
        font-size: 12px !important;
        line-height: 1.3 !important;
    }
}
/* =================================
   LEADERSHIP - PHONE LAYOUT
================================= */

@media screen and (max-width: 768px) {

    .leaders {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        align-items: start;
    }

    /* Reverend stays alone across the full width */
    .leader-card:first-child {
        grid-column: 1 / -1;
        width: 100% !important;
        max-width: 280px;
        margin: 0 auto;
    }

    /* Make Reverend photo smaller */
    .leader-card:first-child img {
        width: 210px !important;
        height: 230px !important;
        margin: 0 auto 12px;
    }

    /* Senior Pastor cards */
    .leader-card:nth-child(2),
    .leader-card:nth-child(3) {
        width: 100% !important;
        max-width: none !important;
        padding: 8px !important;
    }

    .leader-card:nth-child(2) img,
    .leader-card:nth-child(3) img {
        width: 100% !important;
        height: 170px !important;
        object-fit: cover !important;
    }

    .leader-card h3 {
        font-size: 14px !important;
        line-height: 1.3;
    }

    .leader-card p {
        font-size: 12px !important;
    }
}
.our-story {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}

.leadership {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    clear: both !important;
}

.memory-photos {
    display: block !important;
    width: 100% !important;
    clear: both !important;
}
/* =========================================
   ABOUT US - BLUE & GOLD DESIGN
========================================= */

.our-story {
    background: linear-gradient(
        135deg,
        #063b91 0%,
        #0759c9 50%,
        #0B2A5B 100%
    ) !important;

    padding: 80px 20px !important;
    position: relative;
    overflow: hidden;
}

/* Main text container */
.our-story .story-text {
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 45px 50px !important;

    background: rgba(255, 255, 255, 0.96) !important;
    border-radius: 14px !important;

    border: 2px solid rgba(245, 213, 138, 0.8) !important;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.25),
        0 0 0 6px rgba(245, 213, 138, 0.12) !important;

    position: relative;
    z-index: 2;
}

/* Gold decorative line at the top */
.our-story .story-text::before {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    background: #f5d58a;
    margin-bottom: 25px;
    border-radius: 5px;
}

/* ABOUT US */
.our-story .section-label {
    color: #063b91 !important;
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: bold;
}

/* Main headings */
.our-story .story-text h2 {
    color: #063b91 !important;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 42px;
    margin-bottom: 15px;
}

/* Normal text */
.our-story .story-text > p:not(.section-label):not(.theme-verse-text) {
    color: #333 !important;
    max-width: 700px;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Theme verse heading */
.our-story .story-text h3 {
    color: #063b91 !important;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 23px;
    padding-left: 15px;
    border-left: 4px solid #f5d58a;
    margin: 35px 0 15px;
}

/* Theme verse */
.our-story .theme-verse-text {
    background: linear-gradient(
        135deg,
        rgba(245, 213, 138, 0.16),
        rgba(245, 213, 138, 0.05)
    ) !important;

    border: 1px solid rgba(245, 213, 138, 0.8) !important;
    border-left: 5px solid #f5d58a !important;

    padding: 25px 30px !important;
    border-radius: 0 10px 10px 0 !important;

    color: #0B2A5B !important;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 18px;
    line-height: 1.8;
}

/* Bible reference */
.our-story .theme-verse-text span {
    color: #063b91 !important;
    font-weight: bold;
}


/* =========================================
   PHONE
========================================= */

@media screen and (max-width: 768px) {

    .our-story {
        padding: 50px 15px !important;
    }

    .our-story .story-text {
        width: 100% !important;
        padding: 30px 22px !important;
        border-radius: 12px !important;
    }

    .our-story .story-text h2 {
        font-size: 32px;
    }

    .our-story .story-text > p:not(.section-label):not(.theme-verse-text) {
        font-size: 16px;
        line-height: 1.7;
    }

    .our-story .story-text h3 {
        font-size: 20px;
    }

    .our-story .theme-verse-text {
        padding: 20px !important;
        font-size: 16px;
    }
}

/* Sermons Section */
.sermons {
    background-color: #FFFFFF;
    color: #0B2A5B;
    padding: 45px 7%;
    text-align: center;
}

.sermons-container {
    max-width: 750px;
    margin: 0 auto;
}

.sermons .section-label {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: bold;
    margin-bottom: 8px;
}

.sermons h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 34px;
    margin: 0 0 8px;
}

.sermons-intro {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 20px;
}

.sermons-dropdown {
    width: 100%;
    text-align: left;
}

.sermons-dropdown summary {
    background-color: #0B2A5B;
    color: white;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1.5px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
}

.sermons-dropdown summary::-webkit-details-marker {
    display: none;
}

.sermons-dropdown summary span {
    font-size: 20px;
}

.sermons-list {
    border: 1px solid #0B2A5B;
    border-top: none;
}

.sermons-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 14px 18px;
    color: #0B2A5B;
    background-color: #FFFFFF;
    text-decoration: none;
    border-bottom: 1px solid rgba(11, 42, 91, 0.2);
    transition: background-color 0.3s ease;
}

.sermons-list a:last-child {
    border-bottom: none;
}

.sermons-list a:hover {
    background-color: rgba(11, 42, 91, 0.08);
}

.sermons-list strong {
    font-size: 14px;
}

.sermons-list span {
    font-size: 12px;
    font-weight: bold;
    opacity: 0.75;
}


/* Sermons - Mobile */
@media (max-width: 768px) {

    .sermons {
        padding: 40px 5%;
    }

    .sermons h2 {
        font-size: 28px;
    }

    .sermons-intro {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .sermons-dropdown summary {
        padding: 14px 16px;
        font-size: 13px;
    }

    .sermons-list a {
        display: block;
        padding: 14px 16px;
    }

    .sermons-list strong {
        display: block;
        margin-bottom: 4px;
    }

    .sermons-list span {
        display: block;
        font-size: 12px;
    }
    #main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
}

#main-nav.active {
    display: flex;
}

#main-nav a {
    width: 100%;
    padding: 12px 0;
    text-align: center;
    white-space: nowrap;
}

#main-nav a:not(:last-child)::after {
    display: none;
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 5px;
}
}
/* =========================================
   SERMONS + GIVE FINAL DESKTOP POLISH
   ========================================= */

@media screen and (min-width: 769px) {

    /* SERMONS */
    .sermons {
        padding: 55px 20px;
    }

    .sermons-container {
        max-width: 680px;
    }

    .sermons h2 {
        font-size: 34px;
        margin-bottom: 8px;
    }

    .sermons-intro {
        max-width: 560px;
        margin: 0 auto 20px;
    }

    .sermons-dropdown {
        max-width: 650px;
        margin: 0 auto;
    }


    /* GIVE */
    .give {
        min-height: auto;
        padding: 55px 20px;
    }

    .give h2 {
        font-size: 34px;
    }

    .give p {
        max-width: 550px;
    }

    .payment-details {
        max-width: 550px;
        margin: 22px auto;
        padding: 20px;
    }

    .give-button {
        padding: 13px 28px;
        font-size: 13px;
    }

}
/* =========================================
   MAIN NAVIGATION - DESKTOP
========================================= */

#main-nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

#main-nav a {
    position: relative;
    padding: 0 12px;
    white-space: nowrap;
}

/* Vertical divider */
#main-nav a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background: rgba(255, 255, 255, 0.6);
}

/* =========================================
   HAMBURGER - DESKTOP
========================================= */

.menu-toggle {
    display: none;
}


/* =========================================
   MOBILE NAVIGATION
========================================= */

@media screen and (max-width: 768px) {

    .navbar {
        position: relative;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 30px;
        cursor: pointer;
        padding: 5px 8px;
        margin-left: auto;
        z-index: 1001;
    }

    #main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        background: #063b91;
        z-index: 1000;
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
    }

    #main-nav.active {
        display: flex;
    }

    #main-nav a {
        width: 100%;
        padding: 13px 10px;
        text-align: center;
        white-space: nowrap;
        box-sizing: border-box;
    }

    #main-nav a:not(:last-child)::after {
        display: none;
    }
}
