/* 
    FMMBC - Premium Design System 
    Modern, Responsive, and Accessible
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --primary: #000080; /* Navy Blue */
    --primary-light: #0000a0;
    --primary-dark: #000066;
    --accent: #ffd700; /* Gold for highlights */
    --secondary: #FFFFFF;
    --bg-soft: #f8f9fa;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --text-white: #ffffff;
    
    /* Glassmorphism - Premium */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    
    /* Dark Glassmorphism */
    --glass-dark-bg: rgba(0, 0, 0, 0.2);
    --glass-dark-border: rgba(255, 255, 255, 0.05);
    
    /* Shadows & Radii */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Spacing System */
    --space-px: 1px;
    --space-1: 0.25rem; /* 4px */
    --space-2: 0.5rem;  /* 8px */
    --space-3: 0.75rem; /* 12px */
    --space-4: 1rem;    /* 16px */
    --space-6: 1.5rem;  /* 24px */
    --space-8: 2rem;    /* 32px */
    --space-10: 2.5rem; /* 40px */
    --space-12: 3rem;   /* 48px */
    --space-16: 4rem;   /* 64px */
    --space-20: 5rem;   /* 80px */
    
    /* Typography Scaling */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    
    /* Semantic Colors */
    --border-light: #f1f5f9;
    --bg-alt: #f8fafc;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Sidebar & Layout Defaults */
    --sidebar-width: 250px;
    --header-height: 70px;
    
    /* Animation */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--secondary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Global Accessibility */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Helpers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Core UI Components (Shared) */
.panel { 
    background: white; 
    border-radius: var(--radius-md); 
    box-shadow: var(--shadow-sm); 
    padding: 30px; 
    margin-bottom: 40px; 
    border: 1px solid #f1f5f9; 
}

.panel-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 25px; 
    padding-bottom: 20px; 
    border-bottom: 1px solid #f1f5f9; 
}

.panel-header h3 { 
    margin: 0; 
    color: #1e293b; 
    font-family: 'Playfair Display', serif; 
    font-size: var(--text-2xl); 
}

/* Portal Layout Architecture */
.portal-body {
    display: flex;
    background-color: var(--bg-alt);
    min-height: 100vh;
}

.top-header {
    height: var(--header-height);
    background: white;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 var(--space-10);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 90;
    width: 100%;
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-left: var(--sidebar-width);
    transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0;
}

body.sidebar-closed .main-content {
    margin-left: 0;
}

body.sidebar-closed aside.sidebar {
    transform: translateX(-100%);
}

aside.sidebar {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-toggle-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-muted);
    cursor: pointer;
    margin-right: auto;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.sidebar-toggle-btn:hover {
    background: var(--bg-soft);
    color: var(--primary);
}

@media (max-width: 768px) {
    .main-content {
        margin-left: 0;
    }
    aside.sidebar {
        transform: translateX(-100%);
        box-shadow: 5px 0 25px rgba(0,0,0,0.1);
    }
    body.sidebar-closed aside.sidebar {
        transform: translateX(0);
    }
}

.content-area {
    padding: var(--space-8);
    flex-grow: 1;
}

/* User Info & Stats */
.user-info {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 600;
}

