/*
 Theme Name:   Church Starter - Astra Child
 Theme URI:    https://github.com/MauCariApa-com/maucariapacom-church-starter
 Description:  A beautiful church website theme based on Astra, inspired by the MauCariApa Church Starter template. Features modern design with warm colors, service times display, ministry sections, and all essential church website features.
 Author:       Your Name
 Author URI:   https://yourwebsite.com
 Template:     astra
 Version:      1.0.0
 License:      MIT License
 License URI:  https://opensource.org/licenses/MIT
 Text Domain:  church-starter
 Tags:         church, religious, community, one-column, two-columns, custom-colors, custom-menu, featured-images, full-width-template, theme-options
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================================================== */
:root {
    /* Primary Colors - Warm Church Theme */
    --church-primary: #8B5CF6;
    --church-primary-dark: #7C3AED;
    --church-primary-light: #A78BFA;
    --church-secondary: #1E293B;
    --church-accent: #F59E0B;
    
    /* Neutral Colors */
    --church-white: #FFFFFF;
    --church-gray-50: #F8FAFC;
    --church-gray-100: #F1F5F9;
    --church-gray-200: #E2E8F0;
    --church-gray-300: #CBD5E1;
    --church-gray-400: #94A3B8;
    --church-gray-500: #64748B;
    --church-gray-600: #475569;
    --church-gray-700: #334155;
    --church-gray-800: #1E293B;
    --church-gray-900: #0F172A;
    
    /* Gradients */
    --church-gradient-hero: linear-gradient(135deg, #1E293B 0%, #334155 50%, #475569 100%);
    --church-gradient-primary: linear-gradient(135deg, var(--church-primary) 0%, var(--church-primary-dark) 100%);
    --church-gradient-warm: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

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

/* ==========================================================================
   BASE TYPOGRAPHY & BODY
   ========================================================================== */
body {
    font-family: var(--font-body);
    color: var(--church-gray-700);
    line-height: 1.7;
    background-color: var(--church-white);
}

h1, h2, h3, h4, h5, h6,
.entry-title,
.page-title,
.site-title {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--church-gray-900);
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: var(--space-lg);
    color: var(--church-gray-600);
}

a {
    color: var(--church-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--church-primary-dark);
}

/* ==========================================================================
   ASTRA HEADER CUSTOMIZATIONS
   ========================================================================== */
.ast-primary-header-bar,
.main-header-bar {
    background: var(--church-white);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--church-gray-100);
}

.site-title,
.site-title a {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--church-gray-900) !important;
    font-size: 1.5rem;
}

/* Navigation */
.main-header-menu > .menu-item > a,
.ast-header-break-point .main-header-menu > .menu-item > a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--church-gray-700);
    padding: var(--space-sm) var(--space-md);
    transition: all var(--transition-fast);
}

.main-header-menu > .menu-item > a:hover,
.main-header-menu > .menu-item.current-menu-item > a {
    color: var(--church-primary);
}

/* Header CTA Button */
.ast-header-button-1 .ast-custom-button,
.menu-link.highlight-link {
    background: var(--church-gradient-primary) !important;
    color: var(--church-white) !important;
    border-radius: var(--radius-full);
    padding: var(--space-sm) var(--space-lg) !important;
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.ast-header-button-1 .ast-custom-button:hover,
.menu-link.highlight-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   HERO SECTION STYLES
   ========================================================================== */
.church-hero {
    background: var(--church-gradient-hero);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.church-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.church-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    max-width: 900px;
}

.church-hero h1 {
    color: var(--church-white);
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.church-hero p {
    color: var(--church-gray-300);
    font-size: 1.25rem;
    margin-bottom: var(--space-2xl);
}

/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */
.church-btn,
.wp-block-button__link,
.ast-custom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.church-btn-primary,
.wp-block-button.is-style-fill .wp-block-button__link {
    background: var(--church-gradient-primary);
    color: var(--church-white);
    box-shadow: var(--shadow-md);
}

.church-btn-primary:hover,
.wp-block-button.is-style-fill .wp-block-button__link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--church-white);
}

