/* ==================================================================
   MODERN CHURCH HOMEPAGE - FBC MORRISVILLE
   Beautiful, Warm, Professional Design for 2025
   ================================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Modern Color Palette - Warm & Professional */
    --primary: #1a4d8f;        /* Deep Blue */
    --primary-light: #2563a8;
    --primary-dark: #15447c;
    --accent: #c25d3d;          /* Warm Terracotta */
    --accent-light: #d67456;
    --accent-dark: #a84c2f;
    
    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --charcoal: #212529;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    /* Spacing */
    --section-padding: 5rem;
    --container-width: 1280px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLOBAL RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray);
    font-weight: 400;
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(26, 77, 143, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 77, 143, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.modern-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-give {
    background: var(--accent);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-give::after {
    display: none;
}

.nav-give:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--charcoal);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero-modern {
    position: relative;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent-dark) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 77, 143, 0.85) 0%,
        rgba(26, 77, 143, 0.75) 50%,
        rgba(194, 93, 61, 0.75) 100%
    );
}

/* Elegant hero (photo-forward, minimal overlay) */
.hero-elegant {
    background:
        url('../assets/church-bg.jpg') center / cover no-repeat;
    background-attachment: fixed;
}

.hero-elegant .hero-video-overlay {
    background:
        radial-gradient(1200px circle at 18% 30%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 55%),
        linear-gradient(90deg, rgba(18, 35, 55, 0.35) 0%, rgba(18, 35, 55, 0.18) 55%, rgba(18, 35, 55, 0.30) 100%);
}

/* Professional church hero layout */
.hero-professional {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 0 3rem 3rem;
}

.hero-content-box {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.70);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    padding: 2.25rem 2.5rem;
    backdrop-filter: blur(12px);
}

.hero-welcome-badge {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    background: rgba(26, 77, 143, 0.10);
    border: 1px solid rgba(26, 77, 143, 0.18);
    border-radius: 999px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 750;
    color: #0f243f;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.hero-tagline {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    line-height: 1.6;
    color: rgba(15, 36, 63, 0.78);
    margin: 0 0 1.75rem;
}

.hero-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(15, 36, 63, 0.12);
    border-bottom: 1px solid rgba(15, 36, 63, 0.12);
    margin-bottom: 1.75rem;
}

.hero-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.hero-icon {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 0.15rem;
}

.hero-info-label {
    font-size: 0.8rem;
    font-weight: 650;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(15, 36, 63, 0.58);
    margin-bottom: 0.2rem;
}

.hero-info-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f243f;
}

.hero-info-link {
    text-decoration: none;
    transition: var(--transition);
}

.hero-info-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.75rem;
    border-radius: 12px;
    font-weight: 650;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.hero-btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(26, 77, 143, 0.30);
}

.hero-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 77, 143, 0.40);
}

.hero-btn-secondary {
    background: rgba(15, 36, 63, 0.06);
    color: #0f243f;
    border-color: rgba(15, 36, 63, 0.18);
}

.hero-btn-secondary:hover {
    background: rgba(15, 36, 63, 0.12);
    border-color: rgba(15, 36, 63, 0.28);
    transform: translateY(-2px);
}

/* Minimal hero content (simple, elegant, transparent wording) */
.hero-shell-minimal {
    grid-template-columns: 1fr;
    align-items: center;
}

