/* Encouragement Section - Unique Classes */
.encouragement-section {
    position: relative;
    padding: 5rem 1rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

/* Background Image */
.encouragement-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Overlay */
.encouragement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

/* Container */
.encouragement-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    padding: 0 1.5rem;
}

/* Encouragement Card */
.encouragement-card {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Title */
.encouragement-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.2;
}

.encouragement-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #4361ee;
    margin: 1rem auto;
    border-radius: 2px;
}

/* Description */
.encouragement-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.encouragement-desc p {
    margin-bottom: 1rem;
}

/* Faith Statement */
.faith-statement {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Faith Header */
.faith-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.faith-header i {
    color: #4361ee;
    font-size: 2rem;
}

.faith-header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

/* Faith Items */
.faith-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Faith Item */
.faith-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faith-item:hover {
    background: rgba(67, 97, 238, 0.2);
    transform: translateY(-2px);
    border-color: rgba(67, 97, 238, 0.3);
}

.faith-item i {
    color: #4361ee;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.faith-item span {
    font-size: 1rem;
    text-align: left;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .encouragement-section {
        padding: 3rem 1rem;
        min-height: auto;
    }

    .encouragement-card {
        padding: 2rem 1.5rem;
    }

    .encouragement-title {
        font-size: 2.25rem;
    }

    .encouragement-desc {
        font-size: 1.125rem;
    }

    .faith-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .faith-header h2 {
        font-size: 1.75rem;
    }

    .faith-items {
        grid-template-columns: 1fr;
    }
}

/* Animation */
@keyframes encouragementFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.encouragement-card {
    animation: encouragementFadeIn 0.8s ease-out;
}

.faith-item {
    animation: encouragementFadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.faith-item:nth-child(1) {
    animation-delay: 0.2s;
}

.faith-item:nth-child(2) {
    animation-delay: 0.3s;
}

.faith-item:nth-child(3) {
    animation-delay: 0.4s;
}

.faith-item:nth-child(4) {
    animation-delay: 0.5s;
}