/* CSS Stylesheet - Pastor Yanick E. Nyendi Prophetic Ministry Web App */

:root {
    --bg-color: #ffffff;
    --bg-alt: #fcfbf9; /* Soft warm white background offset */
    --card-bg: #ffffff;
    --card-border: rgba(173, 6, 14, 0.08); /* Crimson red tint for borders */
    --card-border-hover: rgba(212, 175, 55, 0.4); /* Gold hover tint */
    
    --text-primary: #120a21; /* Dark slate text */
    --text-secondary: #4d4659;
    --text-muted: #7e768c;
    
    --primary-red: #ad060e; /* Deep Crimson Red from onlinecla.org */
    --accent-red: #e6132e; /* Bright Red from onlinecla.org */
    --gold-primary: #d4af37; /* Gold Accent */
    --gold-light: #ffe699;
    --gold-dark: #aa7c11;
    --red-glow: rgba(173, 6, 14, 0.08);
    --gold-glow: rgba(212, 175, 55, 0.15);
    
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-heading: 'Cabinet Grotesk', 'Clash Display', sans-serif;
    --font-script: 'Great Vibes', 'Dancing Script', cursive;
    
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 40px rgba(18, 10, 33, 0.04);
    --shadow-hover: 0 16px 48px rgba(173, 6, 14, 0.08);
    --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.12);
    --shadow-red: 0 8px 24px rgba(173, 6, 14, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utility */
.font-serif { font-family: var(--font-serif); }
.font-accent { font-family: var(--font-heading); }
.script-font { font-family: var(--font-script); }
.gold-text {
    color: var(--gold-dark);
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.uppercase { text-transform: uppercase; }
.font-bold { font-weight: 700; }
.text-sm { font-size: 0.875rem; }
.text-3xl { font-size: 2rem; }
.tracking-wider { letter-spacing: 0.08em; }
.margin-top-xs { margin-top: 8px; }
.margin-top-sm { margin-top: 16px; }
.margin-top { margin-top: 24px; }
.opacity-90 { opacity: 0.9; }
.text-center { text-align: center; }
.w-full { width: 100%; }

/* Oversight top banner */
.oversight-top-banner {
    background-color: var(--primary-red);
    color: #ffffff;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 101;
    border-bottom: 2px solid var(--gold-primary);
}
.oversight-signature-box {
    margin-top: 24px;
    padding: 12px 16px;
    background-color: rgba(173, 6, 14, 0.03);
    border-left: 3px solid var(--primary-red);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 0 6px 6px 0;
}
.oversight-signature-box .signature-prefix {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
}
.oversight-signature-box .signature-name {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--primary-red);
    line-height: 1;
}

/* Navigation Bar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(173, 6, 14, 0.08);
    box-shadow: 0 2px 20px rgba(18, 10, 33, 0.03);
    transition: var(--transition-smooth);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
}

.nav-logo svg {
    color: var(--primary-red);
    filter: drop-shadow(0 0 2px rgba(173, 6, 14, 0.15));
}

.nav-logo span {
    font-family: var(--font-heading);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
    position: relative;
    padding: 4px 0;
}

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

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    outline: none;
}

/* Mobile Drawer */
.mobile-drawer {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--card-border);
    padding: 24px;
    z-index: 99;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 10px 20px rgba(18, 10, 33, 0.05);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.drawer-link {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 0;
    border-bottom: 1px solid rgba(18,10,33,0.05);
}

.drawer-link:last-child {
    border-bottom: none;
}

/* Buttons */
.btn {
    font-family: var(--font-sans);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.925rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-red) 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(173, 6, 14, 0.2);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(173, 6, 14, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary-red);
    border-color: rgba(173, 6, 14, 0.2);
}

