﻿/* ---------------------------------------------------
   FaithAI Global Theme
   (Poppins + Inter + Purple Gradient)
------------------------------------------------------ */

:root {
    --purple-dark: #4c1d95;
    --purple: #6d28d9;
    --purple-light: #a78bfa;
    --white: #ffffff;
    --bg-dark: #0f172a;
}

/* Fonts */
.title-font {
    font-family: 'Poppins', sans-serif;
}

.body-font {
    font-family: 'Inter', sans-serif;
}

/* NAVBAR */
.bg-deep-purple {
    background: linear-gradient(90deg, var(--purple-dark), var(--purple));
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(109, 40, 217, 0.4), rgba(0, 0, 0, 0.85));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.highlight-text {
    color: var(--purple-light);
}

/* SECTION TITLES */
.section-title {
    font-weight: bold;
    color: var(--purple-dark);
}

/* FEATURE CARD */
.feature-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
    }

/* DONATION SECTION */
.donation-section {
    background: linear-gradient(to right, var(--purple-dark), var(--purple));
}

/* FOOTER */
.footer {
    background: #f8f9fa;
}

.small-link {
    color: var(--purple);
    text-decoration: none;
}

    .small-link:hover {
        text-decoration: underline;
    }

/* ------------------------------------------
   Prayer System Enhancements (Add Only)
-------------------------------------------*/

/* Header Purple Gradient (matches your screenshots) */
.prayer-header-gradient,
.submit-header-gradient {
    background: linear-gradient(120deg, #4c1d95, #6d28d9);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

/* Glass Panel Card */
.glass-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    max-width: 650px;
    margin: 0 auto;
}

/* Input Fields */
.glass-input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
    margin-bottom: 1rem;
}

    .glass-input::placeholder {
        color: #e5d4ff;
    }

/* Submit Button */
.btn-prayer {
    background: #8b5cf6;
    border: none;
    padding: 14px 22px;
    color: #fff;
    border-radius: 10px;
    font-size: 1.1rem;
    width: 100%;
    cursor: pointer;
    transition: 0.25s ease;
}

    .btn-prayer:hover {
        background: #7c3aed;
        transform: translateY(-2px);
    }

/* Small Links */
.prayer-links {
    margin-top: 1rem;
    text-align: center;
}

    .prayer-links a {
        color: #d8b4fe;
        text-decoration: none;
    }

        .prayer-links a:hover {
            text-decoration: underline;
        }

/* Modal Overlay */
.modal-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    background: rgba(0,0,0,0.65);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.modal-box {
    background: rgba(255,255,255,0.14);
    border-radius: 16px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    text-align: center;
}
