/* Profile Creation Styles */

.profile-header {
    text-align: center;
    margin-bottom: 3rem;
}

.profile-title {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--pure-black);
    margin-bottom: 1rem;
}

.profile-subtitle {
    color: var(--medium-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.profile-progress {
    background: var(--light-gray);
    border-radius: 10px;
    height: 8px;
    margin: 2rem 0;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, var(--revolution-red), var(--dark-red));
    height: 100%;
    width: 0%;
    transition: width 0.5s ease;
}

.profile-steps {
    display: grid;
    gap: 2rem;
}

.step-card {
    background: var(--pure-white);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.step-card.active {
    border-color: var(--revolution-red);
    box-shadow: 0 8px 30px rgba(229, 9, 20, 0.1);
}

.step-card.completed {
    border-color: var(--success-green);
    background: rgba(5, 150, 105, 0.05);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--medium-gray);
}

.step-card.active .step-number {
    background: var(--revolution-red);
    color: var(--pure-white);
}

.step-card.completed .step-number {
    background: var(--success-green);
    color: var(--pure-white);
}

.step-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: var(--pure-black);
}

.step-content {
    display: none;
}

.step-card.active .step-content {
    display: block;
}

.character-based-questions {
    display: grid;
    gap: 2rem;
}

.question-card {
    background: rgba(229, 9, 20, 0.05);
    border-left: 4px solid var(--revolution-red);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.question-title {
    font-weight: 700;
    color: var(--pure-black);
    margin-bottom: 0.5rem;
}

.question-prompt {
    color: var(--dark-red);
    font-style: italic;
    margin-bottom: 1rem;
}

.step-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
}

/* Resume Upload */
.upload-area {
    border: 2px dashed var(--border-gray);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area:hover,
.upload-area.dragover {
    border-color: var(--revolution-red);
    background: rgba(229, 9, 20, 0.05);
}

.upload-icon {
    font-size: 3rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.upload-text {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

.file-input {
    display: none;
}

/* Resume Content Display */
.resume-content {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.resume-section {
    margin-bottom: 2rem;
    background: var(--pure-white);
    border-radius: 8px;
    padding: 1.5rem;
}

.resume-section-title {
    font-family: 'Anton', sans-serif;
    color: var(--pure-black);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    border-bottom: 2px solid var(--border-gray);
    padding-bottom: 0.5rem;
}

.resume-item {
    margin-bottom: 2rem;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.resume-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.resume-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.resume-item-details {
    flex: 1;
}

.job-title {
    font-weight: 700;
    color: var(--pure-black);
    font-size: 1.1rem;
}

.company-name {
    color: var(--revolution-red);
    font-weight: 600;
    margin: 0.25rem 0;
}

.job-dates {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.expand-btn {
    background: var(--revolution-red);
    color: var(--pure-white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    background: var(--dark-red);
}

.bullet-points {
    margin: 1rem 0;
    display: none;
}

.bullet-points.visible {
    display: block;
}

.bullet-point {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(229, 9, 20, 0.02);
    border-radius: 6px;
    border-left: 3px solid var(--border-gray);
    transition: all 0.3s ease;
}

.bullet-point.selected {
    border-left-color: var(--revolution-red);
    background: rgba(229, 9, 20, 0.05);
}

.bullet-text {
    color: var(--pure-black);
    margin-bottom: 0.5rem;
}

.elaborate-btn {
    background: var(--light-gray);
    color: var(--medium-gray);
    border: 1px solid var(--border-gray);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.elaborate-btn:hover {
    background: var(--revolution-red);
    color: var(--pure-white);
    border-color: var(--revolution-red);
}

.elaborate-btn.completed {
    background: var(--success-green);
    color: var(--pure-white);
    border-color: var(--success-green);
}

.star-elaboration {
    display: none;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--pure-white);
    border: 2px solid var(--revolution-red);
    border-radius: 8px;
}

.star-elaboration.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.star-section {
    margin-bottom: 1.5rem;
}

.star-label {
    font-weight: 700;
    color: var(--revolution-red);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.star-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.star-input {
    width: 100%;
    min-height: 120px;
    padding: 0.75rem;
    border: 2px solid var(--border-gray);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.star-input:focus {
    outline: none;
    border-color: var(--revolution-red);
    box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.1);
}

.star-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .step-actions {
        flex-direction: column;
    }
    
    .resume-item-header {
        flex-direction: column;
        align-items: flex-start;
    }
}