.btn-outline:hover {
    background-color: rgba(173, 6, 14, 0.03);
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(173, 6, 14, 0.1);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
    border-radius: 4px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: 8px;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 140px 24px 100px 24px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, rgba(173, 6, 14, 0.04) 40%, #ffffff 80%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54 48c-2 0-3 1-4 2v4c0 1-1 2-2 2h-4c-1 0-2 1-2 2 0 1-1 2-2 2H16c-1 0-2-1-2-2 0-1-1-2-2-2H8c-1 0-2-1-2-2v-4c0-1-1-2-2-2H0c-1 0-2-1-2-2 0-1 1-2 2-2h4c1 0 2-1 2-2V16c0-1 1-2 2-2h4c1 0 2-1 2-2 0-1 1-2 2-2h28c1 0 2 1 2 2 0 1 1 2 2 2h4c1 0 2 1 2 2v28c0 1 1 2 2 2h4c1 0 2 1 2 2 0 1-1 2-2 2zM16 16v28h28V16H16zm2 2h24v24H18V18z' fill='%23ad060e' fill-opacity='0.015' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 1;
}

.hero-content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text-area {
    max-width: 650px;
}

.ministry-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--primary-red);
    border-bottom: 2px solid var(--gold-primary);
    width: fit-content;
    padding-bottom: 4px;
    margin-bottom: 24px;
}

.hero-text-area h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Glowing Altar & Daily Word Card in Hero */
.glowing-altar {
    position: relative;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(212,175,55,0.3) 0%, rgba(173,6,14,0.3) 50%, rgba(255,255,255,1) 100%);
    box-shadow: var(--shadow-premium), var(--shadow-red);
}

.daily-word-preview {
    background-color: var(--card-bg);
    border-radius: 14px;
    padding: 32px;
    position: relative;
}

.daily-word-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(173,6,14,0.03), transparent 70%);
    border-radius: 14px;
    pointer-events: none;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.word-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary-red);
    background-color: rgba(173, 6, 14, 0.05);
    border: 1px solid rgba(173, 6, 14, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
}

.card-header .date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.glowing-altar h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.glowing-altar p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.65;
}

.read-more-link {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.read-more-link:hover {
    color: var(--accent-red);
    padding-left: 5px;
}

/* Sections Structure */
section {
    padding: 100px 24px;
    position: relative;
    background-color: var(--bg-color);
}

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

.section-header-center {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.accent-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary-red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-header-center h2, .section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-header-center p, .section-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

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

/* Card base styling */
.card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.card:hover {
    border-color: var(--card-border-hover);
    box-shadow: var(--shadow-premium), var(--shadow-gold);
    transform: translateY(-2px);
}

.card h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.panel-desc, .section-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 24px;
}

/* About Section Custom styles */
.about-section {
    background-color: var(--bg-alt);
    border-top: 1px solid rgba(18, 10, 33, 0.04);
}

.about-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-frame {
    position: relative;
    width: 320px;
    height: 380px;
    background: linear-gradient(135deg, var(--gold-primary), var(--primary-red));
    padding: 2px;
    border-radius: 16px;
    box-shadow: var(--shadow-premium), var(--shadow-red);
}

.frame-content {
    background-color: var(--bg-color);
    width: 100%;
    height: 100%;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

.spiritual-illustration {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

.about-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 16px 16px 16px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.8) 60%, transparent 100%);
    text-align: center;
    z-index: 2;
}

.about-overlay-text .title {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 4px;
}

.about-overlay-text .subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.about-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-container .section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 24px;
}

.about-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-socials {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-icon-btn {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.social-icon-btn.facebook {
    background-color: rgba(24, 119, 242, 0.08);
    border: 1px solid rgba(24, 119, 242, 0.2);
    color: #1877f2;
}

.social-icon-btn.facebook:hover {
    background-color: #1877f2;
    color: #fff;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-icon-btn.youtube {
    background-color: rgba(173, 6, 14, 0.05);
    border: 1px solid rgba(173, 6, 14, 0.2);
    color: var(--primary-red);
}

.social-icon-btn.youtube:hover {
    background-color: var(--primary-red);
    color: #fff;
    box-shadow: 0 4px 15px rgba(173, 6, 14, 0.3);
}

/* Daily Prophetic Word Card in Section */
.prophetic-card-container {
    max-width: 750px;
    margin: 0 auto;
}

.prophetic-card {
    background-color: var(--card-bg);
    border: 1.5px solid var(--card-border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-premium), var(--shadow-red);
    backdrop-filter: blur(10px);
    position: relative;
    transition: var(--transition-smooth);
}

.prophetic-card:hover {
    border-color: var(--card-border-hover);
    box-shadow: var(--shadow-premium), var(--shadow-gold), var(--shadow-red);
}

.prophetic-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(173, 6, 14, 0.08);
    padding-bottom: 18px;
    margin-bottom: 24px;
}

.verse-ref {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-red);
    background-color: rgba(173, 6, 14, 0.05);
    padding: 4px 12px;
    border-radius: 30px;
    border: 1px solid rgba(173, 6, 14, 0.1);
}

