/* Staff heading centering */
.staff-heading {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 24px;
    font-size: 2rem;
    color: #183153;
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    margin: 0;
    background: #fff;
    color: #333;
    line-height: 1.7;
    font-weight: 300;
}

/* Typography System */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin: 0;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin: 0 0 1.5rem 0;
}

/* Main Navigation Styles - Fixed & Minimal */
.main-nav {
    background: #0A1E40 !important;
    color: #333;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: fixed;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 20px;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.nav-logo {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    margin-left: 0;
    justify-self: start;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link.active,
.nav-link:hover {
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-self: end;
}

.nav-search {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-search:hover {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* Give Button - Rounded, button with blue background and white text, reverses on hover */
.nav-give {
    background: #007bff;
    color: #fff;
    border: 2px solid #007bff;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-give:hover {
    background: #fff;
    color: #007bff;
    border-color: #007bff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.nav-menu-overlay {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 40px 40px;
    z-index: 30;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    animation: fadeInMenu 0.3s ease;
}

.nav-menu-overlay.active {
    display: block;
}

.nav-menu-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
    color: #333;
    font-size: 1rem;
    font-weight: 400;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-menu-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 200px;
}

.nav-menu-group .nav-menu-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-menu-btn {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    border-radius: 0;
    padding: 12px 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu-btn:hover {
    background: #007bff;
    color: #fff;
}

@keyframes fadeInMenu {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Header Styles - Larger & Cleaner */
.hero-header {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 60px;
    margin-bottom: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/NMC_header.jpg') center/cover no-repeat;
    z-index: 1;
    width: 100%;
    height: 100%;
    filter: brightness(1.0) contrast(1.0);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding: 6rem 0 2rem 8vw;
    width: 100%;
    max-width: 1400px;
}

.hero-title {
    color: #fff;
    font-size: 4rem;
    font-weight: 200;
    line-height: 1.2;
    margin: 0 0 3rem 0;
    text-align: left;
    letter-spacing: 2px;
    max-width: 700px;
}

/* CTA Buttons - Rounded corners with different color schemes */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons a {
    padding: 15px 40px;
    border: 2px solid #007bff;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* First button: "Join Us For Services" - Blue background, white text initially */
.cta-buttons a:first-child {
    background: #007bff;
    color: #fff;
}

.cta-buttons a:first-child:hover {
    background: #fff;
    color: #007bff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

/* Second button: "Stream Online" - White background, blue text initially (reversed) */
.cta-buttons a:last-child {
    background: #fff;
    color: #007bff;
}

.cta-buttons a:last-child:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

/* Content Section Base Styles - UPDATED */
.content-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 10px 0;
    /* Reduced from 20px to 10px */
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Welcome Banner Styles - UPDATED */

.welcome-banner-container {
    background: transparent;
    border-radius: 0;
    max-width: 1400px;
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 40px;
    gap: 80px;
}

.welcome-banner-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.welcome-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 600px;
}

.welcome-banner-text span {
    font-size: 2.2rem;
    color: #333;
    font-weight: 300;
    text-align: left;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.welcome-banner-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
}

.welcome-banner-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    opacity: 0.8;
}

/* Banner Carousel Styles - UPDATED */
.banner-carousel {
    background: #fff;
    padding: 15px 0;
    /* Reduced from 25px to 15px */
}

/*
.swiper-container {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}
*/
.swiper-wrapper {
    display: flex !important;
    width: 100% !important;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.swiper-slide {
    width: 100% !important;
    flex-shrink: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.swiper-slide .slide-content {
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: center;
}

.carousel-item {
    flex: 1;
    max-width: 960px;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.carousel-img {
    width: 960px;
    height: 540px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(1.05) contrast(1.02);
}

/* Pagination Dots - Fixed and Visible */
.swiper-pagination {
    position: absolute !important;
    bottom: -20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 10px !important;
    z-index: 1000 !important;
}

.swiper-pagination-bullet:hover {
    transform: scale(1.1) !important;
}

/* Feature Blocks - UPDATED */
.content-blocks {
    padding: 25px 0;
    /* Reduced from 25px to 15px */
    background: #f8f9fa;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%) + 24px;
    margin-right: calc(-50vw + 50%) + 24px;
    margin-top: 40px;
    margin-bottom: 75px;
    box-sizing: border-box;
}

.content-blocks h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 75px;
    color: #333;
    letter-spacing: 0.5px;
}

.feature-blocks-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.feature-block {
    position: relative;
    background: #333;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.feature-block,
.feature-block h2,
.feature-block p,
.feature-block a,
.feature-block .feature-link {
    color: #fff !important;
}

.feature-block,
.feature-block * {
    color: #fff !important;
}

.feature-block:hover {
    background: #242e25 !important; /* custom green shade */
    background-image: none !important;
    transition: background 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* Background images for each block - you'll need to add these images */
.feature-block.newhere {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/greeting.jpg');
}

.feature-block.events {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/upcoming_events.jpg');
}

.feature-block.serve {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/liturgist.jpg');
}

.feature-block.prayer {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/love_God.png');
}

.feature-block:hover {
    background: #4e5e51 !important; /* solid green, matches Bootstrap's success color */
    background-image: none !important;
    transition: background 0.3s cubic-bezier(0.4,0,0.2,1);
}


.feature-link {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-block;
}


.feature-link:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border-color: rgba(255, 255, 255, 0.9);
}

/* Weekly Bulletin Section - UPDATED */
.weekly-bulletin-section {
    padding: 15px 0;
    /* Reduced from 20px to 15px */
    background: #fff;
}

.weekly-bulletin-container {
    background: #f8f9fa;
    border-radius: 0;
    max-width: 1400px;
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    margin: 0 auto;
    box-sizing: border-box;
    gap: 20px;
}

.weekly-bulletin-content {
    z-index: 2;
    flex: 1;
}

.weekly-bulletin-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 1rem 0;
    letter-spacing: 0.5px;
}

.weekly-bulletin-desc {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

.weekly-bulletin-svg {
    flex: 1;
    max-width: 400px;
    height: auto;
    opacity: 0.7;
}

/* Sermon Section - UPDATED */
.sermon {
    padding: 20px 0;
    /* Reduced from 20px to 15px */
    background: #fff;
}

.sermon-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.sermon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.sermon-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    color: #333;
    letter-spacing: 0.5px;
}

.sermon-link {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.sermon-link:hover {
    background: #007bff;
    color: #fff;
}

.sermon-inner-flex {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.sermon-image-wrapper {
    flex: 0 0 55%;
}

.sermon-image {
    width: 100%;
    max-width: 640px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.1);
}

.sermon-quote {
    flex: 0 0 calc(40% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 10;
    position: relative;
}

.sermon-quote-mark {
    font-size: 3rem;
    color: #007bff;
    line-height: 1;
    margin-bottom: 1.5rem;
    font-family: serif;
    opacity: 0.6;
}

.sermon-quote-text {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 2rem 0;
    color: #333;
    font-weight: 300;
}

.sermon-quote-ref {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    border-top: 2px solid #007bff;
    padding-top: 1.5rem;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Two-Column Content Blocks - Minimal */
.content-blocks-row {
    display: flex;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.content-block {
    flex: 1;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 80px 60px;
    overflow: hidden;
    background: #333;
}

.content-block-left {
    background: #2c3e50;
}

.content-block-right {
    background: #34495e;
}

.content-block-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 500px;
}

.content-block-inner h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.content-block-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.content-block-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 30px;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.content-block-btn:first-child {
    margin-top: 0;
}

.content-block-btn:hover {
    background: #fff;
    color: #333;
}

.content-block-overlay {
    display: none;
}

/* Footer Styles - Clean & Minimal */
.footer {
    background-color: #0A1E40;
    color: white;
    padding: 80px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-col-nav .footer-list,
.footer-list-info,
.footer-list-ministry {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-nav .footer-list li,
.footer-list-info li {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 1.125rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.footer-list-ministry li {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 1.125rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.footer-col-nav .footer-list li:hover,
.footer-list-info li:hover,
.footer-list-ministry li:hover {
    opacity: 1;
}

.footer-col-info .footer-title,
.footer-col-ministry .footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col-join {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-join-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
}

.footer-join-icon-square {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-join-icon {
    font-size: 18px;
}

.footer-join-label-bold {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-join-label-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 10px 0;
}

.footer-col-contact {
    background-color: #007bff;
    padding: 30px;
    border-radius: 0;
    position: relative;
}

.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-contact-logo {
    width: 45px;
    height: 45px;
    background-color: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-logo-inner {
    color: #007bff;
    font-weight: 700;
    font-size: 14px;
}

.footer-contact-title {
    font-weight: 600;
    font-size: 1rem;
}

.footer-col-contact>div {
    margin-bottom: 15px;
    line-height: 1.5;
    font-weight: 300;
}

.footer-copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 25px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

/* Nicholasville Methodist link styles */
.nav-home-link {
    color: #fff !important;
    font-weight: bold;
    text-decoration: none;
    transition: none;
}

.nav-home-link:hover,
.nav-home-link:focus,
.nav-home-link:active {
    color: #fff !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-container {
        padding: 0 20px;
    }

    .nav-inner {
        padding: 1rem 30px;
    }

    .hero-overlay {
        padding: 5rem 0 5rem 6vw;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .welcome-banner-inner {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .welcome-banner-text span {
        font-size: 2rem;
        text-align: center;
    }

    .weekly-bulletin-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .feature-blocks-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .feature-block {
        min-height: 280px;
        padding: 35px;
    }

    .feature-block h2 {
        font-size: 1.8rem;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }

    .footer-col-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .hero-header {
        min-height: 60vh;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-overlay {
        padding: 4rem 0 4rem 5vw;
    }

    .nav-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .nav-links {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-actions {
        justify-self: center;
    }

    /* UPDATED responsive spacing */
    .content-section {
        padding: 8px 0;
        /* Further reduced for mobile */
    }

    .content-blocks,
    .banner-carousel,
    .weekly-bulletin-section,
    .sermon {
        padding: 12px 0;
    }

    .welcome-banner-section {
        padding: 30px 0;
    }

    .sermon-inner-flex {
        flex-direction: column;
        gap: 40px;
    }

    .sermon-image-wrapper,
    .sermon-quote {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-container {
        padding: 0 20px;
    }

    .swiper-container {
        padding: 0 60px !important;
    }

    .swiper-slide .slide-content {
        flex-direction: column;
        gap: 30px;
    }

    .carousel-item {
        max-width: 100%;
    }

    .carousel-img {
        height: 350px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px !important;
        height: 40px !important;
        margin-top: -20px !important;
        font-size: 1rem !important;
    }

    .swiper-button-prev {
        left: 10px !important;
    }

    .swiper-button-next {
        right: 10px !important;
    }

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

    .welcome-banner-text span {
        font-size: 1.8rem;
    }

    .weekly-bulletin-title {
        font-size: 2rem;
    }

    .sermon-title {
        font-size: 2rem;
    }

    .content-block-inner h2 {
        font-size: 1.8rem;
    }

    .feature-blocks-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .feature-block {
        min-height: 250px;
        padding: 30px;
    }

    .feature-block h2 {
        font-size: 1.6rem;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    /* UPDATED responsive spacing */
    .content-section {
        padding: 5px 0;
        /* Minimal spacing on small screens */
    }

    .content-blocks,
    .banner-carousel,
    .weekly-bulletin-section,
    .sermon {
        padding: 10px 0;
    }

    .welcome-banner-section {
        padding: 25px 0;
    }

    .feature-block {
        padding: 40px 30px;
        min-height: 250px;
    }

    .feature-block h2 {
        font-size: 1.5rem;
    }

    .content-blocks-row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 15px;
    }

    .swiper-container {
        padding: 0 50px !important;
    }

    .carousel-img {
        height: 280px;
    }

    .hero-overlay {
        padding: 3rem 0 3rem 4vw;
    }

    .welcome-banner-text span {
        font-size: 1.5rem;
    }

    .weekly-bulletin-container {
        padding: 20px 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer {
        padding: 20px 0 20px;
    }
}