.user-welcome {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.avatar {
    width: 38px;
    height: 38px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

.stat-card {
    background: white;
    border-radius: var(--radius-md);
    padding: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.stat-icon {
    width: 54px;
    height: 54px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-details h4 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-details .value {
    margin: 0;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary);
}

/* Glassmorphism Utility */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.glass-card-dark {
    background: var(--glass-dark-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-dark-border);
    box-shadow: var(--glass-shadow);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar.scrolled .logo, 
.navbar.scrolled .nav-links a {
    color: var(--primary);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -1px;
}

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

.nav-links a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

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

/* Dropdown Navigation */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown > a i {
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-content {
    display: block;
    visibility: hidden;
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    min-width: 200px;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    z-index: 1000;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    top: 150%;
    left: 0;
    padding: 0.5rem 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    top: 100%;
    transform: translateY(0);
}

/* Micro-Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.dropdown-content a {
    color: var(--text-main) !important;
    padding: 12px 24px;
    display: block;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
}

.dropdown-content a::after {
    display: none;
}

.dropdown-content a:hover {
    background-color: var(--bg-soft);
    color: var(--primary) !important;
}


.btn-give-nav {
    background: var(--accent);
    color: var(--primary) !important;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn-give-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: #fff;
}

/* Hamburger Menu */
.mobile-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-white);
    border-radius: 4px;
    transition: var(--transition);
}

.navbar.scrolled .mobile-toggle span {
    background: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/assets/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
}

.hero-content {
    max-width: 800px;
}

.eyebrow {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Unified Component System */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-8);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: var(--text-sm);
    gap: var(--space-2);
    text-decoration: none;
}

.btn--lg {
    padding: var(--space-4) var(--space-10);
    font-size: var(--text-base);
}

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

.btn-primary:hover, .btn--primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn--accent:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline, .btn--outline {
    background: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white);
}

.btn-outline:hover, .btn--outline:hover {
    background: var(--text-white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Button Loading State */
.btn.is-loading {
    color: transparent !important;
    pointer-events: none;
    position: relative;
}

.btn.is-loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Cards */
.card {
    background: white;
    border-radius: var(--radius-md);
    padding: var(--space-8);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.card--glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.card--dark {
    background: rgba(255,255,255,0.05);
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.03);
}

.card--interactive:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: var(--shadow-premium);
}

/* Worship Section */
.worship-section {
    background-color: var(--secondary);
}

.worship-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.worship-card {
    padding: 4rem 3rem;
    text-align: center;
    border-radius: var(--radius-md);
    background: white;
}

.worship-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.worship-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.worship-card .time {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
}

/* Sermon Grid */
.sermons-section {
    background: #000033;
    color: var(--text-white);
}

.sermons-section .section-title {
    color: var(--text-white);
}

.sermon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.sermon-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.03);
}

.sermon-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-premium);
    background: rgba(255,255,255,0.08);
}

.sermon-thumbnail {
    height: 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: var(--secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.play-btn:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.sermon-content {
    padding: 2rem;
}

.sermon-date {
    display: block;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
}

.sermon-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.speaker {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Ministry Section */
.ministry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.ministry-card {
    padding: 3rem 2rem;
    text-align: center;
    border-radius: var(--radius-md);
    background: var(--bg-soft);
    border: 1px solid rgba(0,0,0,0.05);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

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

/* Footer */
footer {
    background: #111;
    color: var(--text-white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.footer-info p {
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary);
}

.footer-links h4, .footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.footer-links a {
    opacity: 0.6;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-contact p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
    display: flex;
    gap: 12px;
}

.footer-contact i {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    opacity: 0.5;
}

/* Modal Styling */
.modal {
    display: flex;
    position: fixed;
    z-index: 2000;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.modal.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-md);
    max-width: 450px;
    width: 90%;
    position: relative;
    color: var(--text-main);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.is-visible .modal-content {
    transform: scale(1);
}

.close {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

.give-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.amount-btn {
    padding: var(--space-4);
    border: 2px solid var(--border-light);
    background: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.amount-btn.active {
    border-color: var(--primary);
    background: var(--bg-soft);
    color: var(--primary);
}

.amount-btn:hover:not(.active) {
    border-color: var(--primary-light);
    background: var(--bg-soft);
}

#customAmount {
    width: 100%;
    padding: var(--space-4);
    margin-bottom: var(--space-6);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: var(--text-lg);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

#customAmount:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 0, 128, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 4rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    .section { padding: 60px 0; }
    
    .mobile-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        display: none;
        visibility: visible;
        opacity: 1;
        padding-left: 20px;
        transform: none;
        min-width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
        border-radius: var(--radius-sm);
    }
    
    .dropdown:hover .dropdown-content,
    .dropdown:active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        color: var(--text-white) !important;
        padding: 10px 15px;
    }
    
    .dropdown-content a:hover {
        background: rgba(255,255,255,0.1);
        color: #fff !important;
    }
    
    .logo { color: var(--primary); }
    .navbar:not(.scrolled) .logo { color: var(--text-white); }
    
    .worship-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    
    .mobile-toggle span.active:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-toggle span.active:nth-child(2) { opacity: 0; }
    .mobile-toggle span.active:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }
}

@media (max-width: 480px) {
    .section-title { font-size: 2rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
}
