/* ===================================
   RCISA Johannesburg North - Styles
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #0d2c6c;
    --secondary-color: #fbbf24;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #0a2350;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.875rem;
}

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn,
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle {
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Backdrop Overlay */
.menu-backdrop {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 997;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-backdrop.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.hero-tagline {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* About Section */
.about-section {
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    line-height: 1.8;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 44, 108, 0.7), rgba(59, 130, 246, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.image-overlay i {
    font-size: 4rem;
    color: white;
}

.about-image:hover .image-overlay {
    opacity: 1;
}


/* Leadership Section */
.leadership-section {
    background-color: var(--bg-white);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.leader-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.leader-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(13, 44, 108, 0.8));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
}

.leader-overlay i {
    font-size: 3rem;
    color: var(--secondary-color);
}

.leader-info {
    padding: 2rem;
}

.leader-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-description {
    line-height: 1.8;
}

/* Church Council Section */
.council-section {
    background-color: var(--bg-light);
}

.council-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.council-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.council-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--secondary-color);
}

.council-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.council-icon i {
    font-size: 2rem;
    color: white;
}

.council-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.council-role {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.council-description {
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background-color: var(--bg-white);
}

.services-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

.main-service {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.main-service h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.main-service p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--secondary-color);
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.info-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 0.875rem;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.contact-content {
    display: block;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.service-schedule {
    margin-top: 1rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.schedule-item .day {
    font-weight: 600;
    color: var(--primary-color);
}

.schedule-item .time {
    color: var(--text-light);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent-color);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-style: italic;
    color: var(--secondary-color) !important;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content,
    .services-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navigation - World Class Mobile Menu */
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        max-width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 998;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(13, 44, 108, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 0;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--text-dark);
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
        padding-left: 1rem;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(59, 130, 246, 0.05);
        border-left-color: var(--secondary-color);
        color: var(--primary-color);
        transform: translateX(5px);
    }

    .mobile-menu-btn,
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero section */
    .hero {
        min-height: 70vh;
    }

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

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Grids */
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    /* Sections */
    section {
        padding: 60px 0;
    }

    /* Images */
    .leader-card img,
    .council-card img {
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    /* Container padding for small screens */
    .container {
        padding: 0 15px;
    }

    /* Hero section */
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-logo {
        width: 80px;
        height: 80px;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    /* Buttons */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Cards */
    .leader-card,
    .council-card,
    .service-card,
    .contact-card,
    .ministry-card,
    .event-card,
    .donation-method {
        padding: 20px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* Forms */
    input[type="text"],
    input[type="email"],
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Touch targets - minimum 44px */
    .nav-link,
    .social-icon,
    .platform-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ===================================
   Ministries Section
   =================================== */
.ministries-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.ministries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ministry-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.ministry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(13, 44, 108, 0.2);
}

.ministry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.ministry-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.ministry-card > p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.ministry-activities {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    text-align: left;
}

.ministry-activities li {
    padding: 8px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ministry-activities i {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

/* ===================================
   Events Section
   =================================== */
.events-section {
    padding: 80px 0;
    background: white;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.event-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13, 44, 108, 0.2);
}

.event-date {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.event-date .day {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.event-date .month {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    padding: 25px;
    flex: 1;
}

.event-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.event-time,
.event-location {
    color: var(--text-color);
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.event-time i,
.event-location i {
    color: var(--secondary-color);
}

.event-content > p:last-child {
    margin-top: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

.prayer-request-section {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(13, 44, 108, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 15px;
}

.prayer-request-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.75rem;
}

.prayer-request-section p {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 44, 108, 0.95), transparent);
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===================================
   Donations Section
   =================================== */
.donate-section {
    padding: 80px 0;
    background: white;
}

.donate-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 50px;
}

.donate-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.donate-info h3 i {
    color: var(--secondary-color);
}

.donate-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.donate-list li {
    padding: 12px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.donate-list i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.bible-verse {
    background: linear-gradient(135deg, rgba(13, 44, 108, 0.05), rgba(59, 130, 246, 0.05));
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid var(--secondary-color);
}

.bible-verse i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.bible-verse p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.8;
    margin: 15px 0;
}

.bible-verse span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.donate-methods h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.donate-methods h3 i {
    color: var(--secondary-color);
}

.donation-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13, 44, 108, 0.15);
}

.donation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
}

.donation-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.bank-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.bank-details p {
    margin: 8px 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

.bank-details strong {
    color: var(--primary-color);
    display: inline-block;
    min-width: 140px;
}

.mobile-options {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.mobile-options .btn {
    flex: 1;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 15px;
}

.secure-note {
    text-align: center;
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 10px;
}

.secure-note i {
    color: #28a745;
}

.suggested-amounts {
    margin-top: 50px;
    text-align: center;
}

.suggested-amounts h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.amount-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.amount-btn {
    padding: 15px 30px;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 44, 108, 0.3);
}

.tax-info {
    margin-top: 40px;
    padding: 20px;
    background: #fff3cd;
    border-left: 4px solid var(--secondary-color);
    border-radius: 5px;
}

.tax-info p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
}

.tax-info i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* ===================================
   Modal Styles
   =================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-content h2 i {
    color: var(--secondary-color);
}

.modal-content > p {
    color: var(--text-color);
    margin-bottom: 30px;
}

.prayer-form .form-group {
    margin-bottom: 20px;
}

.prayer-form label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.prayer-form input,
.prayer-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.prayer-form input:focus,
.prayer-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.prayer-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(13, 44, 108, 0.3);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 44, 108, 0.4);
}

/* ===================================
   Responsive Adjustments for New Sections
   =================================== */
@media (max-width: 768px) {
    .ministries-grid,
    .events-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .donate-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        min-width: 100%;
        padding: 15px;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .mobile-options {
        flex-direction: column;
    }

    .amount-buttons {
        flex-direction: column;
    }

    .amount-btn {
        width: 100%;
    }

    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }
}

/* ===================================
   Multi-Page Layout Styles
   =================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Live Streaming Banner (Homepage) */
.live-streaming-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, var(--primary-color) 100%);
    padding: 60px 0;
    color: white;
}

