/* ===================================
   Lupus Warriors Page Styles
   =================================== */

/* Hero Section */
.warriors-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4B0082 0%, #6A0DAD 100%);
    overflow: hidden;
}

.warriors-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/summit-three-pillars.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.9) 0%, rgba(106, 13, 173, 0.85) 100%);
    z-index: 2;
}

.warriors-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
    margin-top: 80px;
}

.warriors-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.warriors-hero .hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.warriors-hero .hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Stories Introduction */
.stories-intro {
    background-color: var(--light-grey);
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--lupus-purple);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Warrior Stories Grid */
.warriors-stories {
    background-color: var(--white);
}

.warrior-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 4rem;
    transition: var(--transition-smooth);
}

.warrior-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Warrior Image */
.warrior-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.warrior-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.warrior-card:hover .warrior-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(75, 0, 130, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.warrior-badge {
    background: linear-gradient(135deg, #6A0DAD 0%, #4B0082 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(75, 0, 130, 0.4);
}

/* Warrior Content */
.warrior-content {
    padding: 3rem 3rem 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.warrior-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--lupus-purple);
    padding-bottom: 1rem;
}

.warrior-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lupus-purple);
    margin: 0;
}

.diagnosis-year {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-grey);
    background-color: var(--light-grey);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Warrior Story */
.warrior-story {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.warrior-story p {
    margin-bottom: 1.25rem;
}

.warrior-story strong {
    color: var(--lupus-purple);
    font-weight: 600;
}

.warrior-quote {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.05) 0%, rgba(106, 13, 173, 0.08) 100%);
    border-left: 4px solid var(--lupus-purple);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.warrior-quote .fa-quote-left {
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 2rem;
    color: var(--lupus-purple);
    opacity: 0.3;
}

.warrior-quote p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--lupus-purple);
    font-weight: 600;
    margin: 0;
    padding-left: 1.5rem;
}

.closing-statement {
    font-weight: 600;
    color: var(--lupus-purple);
    font-size: 1.1rem;
}

/* Warrior Tags */
.warrior-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-grey);
}

.warrior-tags .tag {
    background-color: var(--light-grey);
    color: var(--lupus-purple);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.warrior-tags .tag:hover {
    background-color: var(--lupus-purple);
    color: var(--white);
    transform: translateY(-2px);
}

/* Call to Action Section */
.warriors-cta {
    background: linear-gradient(135deg, #4B0082 0%, #6A0DAD 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.warriors-cta .cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.warriors-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.warriors-cta p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Share Your Story Section */
.share-story {
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-grey) 100%);
    text-align: center;
}

.share-content {
    max-width: 700px;
    margin: 0 auto;
}

.share-icon {
    font-size: 4rem;
    color: var(--lupus-purple);
    margin-bottom: 1.5rem;
}

.share-story h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--lupus-purple);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.share-story p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--lupus-purple);
    border: 2px solid var(--lupus-purple);
    padding: 1rem 3rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--lupus-purple);
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 968px) {
    .warrior-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .warrior-image {
        min-height: 400px;
    }

    .warrior-content {
        padding: 2rem;
    }

    .warrior-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .warrior-quote p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .warriors-hero {
        min-height: 50vh;
    }

    .warriors-hero .hero-content {
        padding: 1.5rem;
    }

    .warrior-image {
        min-height: 350px;
    }

    .warrior-content {
        padding: 1.5rem;
    }

    .warrior-name {
        font-size: 1.75rem;
    }

    .warrior-story {
        font-size: 1rem;
    }

    .share-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .warriors-hero .hero-content {
        margin-top: 60px;
    }

    .warrior-image {
        min-height: 300px;
    }

    .warrior-content {
        padding: 1.25rem;
    }

    .warrior-header {
        gap: 0.5rem;
    }

    .warrior-name {
        font-size: 1.5rem;
    }

    .diagnosis-year {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .warrior-quote {
        padding: 1rem 1.25rem;
        margin: 1.5rem 0;
    }

    .warrior-quote p {
        font-size: 0.95rem;
        padding-left: 1rem;
    }

    .warrior-tags {
        gap: 0.5rem;
    }

    .warrior-tags .tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .warriors-cta {
        padding: 3rem 0;
    }

    .warriors-cta p {
        font-size: 1.05rem;
    }

    .btn-outline {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}