.prophetic-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.word-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.word-content {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 32px;
}

.prophetic-card-footer {
    display: flex;
    gap: 16px;
}

/* Prayer Bot Interface */
.bot-interface-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    margin-top: 10px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid rgba(18, 10, 33, 0.12);
    border-radius: 6px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(173, 6, 14, 0.1);
}

.focus-selector-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.focus-btn {
    background-color: #fcfbf9;
    border: 1px solid rgba(18, 10, 33, 0.08);
    border-radius: 6px;
    color: var(--text-secondary);
    padding: 10px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.focus-btn:hover {
    background-color: rgba(173, 6, 14, 0.02);
    border-color: rgba(173, 6, 14, 0.15);
}

.focus-btn.active {
    background-color: rgba(173, 6, 14, 0.05);
    border-color: var(--primary-red);
    color: var(--primary-red);
    font-weight: 600;
}

.bot-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 380px;
    text-align: center;
    color: var(--text-muted);
    padding: 20px;
}

.bot-placeholder svg {
    color: rgba(212, 175, 55, 0.15);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.05));
}

.bot-placeholder h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.bot-placeholder p {
    font-size: 0.85rem;
    max-width: 280px;
}

.bot-result {
    animation: fadeIn 0.5s ease;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.bot-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), var(--primary-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    position: relative;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    animation: ringPulse 2s infinite;
}

@keyframes ringPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.result-header .status {
    font-size: 0.75rem;
    color: var(--gold-primary);
    font-weight: 600;
}

.result-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.prophetic-response h5, .prayer-box h5 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-primary);
    margin-bottom: 6px;
}

.prophetic-response p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
}

.scripture-box {
    background-color: rgba(0,0,0,0.25);
    border-left: 3px solid var(--gold-primary);
    padding: 16px;
    border-radius: 0 8px 8px 0;
}

.scripture-badge {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.scripture-box h5 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.scripture-box p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

.prayer-box {
    background-color: rgba(120, 53, 255, 0.04);
    border: 1px dashed rgba(120, 53, 255, 0.2);
    padding: 16px;
    border-radius: 8px;
}

.prayer-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.result-footer {
    display: flex;
    gap: 12px;
}

/* YouTube Section Custom designs */
.youtube-section {
    background-color: var(--bg-alt);
    border-top: 1px solid rgba(255,255,255,0.02);
}

.video-card {
    padding: 0;
    overflow: hidden;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.thumb-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.thumb-1 { background-image: linear-gradient(135deg, rgba(28, 16, 51, 0.8), rgba(0,0,0,0.4)), url('data:image/svg+xml,%3Csvg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Crect width="100" height="100" fill="%231e1333"/%3E%3Cpath d="M50 20l25 60H25z" fill="rgba(212,175,55,0.1)"/%3E%3C/svg%3E'); }
.thumb-2 { background-image: linear-gradient(135deg, rgba(28, 16, 51, 0.8), rgba(0,0,0,0.4)), url('data:image/svg+xml,%3Csvg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Crect width="100" height="100" fill="%231e1333"/%3E%3Ccircle cx="50" cy="50" r="30" fill="rgba(120,53,255,0.1)"/%3E%3C/svg%3E'); }
.thumb-3 { background-image: linear-gradient(135deg, rgba(28, 16, 51, 0.8), rgba(0,0,0,0.4)), url('data:image/svg+xml,%3Csvg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Crect width="100" height="100" fill="%231e1333"/%3E%3Cpath d="M20 50h60M50 20v60" stroke="rgba(212,175,55,0.1)" stroke-width="5"/%3E%3C/svg%3E'); }

.video-card:hover .thumb-graphic {
    transform: scale(1.05);
}

.duration {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background-color: rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 2px 6px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
}

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gold-primary);
    color: #0c0717;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-smooth);
}

