/* ===================================
   STORY PAGE STYLES
   =================================== */

/* Story Hero */
.story-hero {
    background: linear-gradient(135deg, #FF00FF 0%, #D400D4 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: #FFFFFF;
}

.story-hero h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.story-hero .lead {
    font-size: 24px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #FFFFFF;
}

/* Profile Introduction Section */
.profile-intro {
    padding: 5rem 0;
    background: #FFFFFF;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.profile-image {
    position: relative;
}

.profile-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.3);
    border: 5px solid #FF00FF;
}

.profile-content h2 {
    font-size: 2.5rem;
    color: #FF00FF;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.profile-content .lead {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.profile-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

/* Story Content */
.story-content {
    padding: 4rem 0;
    background: #FFF5FA;
}

.story-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.story-section h2 {
    font-size: 2.5rem;
    color: #FF00FF;
    margin-bottom: 2rem;
    border-bottom: 3px solid #FF00FF;
    padding-bottom: 1rem;
}

.story-section h3 {
    font-size: 1.8rem;
    color: #333;
    margin: 2rem 0 1.5rem;
}

.story-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.story-section strong {
    color: #FF00FF;
}

/* Highlight Box - Prejudice List */
.highlight-box {
    background: #FFF5FA;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 5px solid #FF00FF;
}

.prejudice-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prejudice-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #FFE5F5;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.prejudice-list li:last-child {
    border-bottom: none;
}

.prejudice-list strong {
    color: #FF00FF;
    font-size: 1.2rem;
}

/* Final Message Box */
.final-message {
    background: linear-gradient(135deg, #FF00FF 0%, #D400D4 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.3);
}

.final-message .message-intro {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.final-message .message-main {
    font-size: 2rem;
    font-weight: 900;
    margin: 1.5rem 0;
    line-height: 1.3;
}

.final-message .message-outro {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.final-message .btn-primary {
    background: white;
    color: #FF00FF;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.final-message .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .story-hero h1 {
        font-size: 42px;
    }
    
    .story-hero .lead {
        font-size: 18px;
    }
    
    /* Profile Grid becomes single column on mobile */
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .profile-image img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .profile-content h2 {
        font-size: 2rem;
    }
    
    .profile-content .lead {
        font-size: 1.2rem;
    }
    
    .profile-content p {
        font-size: 1.1rem;
    }
    
    .story-section {
        padding: 2rem;
    }
    
    .story-section h2 {
        font-size: 2rem;
    }
    
    .story-section h3 {
        font-size: 1.5rem;
    }
    
    .story-section p {
        font-size: 1.1rem;
    }
    
    .final-message {
        padding: 2rem;
    }
    
    .final-message .message-main {
        font-size: 1.6rem;
    }
    
    .final-message .btn-primary {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .profile-image img {
        max-width: 250px;
    }
    
    .prejudice-list li {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
    
    .prejudice-list strong {
        font-size: 1.1rem;
        display: block;
        margin-bottom: 0.3rem;
    }
}
