/*************************************************************
 * Easy AI Resume Builder - Enhanced Styles
 * Designed for maximum usability by non-technical users
 *************************************************************/

/* ============================================================
   CSS Variables for consistent theming
   ============================================================ */
:root {
    --airb-primary: #0a3065;
    --airb-primary-dark: #08244c;
    --airb-secondary: #667eea;
    --airb-success: #2e7d32;
    --airb-warning: #f57c00;
    --airb-danger: #c62828;
    --airb-text: #333;
    --airb-text-light: #666;
    --airb-border: #ddd;
    --airb-bg-light: #f8f9fa;
    --airb-radius: 8px;
    --airb-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ============================================================
   Main Container
   ============================================================ */
.airb-resume-builder {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--airb-text);
}

/* ============================================================
   Welcome Header & Progress
   ============================================================ */
.airb-welcome-header {
    margin-bottom: 20px;
}

.airb-progress-container {
    background: #fff;
    border-radius: var(--airb-radius);
    padding: 15px 20px;
    box-shadow: var(--airb-shadow);
}

.airb-progress-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--airb-text-light);
}

.airb-progress-bar {
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.airb-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--airb-secondary), var(--airb-primary));
    border-radius: 5px;
    transition: width 0.5s ease;
}

/* ============================================================
   Wizard Container Layout
   ============================================================ */
.airb-wizard-container {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================================
   Sidebar Navigation
   ============================================================ */
.airb-wizard-sidebar {
    width: 280px;
    background: linear-gradient(180deg, var(--airb-primary) 0%, var(--airb-primary-dark) 100%);
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    flex-shrink: 0;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.airb-sidebar-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 20px;
}

.airb-sidebar-header h3 {
    margin: 0 0 5px 0;
    font-size: 20px;
}

.airb-sidebar-subtitle {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

.airb-wizard-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.airb-wizard-sidebar li {
    margin-bottom: 8px;
}

.airb-wizard-sidebar li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    transition: all 0.2s;
    gap: 12px;
}

.airb-wizard-sidebar li a:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.airb-wizard-sidebar li.current a {
    background: rgba(255,255,255,0.25);
    color: #fff;
    font-weight: 600;
}

.airb-wizard-sidebar li.completed a {
    background: rgba(76, 175, 80, 0.3);
    color: #fff;
}

.airb-wizard-sidebar .step-number {
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.airb-wizard-sidebar .step-info {
    flex: 1;
}

.airb-wizard-sidebar .step-label {
    display: block;
    font-weight: 500;
    font-size: 15px;
}

.airb-wizard-sidebar .step-desc {
    display: block;
    font-size: 12px;
    opacity: 0.7;
}

.airb-wizard-sidebar .step-check {
    color: #81c784;
    font-weight: bold;
}

.airb-sidebar-help {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 13px;
    opacity: 0.9;
}

.airb-sidebar-help p {
    margin: 0 0 8px 0;
}

/* ============================================================
   Step Content Area
   ============================================================ */
.airb-wizard-step-content {
    flex: 1;
    min-width: 0;
}

.airb-step-container {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--airb-shadow);
}

.airb-step-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px 0;
    font-size: 24px;
    color: var(--airb-primary);
}

.airb-step-icon {
    font-size: 28px;
}

.airb-step-intro {
    background: var(--airb-bg-light);
    padding: 15px 20px;
    border-radius: var(--airb-radius);
    margin-bottom: 25px;
    border-left: 4px solid var(--airb-primary);
}

.airb-step-intro p {
    margin: 0;
}

/* ============================================================
   Tips Box
   ============================================================ */
.airb-tips-box {
    background: #fffbeb;
    border: 1px solid #ffc107;
    border-radius: var(--airb-radius);
    margin-bottom: 20px;
    overflow: hidden;
}

.airb-tips-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(255, 193, 7, 0.2);
    cursor: pointer;
}

.airb-tips-icon {
    font-size: 20px;
}

.airb-tips-toggle {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #856404;
}

.airb-tips-content {
    padding: 15px;
}

.airb-tips-content ul {
    margin: 0;
    padding-left: 20px;
}

.airb-tips-content li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #5d4e37;
}

/* ============================================================
   Forms
   ============================================================ */
.airb-form {
    max-width: 700px;
}

