/* Fellowship Page Styles */

/* Reuse Gradient Heading from volunteer.css */
.gradient-heading {
    background: linear-gradient(90deg, var(--theme-color), var(--theme-color2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--title-font);
    position: relative;
    display: inline-block;
    animation: headingFadeIn 1s ease-in-out;
}

.gradient-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--theme-color), var(--theme-color2));
    border-radius: 2px;
}

@keyframes headingFadeIn {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

h3 i {
    margin-right: 10px;
    vertical-align: middle;
}

/* Fellowship Cards */
.fellowship-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fellowship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.fellowship-card i {
    margin-bottom: 15px;
    color: var(--theme-color2);
}

.fellowship-card h4 {
    font-family: var(--title-font);
    font-size: 1.5rem;
    color: var(--theme-color);
    margin-bottom: 10px;
}

.fellowship-card h4 small {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.fellowship-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.fellowship-arrow {
    display: inline-block;
    color: var(--theme-color2);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.fellowship-card:hover .fellowship-arrow {
    transform: translateX(5px);
}

/* Journey Content */
.journey-content {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.journey-content h4 {
    font-family: var(--title-font);
    font-size: 1.4rem;
    color: var(--theme-color);
    margin-top: 15px;
    margin-bottom: 10px;
}

.journey-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-section a {
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-section a:hover {
    color: var(--theme-color);
}

/* Social Sharing */
.social-sharing .addtoany .a2a_kit a {
    margin: 0 5px;
    font-size: 1.5rem;
    color: var(--theme-color);
    transition: color 0.3s ease;
}

.social-sharing .addtoany .a2a_kit a:hover {
    color: var(--theme-color2);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .gradient-heading {
        font-size: 1.8rem;
    }
    .fellowship-card h4 {
        font-size: 1.2rem;
    }
    .fellowship-card h4 small {
        font-size: 0.8rem;
    }
    .fellowship-card p {
        font-size: 0.9rem;
    }
    .journey-content h4 {
        font-size: 1.2rem;
    }
    .journey-content p {
        font-size: 0.9rem;
    }
    .contact-section {
        padding: 15px;
    }
}