.church-btn-secondary,
.wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent;
    color: var(--church-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.church-btn-secondary:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--church-white);
}

/* ==========================================================================
   SERVICE TIMES SECTION
   ========================================================================== */
.service-times-section {
    background: var(--church-gray-50);
    padding: var(--space-4xl) 0;
}

.service-card {
    background: var(--church-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--church-gray-100);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--church-gradient-primary);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.service-time {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--church-primary);
    margin-bottom: var(--space-sm);
    font-family: var(--font-display);
}

.service-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--church-gray-800);
    margin-bottom: var(--space-md);
}

.service-description {
    color: var(--church-gray-500);
    font-size: 0.95rem;
}

.service-badge {
    display: inline-block;
    background: var(--church-gradient-warm);
    color: var(--church-gray-800);
    font-size: 0.75rem;
    font-weight: 600;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    margin-top: var(--space-md);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: var(--space-4xl) 0;
    background: var(--church-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

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

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

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

.about-text h2 {
    color: var(--church-gray-900);
    margin-bottom: var(--space-lg);
}

.about-text p {
    color: var(--church-gray-600);
    line-height: 1.8;
}

/* ==========================================================================
   MINISTRY CARDS
   ========================================================================== */
.ministries-section {
    background: var(--church-gray-50);
    padding: var(--space-4xl) 0;
}

.ministry-card {
    background: var(--church-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--church-gray-100);
    transition: all var(--transition-base);
    height: 100%;
}

.ministry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--church-primary-light);
}

.ministry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: var(--church-gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--church-white);
    font-size: 2rem;
}

.ministry-card h3 {
    color: var(--church-gray-800);
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
}

.ministry-card p {
    color: var(--church-gray-500);
    font-size: 0.95rem;
}

.ministry-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--church-primary);
    font-weight: 600;
    margin-top: var(--space-md);
    transition: all var(--transition-fast);
}

.ministry-link:hover {
    color: var(--church-primary-dark);
    gap: var(--space-sm);
}

/* ==========================================================================
   SERMON CARDS
   ========================================================================== */
.sermons-section {
    padding: var(--space-4xl) 0;
    background: var(--church-white);
}

.sermon-card {
    background: var(--church-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--church-gray-100);
    transition: all var(--transition-base);
}

.sermon-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.sermon-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.sermon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.sermon-card:hover .sermon-image img {
    transform: scale(1.1);
}

.sermon-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.sermon-card:hover .sermon-play-btn {
    opacity: 1;
}

.sermon-play-btn span {
    width: 60px;
    height: 60px;
    background: var(--church-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--church-primary);
    font-size: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.sermon-content {
    padding: var(--space-xl);
}

.sermon-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
    color: var(--church-gray-500);
}

