:root {
    --primary-color: #000;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #000;
    --text-light: #000;
    --bg-light: #f8f9fa;
    --transition-speed: 0.3s;
}

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

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

/* Header & Navigation */
.header-main {
    position: relative;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0; 
}

.hamburger-menu:hover{
    transform: scale(1.1);
}
.hamburger-menu {
    transition: transform var(--transition-speed);
    background: #22ADF6;
    border: none;
    width: 45px;
    height: 45px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    border-radius: 50%;
}

.hamburger-menu span {
    transition: transform var(--transition-speed);
        display: block;
    width: 20px;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transition: all var(--transition-speed);
}

.hamburger-menu span:nth-child(1) {
    top: 15px;
}

.hamburger-menu span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-menu span:nth-child(3) {
    bottom: 15px;
}

.hamburger-menu.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    margin: 0;
    border-radius: 0px;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
}

/* Two Column Section */
.two-column-section {
    background-color: white;
}

 

.section-title span{font-weight: bolder;}
.section-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.info-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.info-text {
    font-size: 1rem;
    color: var(--text-dark);
}

.highlight {
    font-style: italic;
}

/* Events Slider */
.events-slider-section {
    padding: 4rem 0;
}

.section-heading span{
    font-weight: bolder !important;
}
.section-heading {
    font-size: 2.5rem;
    font-weight: 400 !important;
}

.eventsSwiper {
    padding:  0;
    padding-bottom: 4rem;
}

.event-card {
    background: #E4E4E4;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
    transition: all var(--transition-speed);
    opacity: 0.6;
    transform: scale(0.9);
}

.event-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.swiper-slide-active .event-card {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0);
}

/* Pastors Section */
 .section-cta{
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    width: calc(100% - 20px);
    margin: auto;
    height: 80vh;
 }
.vertical-align {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}
.btn{border-radius: 30px !important;}
.btn-custom {
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all var(--transition-speed);
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer-main {
    background-color: #1a1a1a !important;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-description,
.footer-info {
    font-size: 0.95rem;
    color: #b0b0b0;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: color var(--transition-speed);
}

.social-link:hover {
    color: white;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 0.9rem;
    color: #808080;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar-content {
        width: 80%;
    }

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

    .section-heading {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* Margin Bottom */
.mb-0 {
    margin-bottom: 0px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-130 {
    margin-bottom: 130px;
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-150 {
    margin-bottom: 150px;
}

.mb-160 {
    margin-bottom: 160px;
}

.mb-170 {
    margin-bottom: 170px;
}

.mb-180 {
    margin-bottom: 180px;
}

.mb-190 {
    margin-bottom: 190px;
}

.mb-200 {
    margin-bottom: 200px;
}

/* Margin Top */
.mt-0 {
    margin-top: 0px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-110 {
    margin-top: 110px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-130 {
    margin-top: 130px;
}

.mt-140 {
    margin-top: 140px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-160 {
    margin-top: 160px;
}

.mt-170 {
    margin-top: 170px;
}

.mt-180 {
    margin-top: 180px;
}

.mt-190 {
    margin-top: 190px;
}

.mt-200 {
    margin-top: 200px;
}

/* Padding Bottom */
.pb-0 {
    padding-bottom: 0px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pb-140 {
    padding-bottom: 140px;
}

.pb-150 {
    padding-bottom: 150px;
}

.pb-160 {
    padding-bottom: 160px;
}

.pb-170 {
    padding-bottom: 170px;
}

.pb-180 {
    padding-bottom: 180px;
}

.pb-190 {
    padding-bottom: 190px;
}

.pb-200 {
    padding-bottom: 200px;
}

/* Padding Top */
.pt-0 {
    padding-top: 0px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-140 {
    padding-top: 140px;
}

.pt-150 {
    padding-top: 150px;
}

.pt-160 {
    padding-top: 160px;
}

.pt-170 {
    padding-top: 170px;
}

.pt-180 {
    padding-top: 180px;
}

.pt-190 {
    padding-top: 190px;
}

.pt-200 {
    padding-top: 200px;
}
.w-80 {
    width: 80%;
}
.py-120{
    padding-top: 120px;
    padding-bottom: 120px;
}

/* Contenedor de las tarjetas */
.ministry-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.ministry-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Área de la imagen placeholder */
.ministry-card-image {
    background: #f3f4f6;
    border-radius: 8px;
    height: 180px;
    margin-bottom: 40px;
}

/* Título de la tarjeta */
.ministry-card-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1f2937;
    margin-bottom: 12px;
}

/* Descripción */
.ministry-card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 40px;
    flex-grow: 1;
}

/* Botón Learn More */
.ministry-card-btn {
    background: #1f2937;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.3s ease;
    text-decoration: none;
    margin-bottom: 30px;
}

.ministry-card-btn:hover {
    background: #374151;
}

/* Sidebar Navigation */
.sidebar-nav {
    position: fixed;
    top: 0;
    right: -480px;
    width: 480px;
    height: 100vh;
    background-color: #FFFEF9;
    border-left: 1px solid #5C5A55;
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.sidebar-nav.active {
    right: 0;
}

/* Header del sidebar */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    padding: 0 0em 0 2em;
    border-bottom: 1px solid #5C5A55;
}

.sidebar-logo img {
    width: 80px;
    height: auto;
}

.sidebar-close {
    background-color: #5C5A55;
    color: #FFFEF9;
    border: none;
    border-left: 1px solid #5C5A55;
    font-size: 36px;
    font-weight: 400;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    background-color: #FFFEF9;
    color: #5C5A55;
}

/* Contenido del sidebar */
.sidebar-content {
    padding: 2em 2em 2em 2em;
    border-bottom: 1px solid #5C5A55;
}

/* Acordeones */
.nav-accordion {
    border: none;
    margin-bottom: 0;
    overflow: hidden;
}

.nav-accordion-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    color: #5C5A55;
    cursor: pointer;
    list-style: none;
    padding: 0;
    margin-bottom: -8px;
    user-select: none;
    transition: opacity 0.3s ease;
}

.nav-accordion-title:hover {
    opacity: 0.7;
}

.nav-accordion-title::-webkit-details-marker {
    display: none;
}

.nav-accordion-content {
    padding: 0;
    margin: 0 0 1em 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
}

.nav-accordion[open] .nav-accordion-content {
    max-height: 500px;
    opacity: 1;
    margin: 0 0 1em 0;
}

/* Lista de navegación */
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li {
    margin: 4px 0;
}

.nav-list a {
    color: #5C5A55;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.nav-list a:hover {
    opacity: 0.7;
}

.nav-list .sub-text {
    font-size: 70%;
}

/* Botón GIVE */
.nav-give-btn {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #5C5A55;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0;
    margin: -12px 0 0 0;
}

/* Footer con iconos sociales */
.sidebar-footer {
    padding: 2em 2em 1em 2em;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #FFFEF9;
    color: #5C5A55;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 767px) {
    .sidebar-nav {
        right: -100%;
        width: 100%;
    }

    .sidebar-header {
        padding: 0 1em 0 1em;
    }

    .sidebar-content {
        padding: 2em 1em 2em 1em;
    }

    .nav-accordion-title {
        font-size: 44px;
    }

    .nav-give-btn {
        font-size: 44px;
        margin: -14px 0 0 0;
    }

    .social-icon {
        font-size: 20px;
        width: 36px;
        height: 36px;
    }
}
    .card-img-effect{
        border-radius: 10px;
        overflow: hidden;
        position: relative
    }
    .bg-ps{
        background-color: #F2F6F7;
    }