.hero-minimal {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-minimal-inner {
    width: min(860px, 100%);
    padding: 1.6rem 2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

.hero-minimal-eyebrow {
    font-weight: 650;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
}

.hero-minimal-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 4.25rem);
    letter-spacing: -0.02em;
    margin: 0;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.hero-minimal-subtitle {
    margin: 0.35rem 0 0;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

/* Alternate hero look (editorial/photo-like) */
.hero-modern-alt {
    background:
        radial-gradient(1200px circle at 20% 20%, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 55%),
        radial-gradient(900px circle at 85% 35%, rgba(194,93,61,0.35) 0%, rgba(194,93,61,0) 55%),
        linear-gradient(135deg, #0f243f 0%, #153d6f 45%, #5c2a1c 100%);
    background-attachment: fixed;
}

.hero-modern-alt .hero-video-overlay {
    background:
        linear-gradient(180deg, rgba(15,36,63,0.68) 0%, rgba(15,36,63,0.35) 45%, rgba(15,36,63,0.75) 100%),
        linear-gradient(135deg, rgba(26,77,143,0.35) 0%, rgba(194,93,61,0.28) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 900px;
}

/* Split hero layout */
.hero-shell {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 4rem));
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
}

.hero-elegant .hero-shell {
    align-items: stretch;
}

.hero-elegant .hero-panel {
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(255, 255, 255, 0.70);
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
    padding: 2.25rem 2.5rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-eyebrow {
    font-weight: 650;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: rgba(15, 36, 63, 0.72);
    margin-bottom: 0.75rem;
}

.hero-content-left {
    text-align: left;
    padding: 0;
    max-width: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 1rem;
}

.hero-modern-alt .hero-title {
    letter-spacing: -0.02em;
}

.hero-modern-alt .hero-subtitle {
    font-weight: 400;
    max-width: 42rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.hero-elegant .hero-title {
    color: #0f243f;
    text-shadow: none;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-elegant .hero-subtitle {
    color: rgba(15, 36, 63, 0.85);
    text-shadow: none;
    font-weight: 450;
    max-width: 46rem;
}

.hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(15, 36, 63, 0.12);
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-meta-label {
    font-size: 0.85rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(15, 36, 63, 0.62);
}

.hero-meta-value {
    font-size: 1.15rem;
    font-weight: 750;
    color: #0f243f;
}

.hero-meta-link {
    font-size: 1.05rem;
    font-weight: 650;
    color: var(--primary);
    text-decoration: none;
    line-height: 1.35;
}

.hero-meta-link:hover {
    text-decoration: underline;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}

.hero-elegant .hero-actions .btn-primary,
.hero-elegant .hero-actions .btn-secondary {
    padding: 0.95rem 1.6rem;
    border-radius: 14px;
}

.hero-secondary-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.hero-text-link {
    color: rgba(15, 36, 63, 0.78);
    text-decoration: none;
    font-weight: 650;
}

.hero-text-link:hover {
    color: rgba(15, 36, 63, 1);
    text-decoration: underline;
}

.hero-quick {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
    padding: 1.75rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-quick-title {
    font-size: 1.05rem;
    font-weight: 750;
    color: #0f243f;
    margin-bottom: 0.25rem;
}

.hero-quick-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    background: rgba(26, 77, 143, 0.06);
    border: 1px solid rgba(26, 77, 143, 0.10);
    color: rgba(15, 36, 63, 0.90);
    text-decoration: none;
    font-weight: 650;
    transition: var(--transition);
}

.hero-quick-link:hover {
    transform: translateY(-2px);
    background: rgba(26, 77, 143, 0.10);
    border-color: rgba(26, 77, 143, 0.18);
}

.church-info {
    margin: 2.5rem 0;
    padding: 2rem 3rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
}



.hero-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-elegant .hero-card {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.70);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.hero-elegant .hero-card-header {
    background: linear-gradient(135deg, rgba(15,36,63,0.06), rgba(194,93,61,0.08));
    border-bottom-color: rgba(15, 36, 63, 0.10);
}

.hero-elegant .hero-card-title {
    color: #0f243f;
}

.hero-elegant .hero-card-subtitle {
    color: rgba(15, 36, 63, 0.70);
}

.hero-elegant .hero-card-row {
    border-top-color: rgba(15, 36, 63, 0.10);
}

.hero-elegant .hero-card-label {
    color: rgba(15, 36, 63, 0.55);
}

.hero-elegant .hero-card-value {
    color: #0f243f;
}

.hero-elegant .hero-card-link {
    color: var(--primary);
}

.hero-elegant .hero-card-btn {
    background: rgba(26, 77, 143, 0.08);
    border-color: rgba(26, 77, 143, 0.18);
    color: var(--primary);
}

.hero-elegant .hero-card-btn:hover {
    background: rgba(26, 77, 143, 0.14);
}

.hero-elegant .hero-card-btn-accent {
    background: rgba(194, 93, 61, 1);
    border-color: rgba(194, 93, 61, 1);
    color: var(--white);
}

.hero-modern-alt .hero-card {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(16px);
    transform: translateY(12px);
}

.hero-card-header {
    padding: 1.75rem 1.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-card-title {
    margin: 0;
    font-size: 1.4rem;
    letter-spacing: 0.2px;
}

.hero-modern-alt .hero-card-title {
    color: var(--charcoal);
}

.hero-card-subtitle {
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.5;
}

.hero-modern-alt .hero-card-subtitle {
    color: rgba(33, 37, 41, 0.75);
}

.hero-card-body {
    padding: 1.5rem 1.75rem 1.75rem;
}

.hero-card-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1rem;
    align-items: baseline;
    padding: 0.85rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-modern-alt .hero-card-row {
    border-top-color: rgba(33, 37, 41, 0.12);
}

.hero-card-row:first-child {
    border-top: none;
    padding-top: 0;
}

.hero-card-label {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-modern-alt .hero-card-label {
    color: rgba(33, 37, 41, 0.6);
}

.hero-card-value {
    font-weight: 700;
    font-size: 1.15rem;
}

.hero-modern-alt .hero-card-value {
    color: var(--charcoal);
}

.hero-card-link {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
}

.hero-modern-alt .hero-card-link {
    color: var(--primary);
}

.hero-card-link:hover {
    text-decoration: underline;
}

.hero-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.hero-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.hero-modern-alt .hero-card-btn {
    background: rgba(26, 77, 143, 0.08);
    border-color: rgba(26, 77, 143, 0.18);
    color: var(--primary);
}

.hero-card-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.22);
}

.hero-card-btn-accent {
    background: rgba(194, 93, 61, 0.85);
    border-color: rgba(194, 93, 61, 0.9);
}

.hero-modern-alt .hero-card-btn-accent {
    background: rgba(194, 93, 61, 1);
    border-color: rgba(194, 93, 61, 1);
    color: var(--white);
}

.hero-card-btn-accent:hover {
    background: rgba(194, 93, 61, 1);
}

.church-name {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.church-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    font-style: italic;
    opacity: 0.95;
    letter-spacing: 0.5px;
    margin: 0;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.hero-content-left .hero-cta {
    justify-content: flex-start;
}

.hero-elegant .btn-secondary {
    color: #0f243f;
    border-color: rgba(15, 36, 63, 0.25);
}

.hero-elegant .btn-secondary:hover {
    background: rgba(15, 36, 63, 0.06);
    color: #0f243f;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== WELCOME SECTION ===== */
.welcome-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.pastor-message {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.pastor-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.pastor-quote {
    font-size: 1.35rem;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-family: var(--font-heading);
}

.pastor-name {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.pastor-bio {
    color: var(--gray);
    line-height: 1.7;
}

.new-here-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.info-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ===== NEXT STEPS SECTION ===== */
.next-steps-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.step-card {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--light-gray);
    transition: var(--transition);
    text-align: center;
}

.step-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.step-detail {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.step-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.step-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* ===== SERMON SECTION ===== */
.sermon-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.sermon-featured {
    max-width: 900px;
    margin: 0 auto 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sermon-video-placeholder {
    background: var(--light-gray);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sermon-actions {
    text-align: center;
}

/* ===== EVENTS SECTION ===== */
.events-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.event-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.event-nav-btn {
    background: var(--white);
    border: 2px solid var(--light-gray);
    padding: 0.75rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--charcoal);
    font-weight: 500;
}

.event-nav-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.event-date-range {
    font-weight: 500;
    color: var(--gray);
}

.events-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* ===== PRAYER SECTION ===== */
.prayer-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.prayer-content {
    max-width: 700px;
    margin: 0 auto;
}

.prayer-section .section-title,
.prayer-section .section-subtitle {
    color: var(--white);
}

.prayer-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.95);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--white);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(40, 167, 69, 0.2);
    color: var(--white);
}

.form-status.error {
    display: block;
    background: rgba(220, 53, 69, 0.2);
    color: var(--white);
}

/* ===== MINISTRIES SECTION ===== */
.ministries-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.ministries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.ministry-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.ministry-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.ministry-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.ministry-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.ministry-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.ministry-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.ministry-link:hover {
    color: var(--accent-dark);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.photo-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.photo-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== FOOTER ===== */
.modern-footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--light-gray);
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.75rem;
    color: var(--light-gray);
    line-height: 1.6;
}

.footer-list a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-list a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.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: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-give-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-give-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
}

.footer-tagline-sm {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== ALERT ===== */
.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #b1dfbb;
    color: #155724;
    padding: 1.25rem 2rem;
    margin: 1.5rem auto;
    max-width: var(--container-width);
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 4rem;
    }
    
    .pastor-message {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-modern {
        height: 100vh;
        min-height: 600px;
    }

    .hero-shell {
        width: calc(100% - 3rem);
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 1.5rem;
    }

    .hero-minimal-inner {
        border-radius: 22px;
        padding: 1.25rem 1.25rem;
    }

    .hero-content-left {
        text-align: center;
    }

    .hero-elegant {
        background-attachment: scroll;
    }

    .hero-professional {
        padding: 0 1.5rem 2rem;
    }

    .hero-content-box {
        max-width: 100%;
        padding: 1.75rem 1.5rem;
    }

    .hero-heading {
        font-size: clamp(1.85rem, 6vw, 2.5rem);
    }

    .hero-info-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-elegant .hero-panel,
    .hero-quick {
        padding: 1.5rem;
    }

    .hero-meta {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        flex-direction: column;
    }

    .hero-content-left .hero-cta {
        align-items: stretch;
    }
    
    .church-info {
        padding: 1.5rem 2rem;
    }

    .hero-card-actions {
        grid-template-columns: 1fr;
    }
    
    .church-name {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .church-tagline {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .prayer-form {
        padding: 2rem;
    }
    
    .events-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .steps-grid,
    .ministries-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .church-info {
        padding: 1rem 1.5rem;
    }
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    [data-aos] {
        opacity: 0;
        transition: opacity 0.6s, transform 0.6s;
    }
    
    [data-aos].aos-animate {
        opacity: 1;
    }
}
