/* ---------------------------------------------------------
   My Faith Journey – Enhanced Styling
   Features: Animated Buttons, Fade-in Content, Hero Banner,
             Day Completed Button, Path Banner
--------------------------------------------------------- */

/* Global Theme Colours */
:root {
    --mfj-navy: #1f3b70;
    --mfj-light-navy: #2e4c8a;
    --mfj-white: #ffffff;
    --mfj-gold: #f7d774;
    --mfj-glow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* ---------------------------------------------------------
   HERO BANNER
--------------------------------------------------------- */

.mfj-hero {
    background: linear-gradient(135deg, var(--mfj-navy), var(--mfj-light-navy));
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: var(--mfj-glow);
    color: var(--mfj-white);
}

.mfj-hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.mfj-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 5px 0;
}

/* ---------------------------------------------------------
   Animated Glowing Buttons
--------------------------------------------------------- */

.mfj-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 25px;
}

.mfj-select-btn {
    background: var(--mfj-light-navy);
    color: var(--mfj-white);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease, box-shadow 0.4s ease;
    box-shadow: var(--mfj-glow);
    position: relative;
}

.mfj-select-btn:hover {
    background: var(--mfj-gold);
    color: var(--mfj-navy);
    box-shadow: 0 0 25px rgba(247, 215, 116, 0.7);
}

.mfj-select-btn.active {
    background: var(--mfj-gold);
    color: var(--mfj-navy);
    box-shadow: 0 0 25px rgba(247, 215, 116, 0.7);
}

/* ---------------------------------------------------------
   Fade-in Content
--------------------------------------------------------- */

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

.mfj-day p,
.mfj-heading {
    animation: mfjFadeIn 0.8s ease forwards;
}

/* ---------------------------------------------------------
   Daily Content Box
--------------------------------------------------------- */

.mfj-day {
    background: var(--mfj-navy);
    color: var(--mfj-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--mfj-glow);
    margin-bottom: 30px;
}

.mfj-heading {
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--mfj-gold);
    font-weight: 700;
}

.mfj-icon {
    margin-right: 8px;
}

/* ---------------------------------------------------------
   Day Completed Button
--------------------------------------------------------- */

.mfj-complete-btn {
    background: var(--mfj-gold);
    color: var(--mfj-navy);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--mfj-glow);
}

.mfj-complete-btn:hover {
    background: var(--mfj-white);
    color: var(--mfj-navy);
    transform: scale(1.05);
}

.mfj-complete-btn.completed {
    background: #4caf50;
    color: var(--mfj-white);
    box-shadow: 0 0 25px rgba(76, 175, 80, 0.7);
}

.mfj-complete-btn.completed::after {
    content: " ✓";
    font-weight: 900;
}

/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */

.mfj-footer {
    text-align: center;
    padding: 20px;
    background: var(--mfj-light-navy);
    color: var(--mfj-white);
    border-radius: 12px;
    box-shadow: var(--mfj-glow);
}

.mfj-footer-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.mfj-footer-btn {
    background: var(--mfj-gold);
    color: var(--mfj-navy);
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mfj-footer-btn:hover {
    background: var(--mfj-white);
    color: var(--mfj-navy);
}

/* ---------------------------------------------------------
   Glow Effect
--------------------------------------------------------- */

.glow {
    box-shadow: var(--mfj-glow);
}

/* ---------------------------------------------------------
   Responsive Design
--------------------------------------------------------- */

@media (max-width: 600px) {
    .mfj-title {
        font-size: 1.8rem;
    }

    .mfj-select-btn {
        width: 100%;
        text-align: center;
    }

    .mfj-day {
        padding: 20px;
    }

    .mfj-hero h1 {
        font-size: 2rem;
    }

    .mfj-path-banner h2 {
        font-size: 1.4rem;
    }
}
.mfj-path-banner {
    background: var(--mfj-light-navy);
    border-radius: 12px;
    box-shadow: var(--mfj-glow);
    margin-bottom: 25px;
    padding: 12px 0;
    text-align: center;
}

.mfj-path-banner h2 {
    color: var(--mfj-white);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}