.airb-form-group {
    margin-bottom: 20px;
}

.airb-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--airb-text);
}

.airb-label-hint,
.airb-optional {
    font-weight: normal;
    color: var(--airb-text-light);
    font-size: 13px;
}

.airb-required::after {
    content: " *";
    color: var(--airb-danger);
}

.airb-input,
.airb-select,
.airb-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--airb-border);
    border-radius: var(--airb-radius);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.airb-input:focus,
.airb-select:focus,
.airb-textarea:focus {
    outline: none;
    border-color: var(--airb-primary);
    box-shadow: 0 0 0 3px rgba(10, 48, 101, 0.1);
}

.airb-field-help {
    font-size: 13px;
    color: var(--airb-text-light);
    margin: 8px 0 0 0;
}

.airb-textarea {
    resize: vertical;
    min-height: 120px;
}

.airb-textarea-small {
    min-height: 60px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-ada {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--airb-radius);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-ada:focus {
    outline: 3px solid #ffc107;
    outline-offset: 2px;
}

.btn-primary {
    background: var(--airb-primary) !important;
    color: #fff !important;
}

.btn-primary:hover {
    background: var(--airb-primary-dark) !important;
}

.btn-secondary {
    background: #e0e0e0 !important;
    color: var(--airb-text) !important;
}

.btn-secondary:hover {
    background: #bdbdbd !important;
}

.btn-danger {
    background: var(--airb-danger) !important;
    color: #fff !important;
}

.btn-danger:hover {
    background: #b71c1c !important;
}

.btn-ai {
    background: #7b1fa2 !important;
    color: #fff !important;
}

.btn-ai:hover {
    background: #6a1b9a !important;
}

.btn-large {
    padding: 15px 30px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 14px;
    font-size: 14px;
}

.airb-button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

/* ============================================================
   Navigation Buttons
   ============================================================ */
.airb-nav-buttons {
    margin-bottom: 25px;
}

/* ============================================================
   Messages
   ============================================================ */
.airb-message-success {
    background: #e8f5e9;
    border: 1px solid #81c784;
    color: var(--airb-success);
    padding: 15px 20px;
    border-radius: var(--airb-radius);
    margin-bottom: 20px;
    font-weight: 500;
}

.airb-message-error {
    background: #ffebee;
    border: 1px solid #ef9a9a;
    color: var(--airb-danger);
    padding: 15px 20px;
    border-radius: var(--airb-radius);
    margin-bottom: 20px;
    font-weight: 500;
}

/* ============================================================
   Preview Section
   ============================================================ */
.airb-preview-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--airb-border);
}

.airb-preview-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px 0;
    font-size: 20px;
    color: var(--airb-primary);
}

.airb-preview-desc {
    color: var(--airb-text-light);
    margin-bottom: 20px;
}

.airb-resume-preview {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: var(--airb-radius);
}

/* ============================================================
   Job Cards
   ============================================================ */
.airb-job-card {
    background: #fff;
    border: 1px solid var(--airb-border);
    border-radius: var(--airb-radius);
    padding: 20px;
    margin-bottom: 15px;
    transition: box-shadow 0.2s;
}

.airb-job-card:hover {
    box-shadow: var(--airb-shadow);
}

.airb-job-card-header {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.airb-job-number {
    background: var(--airb-primary);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.airb-job-card-title {
    font-weight: 600;
    font-size: 18px;
    color: var(--airb-primary);
}

.airb-job-card-company {
    color: var(--airb-text-light);
    font-size: 14px;
    margin-top: 4px;
}

.airb-job-card-dates {
    color: var(--airb-text-light);
    font-size: 13px;
    font-style: italic;
}

.airb-job-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--airb-border);
}

.airb-inline-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ============================================================
   Empty States
   ============================================================ */
.airb-empty-state {
    text-align: center;
    padding: 40px;
    background: var(--airb-bg-light);
    border-radius: var(--airb-radius);
    margin: 20px 0;
}

.airb-empty-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.airb-empty-state h3 {
    margin: 0 0 10px 0;
    color: var(--airb-text-light);
}

.airb-empty-state-small {
    background: var(--airb-bg-light);
    padding: 20px;
    border-radius: var(--airb-radius);
    text-align: center;
    color: var(--airb-text-light);
}

