/* About Page Specific Styles */

/* Creator Section Styles */
.creator-section {
    margin-top: 2rem;
    padding: 2rem 0;
}

.creator-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

.creator-profile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-content: center;
}

.creator {
    background-color: var(--card-background);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(130, 46, 245, 0.2);
    display: flex;
    flex-direction: row;
    height: 100%;
}

.creator:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(130, 46, 245, 0.4);
}

.creator img {
    width: 260px;
    height: auto;
    object-fit: cover;
    object-position: top;
    border-right: 1px solid rgba(130, 46, 245, 0.2);
    flex-shrink: 0;
}

.creator-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.creator h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.creator-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(130, 46, 245, 0.2);
}

.creator-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.creator-description p {
    margin-bottom: 1rem;
}

.creator-description p:last-child {
    margin-bottom: 0;
}

.creator-skills {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background-color: rgba(130, 46, 245, 0.1);
    color: var(--primary-color);
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    border: 1px solid rgba(130, 46, 245, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .creator {
        flex-direction: column;
    }
    
    .creator img {
        width: 100%;
        height: 300px;
        border-right: none;
        border-bottom: 1px solid rgba(130, 46, 245, 0.2);
    }
}

@media (max-width: 480px) {
    .creator-profile {
        grid-template-columns: 1fr;
    }
    
    .creator img {
        height: 250px;
    }
} 