/*!
 * FCC Website Stylesheet
/*!
 * style.css
 * Author: M.R.
 * Description: Main stylesheet for the FCC Website.
 * Last updated: 2025-27-2025
 */

.hero-inner {
    position: relative;
    height: 395px;
    display: flex;
    background: linear-gradient(to bottom, #2c1c46, #383837);
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    margin-top: 0px;
    overflow: hidden;
}

    .hero-inner::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient( to bottom, rgba(44, 28, 70, 0.5) 30%, rgba(150, 150, 149, 0.2) 70% );
        pointer-events: none;
    }

.hero-content {
    position: relative;
    z-index: 3;
}
.breadcrumbs {
    margin-top: 250px;
    font-size: 0.9rem;
    text-align: left;
}

    .breadcrumbs span {
        color: #f3e8d4;
    }

.page-title {
    text-align: left;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--beige);
    margin-top: 10px;
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0px 0px;
    margin-top: -120px;
    position: relative;
    z-index: 3;
}

.about-box {
    background-color: var(--beige-lightest);
    width: 310px;
    padding: 20px;
    margin-bottom: 13px;
    min-height: 300px;
    text-align: center;
    box-sizing: border-box;
}

    .about-box h4 {
        color: var(--brown);
        font-weight: bold;
        font-size: var(--font-md);
        margin: 15px 0 5px;
    }

    .about-box p {
        margin-top: 20px;
        font-weight: lighter;
        color: var(--brown-dark);
        font-size: var(--font-md);
        line-height: 1.5;
    }

.about-box-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
}

.highlight-box {
    background-color: var(--brown);
    font-weight: lighter;
    color: #fff;
    width: 310px;
    padding: 25px;
    margin: 15px;
    box-sizing: border-box;
}

    .highlight-box h4 {
        font-weight: 400;
        font-size: 1rem;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .highlight-box p {
        font-size: var(--font-md);
        line-height: 1.5;
    }

@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
        align-items: center;
    }

    .about-box,
    .highlight-box {
        width: 90%;
        max-width: 600px;
    }
}

.know-more {
    background-color: var(--beige-lightest);
}

.about-us {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px;
    background-color: var(--beige-lightest);
}

.about-image {
    flex: 1;
    height: 100%;
    width: 100%;
    text-align: center;
}

    .about-image img {
        max-width: 100%;
        height: auto;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 24px rgba(44, 28, 70, 0.08);
        border-radius: 12px;
    }

        .about-image img:hover {
            transform: scale(1.05) rotate(-2deg);
            box-shadow: 0 8px 32px rgba(44, 28, 70, 0.18);
            cursor: pointer;
        }

.about-text {
    flex: 2;
    min-width: 300px;
    padding: 20px 40px;
    color: #4a2f00;
}

    .about-text h2 {
        color: #a06b00;
        margin-bottom: 10px;
        font-size: 1.8rem;
        position: relative;
    }

    .about-text p {
        font-weight: lighter;
        color: var(--brown-dark);
        font-size: var(--font-md);
        line-height: 1.7;
        font-size: var(--font-lg);
    }

@media (max-width: 768px) {
    .about-us {
        flex-direction: column;
        padding: 30px 20px;
    }

    .about-text {
        padding: 20px;
    }
}

.statement-of-faith {
    background-color: var(--cream-dark);
}

.statement-image-page {
    flex: 1;
    height: 100%;
    width: 100%;
    text-align: right;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.statement-image {
    flex: 1;
    height: 100%;
    width: 100%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

    .statement-image img {
        max-width: 100%;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 24px rgba(44, 28, 70, 0.08);
    }

        .statement-image img:hover {
            transform: scale(1.05) rotate(-2deg);
            box-shadow: 0 8px 32px rgba(44, 28, 70, 0.18);
            cursor: pointer;
        }

.statement-of-faith p {
    font-size: var(--font-xl);
    font-weight: lighter;
    color: var(--brown-dark);
    font-size: var(--font-md);
    line-height: 1.7;
    width: 100%;
}

.misson {
    margin-top: -200px;
    background-color: var(--brown);
    color: var(--beige);
}

.mission-content {
    align-items: center;
    padding: 0 0 40px 40px;
}

    .mission-content p {
        font-weight: lighter;
        color: var(--brown-dark);
        font-size: var(--font-xl);
        line-height: 1.7;
        padding-left: 20px;
        border-left: 1px solid var(--beige);
    }

.history-section {
    background-image: linear-gradient(rgba(154, 97, 7, 0.5), rgba(0, 0, 0, 0.4)), url("/images/about-bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.history-section-header {
    background-color: var(--cream-dark);
    padding: 40px 0 15px 0;
    border-radius: 0;
}

.history-container {
    background-color: rgba(246, 232, 207, 0.9);
    align-items: center;
    padding: 20px;
    margin-bottom: 30px;
}

    .history-container p {
        line-height: 1.7;
        font-size: var(--font-md);
        font-weight: lighter;
    }


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: var(--accent-gradient);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(154, 97, 7, 0.3);
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 6px 20px rgba(154, 97, 7, 0.4);
    }

    .back-to-top:focus {
        outline: 3px solid var(--brown);
        outline-offset: 4px;
    }

    .back-to-top:active {
        transform: translateY(-3px) scale(1.05);
    }

    .back-to-top svg {
        width: 24px;
        height: 24px;
        fill: white;
        transition: transform 0.3s ease;
    }

    .back-to-top:hover svg {
        transform: translateY(-3px);
    }