.streaming-highlight {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.streaming-icon-large {
    font-size: 5rem;
    color: var(--secondary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.streaming-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.streaming-text > p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.streaming-time {
    background: rgba(251, 191, 36, 0.2);
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-block;
    margin: 20px 0;
    border-left: 4px solid var(--secondary-color);
}

.streaming-time strong {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.streaming-platforms-home {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 30px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.platform-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.platform-link i {
    font-size: 1.5rem;
}

.badge-coming {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 10px;
}

.streaming-note-home {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-top: 20px;
    font-style: italic;
}

/* Quick Info Section */
.quick-info-section {
    padding: 80px 0;
    background: #f8fafc;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(13, 44, 108, 0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-card p {
    color: #64748b;
    margin-bottom: 20px;
}

.info-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    background: white;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.welcome-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.welcome-text .btn {
    margin-top: 20px;
}

.welcome-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(13, 44, 108, 0.2);
}

.welcome-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.welcome-image:hover img {
    transform: scale(1.05);
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.social-note {
    font-size: 0.85rem;
    opacity: 0.7;
    font-style: italic;
    margin-top: 10px;
}

/* Live Streaming Section (Events Page) */
.live-streaming-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, var(--primary-color) 100%);
}

.streaming-banner {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    color: white;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.streaming-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.streaming-banner h2 i {
    color: var(--secondary-color);
    animation: pulse 2s infinite;
}

.streaming-banner > p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.streaming-platforms h3 {
    font-size: 1.3rem;
    margin: 30px 0 20px;
}

.platform-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 25px 0;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid;
}

.facebook-btn {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.facebook-btn:hover {
    background: #145dbf;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}

.youtube-btn {
    background: #ff0000;
    color: white;
    border-color: #ff0000;
}

.youtube-btn:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.coming-soon {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 10px;
}

.streaming-note {
    font-size: 1rem;
    opacity: 0.85;
    margin-top: 30px;
    padding: 20px;
    background: rgba(251, 191, 36, 0.15);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

/* Contact Page Styles */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13, 44, 108, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.contact-card p {
    color: #64748b;
    line-height: 1.8;
}

.contact-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 15px 0;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.facebook:hover {
    background: #145dbf;
    transform: translateY(-5px);
}

.social-link.youtube {
    background: #ff0000;
}

.social-link.youtube:hover {
    background: #cc0000;
    transform: translateY(-5px);
}

.coming-soon-note {
    font-size: 0.85rem;
    color: #94a3b8;
    font-style: italic;
    margin-top: 10px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
}

.live-badge i {
    animation: pulse 2s infinite;
}

.map-container {
    margin: 60px 0 40px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 3px solid #e2e8f0;
}

.map-wrapper iframe {
    display: block;
}

.map-note {
    text-align: center;
    color: #64748b;
    font-size: 1rem;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-form-section {
    background: linear-gradient(135deg, rgba(13, 44, 108, 0.03), rgba(59, 130, 246, 0.03));
    padding: 60px;
    border-radius: 20px;
    margin-top: 40px;
    border: 2px solid rgba(13, 44, 108, 0.1);
}

.contact-form-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.contact-form-section > p {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn-large {
    width: 100%;
    padding: 18px 40px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Responsive Styles for Multi-Page Layout */
@media (max-width: 1024px) {
    .streaming-highlight {
        flex-direction: column;
        text-align: center;
    }

    .streaming-icon-large {
        font-size: 4rem;
    }

    .streaming-text h2 {
        font-size: 2rem;
    }

    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .streaming-highlight {
        padding: 30px 20px;
    }

    .streaming-text h2 {
        font-size: 1.5rem;
    }

    .streaming-text > p {
        font-size: 1rem;
    }

    .streaming-platforms-home {
        flex-direction: column;
    }

    .platform-link {
        width: 100%;
        justify-content: center;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .welcome-text h2 {
        font-size: 2rem;
    }

    .welcome-text p {
        font-size: 1rem;
    }

    .streaming-banner {
        padding: 30px 20px;
    }

    .streaming-banner h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }

    .platform-buttons {
        flex-direction: column;
    }

    .platform-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 40px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .streaming-icon-large {
        font-size: 3rem;
    }

    .streaming-time {
        padding: 12px 20px;
    }

    .streaming-time strong {
        font-size: 0.95rem;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .info-card h3 {
        font-size: 1.2rem;
    }

    .welcome-text h2 {
        font-size: 1.6rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }

    /* Page headers */
    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    /* Donation page */
    .bank-details {
        font-size: 0.95rem;
    }

    /* Event cards */
    .event-date {
        min-width: 70px;
    }

    .event-date .day {
        font-size: 1.5rem;
    }

    /* Gallery */
    .gallery-item {
        height: 250px;
    }

    /* Ministry cards */
    .ministry-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }
}

/* Extra Small Phones (320px - 375px) */
@media (max-width: 375px) {
    /* Container */
    .container {
        padding: 0 10px;
    }

    /* Hero */
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-logo {
        width: 70px;
        height: 70px;
    }

    .hero-tagline {
        font-size: 0.85rem;
    }

    /* Buttons */
    .btn {
        padding: 10px 15px;
        font-size: 0.875rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.5rem;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.1rem; }

    /* Cards */
    .leader-card,
    .council-card,
    .ministry-card,
    .event-card,
    .donation-method {
        padding: 15px;
    }

    /* Navigation */
    .logo {
        width: 40px;
        height: 40px;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .logo-text p {
        font-size: 0.65rem;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-logo {
        width: 50px;
        height: 50px;
    }

    .footer h3,
    .footer h4 {
        font-size: 1.1rem;
    }

    .footer p,
    .footer-links a {
        font-size: 0.875rem;
    }

    /* Streaming section */
    .streaming-banner h2,
    .streaming-highlight h2 {
        font-size: 1.3rem;
    }

    .streaming-time {
        font-size: 0.85rem;
        padding: 10px 15px;
    }

    /* Platform buttons */
    .platform-btn {
        padding: 12px 15px;
        font-size: 0.875rem;
    }

    /* Info cards */
    .info-card {
        padding: 20px 15px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    /* Contact cards */
    .contact-card {
        padding: 20px 15px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    /* Forms */
    .contact-form input,
    .contact-form textarea {
        padding: 12px 15px;
        font-size: 16px;
    }

    /* Gallery */
    .gallery-item {
        height: 200px;
    }

    /* Event cards */
    .event-date {
        min-width: 60px;
    }

    .event-date .day {
        font-size: 1.3rem;
    }

    .event-date .month {
        font-size: 0.75rem;
    }

    /* Donation */
    .bank-details p {
        font-size: 0.875rem;
    }

    /* Map */
    .map-container iframe {
        height: 300px;
    }
}

/* Landscape orientation for phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }

    .hero-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    section {
        padding: 40px 0;
    }

    .nav-links {
        height: calc(100vh - 60px);
        padding: 1rem;
    }
}