.sermon-series {
    background: var(--church-primary-light);
    color: var(--church-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.sermon-content h3 {
    color: var(--church-gray-800);
    margin-bottom: var(--space-sm);
    font-size: 1.125rem;
    line-height: 1.4;
}

.sermon-speaker {
    color: var(--church-gray-500);
    font-size: 0.9rem;
}

/* ==========================================================================
   EVENTS SECTION
   ========================================================================== */
.events-section {
    background: var(--church-gray-50);
    padding: var(--space-4xl) 0;
}

.event-card {
    display: flex;
    background: var(--church-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--church-gray-100);
    transition: all var(--transition-base);
}

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

.event-date-box {
    background: var(--church-gradient-primary);
    color: var(--church-white);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.event-date-day {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-display);
    line-height: 1;
}

.event-date-month {
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.event-details {
    padding: var(--space-lg);
    flex: 1;
}

.event-details h3 {
    color: var(--church-gray-800);
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.event-info {
    color: var(--church-gray-500);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.event-info span {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    background: var(--church-gradient-hero);
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-section h2 {
    color: var(--church-white);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: var(--church-gray-300);
    font-size: 1.125rem;
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   STAFF SECTION
   ========================================================================== */
.staff-section {
    padding: var(--space-4xl) 0;
    background: var(--church-white);
}

.staff-card {
    background: var(--church-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--church-gray-100);
    transition: all var(--transition-base);
    text-align: center;
}

.staff-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.staff-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.staff-card:hover .staff-image img {
    transform: scale(1.1);
}

.staff-info {
    padding: var(--space-xl);
}

.staff-info h3 {
    color: var(--church-gray-800);
    margin-bottom: var(--space-xs);
    font-size: 1.25rem;
}

.staff-title {
    color: var(--church-primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.staff-contact {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.staff-contact a {
    width: 40px;
    height: 40px;
    background: var(--church-gray-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--church-gray-600);
    transition: all var(--transition-fast);
}

.staff-contact a:hover {
    background: var(--church-primary);
    color: var(--church-white);
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
.site-footer,
.ast-footer-overlay {
    background: var(--church-gray-900) !important;
    color: var(--church-gray-300);
}

.site-footer a {
    color: var(--church-gray-400);
    transition: color var(--transition-fast);
}

.site-footer a:hover {
    color: var(--church-white);
}

.footer-widget-area h4,
.footer-widget-area .widget-title {
    color: var(--church-white);
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.footer-widget-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget-area ul li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   FORM STYLES
   ========================================================================== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea,
select {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: var(--space-md);
    border: 2px solid var(--church-gray-200);
    border-radius: var(--radius-lg);
    background: var(--church-white);
    color: var(--church-gray-800);
    transition: all var(--transition-fast);
    width: 100%;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--church-primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* ==========================================================================
   GUTENBERG BLOCK ENHANCEMENTS
   ========================================================================== */

/* Cover Block */
.wp-block-cover {
    min-height: 500px;
}

.wp-block-cover h1,
.wp-block-cover h2 {
    font-family: var(--font-display);
    color: var(--church-white);
}

/* Columns Block */
.wp-block-columns {
    gap: var(--space-xl);
}

/* Group Block with Background */
.wp-block-group.has-background {
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
}

/* Quote Block */
.wp-block-quote {
    border-left: 4px solid var(--church-primary);
    padding-left: var(--space-xl);
    font-family: var(--font-display);
    font-style: italic;
    color: var(--church-gray-700);
}

.wp-block-quote cite {
    font-family: var(--font-body);
    font-style: normal;
    color: var(--church-gray-500);
    font-size: 0.9rem;
}

/* Separator Block */
.wp-block-separator {
    border-color: var(--church-gray-200);
}

.wp-block-separator.is-style-wide {
    border-bottom-width: 2px;
}

.wp-block-separator.is-style-dots::before {
    color: var(--church-primary);
}

/* Image Block */
.wp-block-image img {
    border-radius: var(--radius-xl);
}

.wp-block-image.is-style-rounded img {
    border-radius: var(--radius-2xl);
}

/* Gallery Block */
.wp-block-gallery {
    gap: var(--space-md) !important;
}

.wp-block-gallery .wp-block-image img {
    border-radius: var(--radius-lg);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 992px) {
    .church-hero {
        min-height: 70vh;
    }
    
    .service-card {
        padding: var(--space-xl);
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date-box {
        flex-direction: row;
        min-width: auto;
        gap: var(--space-sm);
    }
}

@media (max-width: 768px) {
    :root {
        --space-4xl: 3rem;
    }
    
    .church-hero {
        min-height: 60vh;
    }
    
    .church-hero-content {
        padding: var(--space-xl) var(--space-md);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.mb-5 { margin-bottom: var(--space-2xl); }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    color: var(--church-gray-500);
    font-size: 1.125rem;
}

/* Container */
.church-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Grid Layouts */
.church-grid {
    display: grid;
    gap: var(--space-xl);
}

.church-grid-2 { grid-template-columns: repeat(2, 1fr); }
.church-grid-3 { grid-template-columns: repeat(3, 1fr); }
.church-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
    .church-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .church-grid-2,
    .church-grid-3,
    .church-grid-4 { grid-template-columns: 1fr; }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
