/* Import Christian Font - EB Garamond */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700&display=swap');

/* Color Variables - Faith-Inspired Theme */
:root {
    --faith-blue: #a8c4e8;
    --faith-blue-dark: #8ba9cf;
    --faith-blue-light: #c5d9f0;
    --faith-blue-hover: #7a96bb;
}

body {
    font-family: Arial, sans-serif;
}

/* Apply Christian Font to Headings */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
.navbar-brand {
    font-family: 'EB Garamond', serif;
    font-weight: 600;
}

/* Bootstrap Primary Color Override */
.bg-primary {
    background-color: var(--faith-blue) !important;
}

.btn-primary {
    background-color: var(--faith-blue);
    border-color: var(--faith-blue-dark);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--faith-blue-dark);
    border-color: var(--faith-blue-hover);
}

.btn-primary:focus,
.btn-primary:active {
    background-color: var(--faith-blue-dark);
    border-color: var(--faith-blue-hover);
    box-shadow: 0 0 0 0.25rem rgba(168, 196, 232, 0.5);
}

.btn-outline-light:hover {
    background-color: var(--faith-blue-light);
    border-color: var(--faith-blue-light);
    color: #212529;
}

/* Link Colors */
a {
    color: var(--faith-blue-dark);
}

a:hover {
    color: var(--faith-blue-hover);
}

.hero-section {
    background: url('../images/hero-home.png') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for better text readability */
    z-index: 1;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

.scripture-verse-section {
    background-color: #f8f9fa; /* Light background for contrast */
    color: #343a40;
    padding: 40px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.scripture-verse-section p {
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   DONATION PAGE STYLES
   ======================================== */

.donate-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/hero-home.png') no-repeat center center/cover;
    padding: 100px 0;
}

.donate-hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Donation Amount Cards */
.donation-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #dee2e6;
}

.donation-card:hover {
    border-color: var(--faith-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(168, 196, 232, 0.3);
}

.donation-card.selected {
    border-color: var(--faith-blue);
    background-color: rgba(168, 196, 232, 0.1);
    box-shadow: 0 0 0 3px rgba(168, 196, 232, 0.3);
}

.donation-card .donation-amount {
    font-family: 'EB Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--faith-blue-dark);
}

.donation-featured {
    border-color: var(--faith-blue);
    background: linear-gradient(135deg, rgba(168, 196, 232, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Payment Method Cards */
.payment-card {
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-card .fa-2x {
    color: var(--faith-blue-dark);
}

/* Custom Amount Input */
#customAmount {
    font-size: 1.25rem;
    padding: 0.75rem 1rem;
    border-color: var(--faith-blue);
}

#customAmount:focus {
    border-color: var(--faith-blue-dark);
    box-shadow: 0 0 0 0.25rem rgba(168, 196, 232, 0.25);
}

/* Donation CTA Section (for homepage) */
.donation-cta {
    background: linear-gradient(135deg, var(--faith-blue-light) 0%, var(--faith-blue) 100%);
    padding: 60px 0;
}

.donation-cta h2 {
    color: #212529;
}

.donation-cta .btn-dark {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

/* ========================================
   FOOTER STYLES - CrossExamined Inspired
   ======================================== */

.site-footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding-top: 0;
}

.footer-top {
    background-color: #16213e;
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid rgba(168, 196, 232, 0.2);
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 10px;
}

.footer-tagline {
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-main {
    padding: 50px 0 30px;
}

.footer-column h5 {
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--faith-blue);
    display: inline-block;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--faith-blue);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(168, 196, 232, 0.2);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--faith-blue);
    transform: translateY(-3px);
}

.footer-support-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-donate-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--faith-blue) 0%, var(--faith-blue-dark) 100%);
    color: #ffffff;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 196, 232, 0.3);
}

.footer-donate-btn:hover {
    background: linear-gradient(135deg, var(--faith-blue-dark) 0%, var(--faith-blue-hover) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(168, 196, 232, 0.4);
    color: #ffffff;
}

.footer-donate-btn i {
    margin-right: 10px;
}

.footer-bottom {
    background-color: #0f0f1a;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(168, 196, 232, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--faith-blue);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-main .row {
        text-align: center;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .footer-column h5 {
        display: block;
    }

    .footer-social {
        justify-content: center;
    }
}