/* ============================================================
   List Cards (Education, etc.)
   ============================================================ */
.airb-list-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--airb-bg-light);
    border-radius: var(--airb-radius);
    margin-bottom: 10px;
}

.airb-list-card-title {
    font-weight: 600;
    color: var(--airb-primary);
}

.airb-list-card-subtitle {
    font-size: 14px;
    color: var(--airb-text-light);
}

.airb-list-card-actions {
    display: flex;
    gap: 10px;
}

/* ============================================================
   Form Cards
   ============================================================ */
.airb-form-card {
    background: var(--airb-bg-light);
    padding: 25px;
    border-radius: var(--airb-radius);
    margin-top: 20px;
}

.airb-form-card h4 {
    margin: 0 0 20px 0;
    color: var(--airb-primary);
}

/* ============================================================
   Danger Zone
   ============================================================ */
.airb-danger-zone {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--airb-border);
}

.airb-danger-toggle {
    cursor: pointer;
    color: var(--airb-text-light);
    font-size: 14px;
}

.airb-danger-content {
    margin-top: 15px;
    padding: 15px;
    background: #ffebee;
    border-radius: var(--airb-radius);
}

/* ============================================================
   Dividers
   ============================================================ */
.airb-divider {
    border: none;
    border-top: 1px solid var(--airb-border);
    margin: 30px 0;
}

/* ============================================================
   Section Titles
   ============================================================ */
.airb-section-title {
    font-size: 18px;
    color: var(--airb-primary);
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--airb-border);
}

.airb-subsection-title {
    font-size: 16px;
    margin: 0 0 10px 0;
    color: var(--airb-primary);
}

/* ============================================================
   Continue Section
   ============================================================ */
.airb-continue-section {
    margin-top: 30px;
    text-align: center;
    padding: 25px;
    background: var(--airb-bg-light);
    border-radius: var(--airb-radius);
}

.airb-continue-hint {
    margin-top: 10px;
    color: var(--airb-text-light);
    font-size: 14px;
}

/* ============================================================
   Add Section
   ============================================================ */
.airb-add-section {
    text-align: center;
    margin: 25px 0;
}

.airb-add-hint {
    color: var(--airb-text-light);
    font-size: 14px;
    margin-top: 8px;
}

/* ============================================================
   Login Prompt
   ============================================================ */
.airb-login-prompt {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.airb-login-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--airb-shadow);
    max-width: 500px;
    text-align: center;
}

.airb-login-box h2 {
    margin: 0 0 15px 0;
    color: var(--airb-primary);
}

.airb-login-benefits {
    background: var(--airb-bg-light);
    padding: 20px;
    border-radius: var(--airb-radius);
    margin: 20px 0;
    text-align: left;
}

.airb-login-benefits h4 {
    margin: 0 0 10px 0;
}

.airb-login-benefits ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.airb-login-benefits li {
    margin-bottom: 8px;
    color: var(--airb-success);
}

.airb-login-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* ============================================================
   Mobile Responsiveness
   ============================================================ */
@media (max-width: 900px) {
    .airb-wizard-container {
        flex-direction: column;
    }
    
    .airb-wizard-sidebar {
        width: 100%;
        position: static;
    }
    
    .airb-wizard-sidebar ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .airb-wizard-sidebar li {
        margin-bottom: 0;
    }
    
    .airb-wizard-sidebar li a {
        padding: 10px 15px;
    }
    
    .airb-wizard-sidebar .step-desc {
        display: none;
    }
    
    .airb-sidebar-help {
        display: none;
    }
}

@media (max-width: 600px) {
    .airb-step-container {
        padding: 20px;
    }
    
    .airb-step-title {
        font-size: 20px;
    }
    
    .airb-button-group {
        flex-direction: column;
    }
    
    .btn-ada {
        width: 100%;
    }
    
    .airb-job-card-header {
        flex-direction: column;
    }
    
    .airb-list-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ============================================================
   Print Styles
   ============================================================ */
@media print {
    .airb-wizard-sidebar,
    .airb-tips-box,
    .airb-nav-buttons,
    .airb-button-group,
    .airb-danger-zone,
    .btn-ada {
        display: none !important;
    }
    
    .airb-wizard-container {
        display: block;
    }
    
    .airb-step-container {
        box-shadow: none;
        padding: 0;
    }
}