.video-card:hover .play-btn {
    background-color: var(--gold-light);
    transform: scale(1.1);
}

.video-details {
    padding: 24px;
}

.video-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
}

.video-details h3 {
    font-size: 1.15rem;
    font-family: var(--font-sans);
    font-weight: 700;
    margin-top: 8px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-details p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.video-watch-link {
    text-decoration: none;
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.video-watch-link:hover {
    color: var(--accent-red);
    padding-left: 4px;
}

/* Prayer requests and Altar Feed */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.prayer-list-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(18, 10, 33, 0.08);
    padding-bottom: 14px;
    margin-bottom: 16px;
}

.live-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-badge .dot {
    width: 6px;
    height: 6px;
    background-color: #ef4444;
}

.prayer-feed {
    flex-grow: 1;
    overflow-y: auto;
    max-height: 380px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 8px;
}

.prayer-item {
    background-color: rgba(173, 6, 14, 0.02);
    border: 1px solid rgba(173, 6, 14, 0.05);
    border-radius: 8px;
    padding: 16px;
    animation: fadeIn 0.4s ease;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.petitioner-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.petition-badge {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
}

.petition-badge.healing { background-color: rgba(16, 185, 129, 0.1); color: #10b981; }
.petition-badge.deliverance { background-color: rgba(239, 68, 68, 0.1); color: #ef4444; }
.petition-badge.finance { background-color: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.petition-badge.destiny { background-color: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.petition-badge.family { background-color: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

.petition-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 12px;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.agree-btn {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(18, 10, 33, 0.08);
}

.agree-btn:hover {
    background-color: rgba(173, 6, 14, 0.04);
    border-color: rgba(173, 6, 14, 0.15);
    color: var(--primary-red);
}

.agree-btn.agreed {
    background-color: rgba(173, 6, 14, 0.08);
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* WhatsApp Crimson/Gold Banner */
.card-hero-purple {
    background: linear-gradient(135deg, rgba(173, 6, 14, 0.9) 0%, rgba(18, 10, 33, 0.95) 100%);
    border: 1.5px solid var(--gold-primary);
    box-shadow: var(--shadow-premium), var(--shadow-red);
}

.whatsapp-btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inline-icon {
    flex-shrink: 0;
}

/* Giving & Partnerships Cards */
.max-width-lg {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.donate-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.donate-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.donate-icon.cash-app {
    background-color: rgba(0, 212, 121, 0.1);
    color: #00d479;
    border: 1.5px solid rgba(0, 212, 121, 0.25);
    font-size: 1.8rem;
    font-weight: 700;
}

.donate-icon.paypal {
    background-color: rgba(0, 112, 186, 0.1);
    color: #0070ba;
    border: 1.5px solid rgba(0, 112, 186, 0.25);
}

.donate-tag {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 12px;
}

.donate-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 320px;
}

.donate-card .btn {
    margin-top: auto;
}

.altar-info {
    border-color: rgba(18, 10, 33, 0.05);
    background-color: rgba(18, 10, 33, 0.02);
    box-shadow: none;
    backdrop-filter: none;
}

.altar-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary-red);
    margin-bottom: 6px;
}

.altar-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.altar-info strong {
    color: var(--text-primary);
}

/* Footer styling */
.footer {
    background-color: #120a21;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 60px 24px 30px 24px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
}

.footer-brand .logo svg {
    color: var(--gold-primary);
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.footer-links-group a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-links-group a:hover {
    color: var(--gold-primary);
}

.footer-contact {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(173, 6, 14, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(173, 6, 14, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(173, 6, 14, 0);
    }
}

.dot.pulse {
    box-shadow: 0 0 0 0 rgba(173, 6, 14, 0.5);
    animation: pulse 1.6s infinite;
}

/* Responsive Designs */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-content-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .ministry-tag {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .about-frame {
        width: 100%;
        max-width: 320px;
    }
    .bot-interface-grid {
        grid-template-columns: 1fr;
    }
    .prophetic-card {
        padding: 24px;
    }
    .prophetic-card-footer {
        flex-direction: column;
        gap: 10px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Floating Chatbot Widget --- */
#chatFab {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-red), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1050;
    box-shadow: var(--shadow-red), 0 4px 20px rgba(18, 10, 33, 0.2);
    transition: var(--transition-smooth);
    user-select: none;
    -webkit-user-select: none;
}

#chatFab:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(173, 6, 14, 0.45);
}

#chatFab.active {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#chatFab.active .chat-fab-icon svg {
    stroke: var(--primary-red);
}

#chatFab.active .chat-fab-close svg {
    stroke: var(--primary-red);
}

.chat-fab-icon, .chat-fab-close {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-fab-icon svg {
    stroke: #ffffff !important;
}

.chat-fab-close svg {
    stroke: #ffffff !important;
}

.chat-fab-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
    opacity: 0;
    animation: fabPulse 2.5s infinite;
}

@keyframes fabPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

.chat-fab-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: #ef4444;
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
    animation: badgeBounce 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes badgeBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

#chatPanel {
    position: fixed;
    bottom: 112px;
    right: 36px;
    width: 380px;
    height: 520px;
    max-height: 80vh;
    background: #ffffff;
    border: 1px solid rgba(18, 10, 33, 0.08);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    z-index: 1040;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-premium), var(--shadow-red), 0 0 40px rgba(173, 6, 14, 0.03);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#chatPanel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(173,6,14,0.06), rgba(212,175,55,0.06));
    border-bottom: 1px solid rgba(18, 10, 33, 0.06);
    flex-shrink: 0;
}

.chat-header-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), var(--primary-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    flex-shrink: 0;
}

.chat-avatar-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.chat-header-info {
    flex: 1;
    min-width: 0;
}

.chat-header-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.chat-header-status {
    font-size: 0.7rem;
    color: var(--primary-red);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.chat-header-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: var(--transition-smooth);
    line-height: 1;
}

.chat-header-close:hover {
    color: var(--text-primary);
    background: rgba(18, 10, 33, 0.05);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(18, 10, 33, 0.08) transparent;
}

.chat-msg {
    display: flex;
    flex-direction: column;
    animation: msgFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.chat-msg.bot {
    align-items: flex-start;
}

.chat-msg.user {
    align-items: flex-end;
}

.chat-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.85rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.chat-bubble.bot {
    background: rgba(173, 6, 14, 0.04);
    color: var(--text-primary);
    border: 1px solid rgba(173, 6, 14, 0.06);
    border-bottom-left-radius: 4px;
}

.chat-bubble.user {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-red) 50%);
    color: #ffffff;
    border-bottom-right-radius: 4px;
    font-weight: 600;
}

.chat-bubble strong {
    color: var(--primary-red);
    font-weight: 700;
}

.chat-bubble.user strong {
    color: #ffffff;
}

.chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    animation: msgFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-quick-btn {
    padding: 6px 12px;
    border-radius: 30px;
    border: 1px solid rgba(173, 6, 14, 0.25);
    background: rgba(173, 6, 14, 0.04);
    color: var(--primary-red);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.chat-quick-btn:hover {
    background: rgba(173, 6, 14, 0.08);
    border-color: var(--primary-red);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(173, 6, 14, 0.15);
}

.chat-input-area {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid rgba(18, 10, 33, 0.06);
    background: rgba(255, 255, 255, 0.95);
    flex-shrink: 0;
}

#floating-chat-input {
    flex: 1;
    border: 1px solid rgba(18, 10, 33, 0.1);
    background: #f9f8fa;
    border-radius: 30px;
    padding: 10px 16px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition-smooth);
}

#floating-chat-input:focus {
    border-color: var(--primary-red);
    background: #ffffff;
}

#floating-chat-input::placeholder {
    color: rgba(18, 10, 33, 0.35);
}

#floating-chat-send {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--accent-red), var(--primary-red));
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

#floating-chat-send:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(173, 6, 14, 0.3);
}

@media (max-width: 480px) {
    #chatPanel {
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
        border: none;
    }
    
    #chatPanel.open {
        border-radius: 20px 20px 0 0;
        border-top: 1.5px solid var(--card-border);
    }
    
    #chatFab {
        bottom: 24px;
        right: 24px;
        left: auto;
    }
}
