/* ═══════════════════════════════════════════════════
   Manager Career Autobiography — Book Theme CSS
   ═══════════════════════════════════════════════════ */

/* === HEADER === */
.autobiography-header {
    background: linear-gradient(135deg, #2c1810 0%, #4a2c20 40%, #6b3a2a 100%);
    padding: 2rem 0;
    border-bottom: 3px solid #c8a96e;
}

/* === PARCHMENT PAGE === */
.autobiography-page {
    background: linear-gradient(145deg, #faf4e8 0%, #f5ecd7 30%, #f0e6cc 60%, #ede0c0 100%);
    border: 1px solid #d4c4a0;
    border-radius: 4px;
    padding: 2rem 2.5rem;
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.08),
        inset 0 0 40px rgba(139,115,74,0.06);
    position: relative;
}

.autobiography-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c8a96e, #e0c88a, #c8a96e);
}

.autobiography-page::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c8a96e, #e0c88a, #c8a96e);
}

/* === VIEW TABS === */
.autobiography-view-tabs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.autobiography-tab {
    background: linear-gradient(180deg, #3c2415 0%, #2c1810 100%);
    color: #c8a96e;
    border: 1px solid #5a3a2a;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.autobiography-tab:hover {
    background: #4a2c20;
    color: #e0c88a;
}

.autobiography-tab.active {
    background: linear-gradient(180deg, #6b3a2a 0%, #4a2c20 100%);
    color: #f5e6c8;
    border-color: #c8a96e;
    box-shadow: 0 0 8px rgba(200,169,110,0.3);
}

/* === EMPTY STATE === */
.autobiography-empty-cover {
    background: linear-gradient(145deg, #faf4e8, #ede0c0);
    border: 2px dashed #c8a96e;
    border-radius: 8px;
    padding: 3rem 2rem;
}

.autobiography-empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.autobiography-empty-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #3c2415;
    margin-bottom: 0.5rem;
}

/* === GENERATE BUTTON === */
.btn-autobiography-generate {
    background: linear-gradient(180deg, #c8a96e 0%, #a0854a 100%);
    color: #2c1810;
    border: 1px solid #8b7346;
    font-family: 'Georgia', serif;
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-autobiography-generate:hover {
    background: linear-gradient(180deg, #e0c88a 0%, #c8a96e 100%);
    color: #1a0f08;
    box-shadow: 0 4px 12px rgba(200,169,110,0.4);
}

/* === BOOK COVER === */
.autobiography-cover-inner {
    background: linear-gradient(160deg, #2c1810 0%, #4a2c20 40%, #3c2415 80%, #2c1810 100%);
    border-radius: 4px 12px 12px 4px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: 
        4px 4px 15px rgba(0,0,0,0.3),
        -2px 0 6px rgba(0,0,0,0.1);
}

.autobiography-cover-spine {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 100%;
    background: linear-gradient(90deg, #1a0f08 0%, #3c2415 40%, #2c1810 80%, rgba(44,24,16,0.4) 100%);
    border-right: 1px solid rgba(200,169,110,0.15);
}

.autobiography-cover-content {
    margin-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 1;
}

.autobiography-cover-badge-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.autobiography-cover-club {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.15);
}

.autobiography-cover-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #c8a96e;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    letter-spacing: 1px;
}

.autobiography-cover-author {
    font-family: 'Georgia', serif;
    color: #f5e6c8;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.autobiography-cover-subtitle {
    color: #8b7346;
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.autobiography-cover-footer {
    color: #8b7346;
    font-size: 0.85rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(200,169,110,0.2);
}

/* === DEDICATION === */
.autobiography-dedication {
    text-align: center;
    padding: 3rem 2rem;
}

.autobiography-dedication-text {
    font-family: 'Georgia', serif;
    font-style: italic;
    color: #4a3520;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* === FOREWORD === */
.autobiography-foreword {
    padding: 2rem 2.5rem;
}

.autobiography-foreword-text {
    font-family: 'Georgia', serif;
    color: #3c2415;
    font-size: 1rem;
    line-height: 1.8;
}

/* === SECTION HEADINGS === */
.autobiography-section-heading {
    font-family: 'Georgia', serif;
    color: #3c2415;
    border-bottom: 2px solid #c8a96e;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* === TABLE OF CONTENTS === */
.autobiography-toc-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.autobiography-toc-entry {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.5rem;
    border-bottom: 1px dotted #c8a96e;
    cursor: pointer;
    transition: background 0.15s;
    font-family: 'Georgia', serif;
}

.autobiography-toc-entry:hover {
    background: rgba(200,169,110,0.1);
}

.autobiography-toc-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    background: #3c2415;
    color: #c8a96e;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.autobiography-toc-title {
    flex: 1;
    color: #3c2415;
    font-size: 0.95rem;
}

.autobiography-toc-team {
    font-size: 0.8rem;
    font-weight: bold;
}

.autobiography-toc-season {
    font-size: 0.75rem;
    color: #8b7346;
    background: rgba(200,169,110,0.15);
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
}

/* === CHAPTER === */
.autobiography-chapter-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.autobiography-chapter-number {
    font-family: 'Georgia', serif;
    color: #8b7346;
    font-size: 0.9rem;
    font-style: italic;
    letter-spacing: 1px;
}

.autobiography-chapter-team-badge {
    font-size: 0.75rem;
    font-weight: 600;
}

.autobiography-chapter-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #3c2415;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    border-bottom: 2px solid #c8a96e;
    padding-bottom: 0.75rem;
}

.autobiography-chapter-body {
    font-family: 'Georgia', serif;
    color: #2c1810;
    line-height: 1.85;
    font-size: 1rem;
}

.autobiography-chapter-body p:first-of-type::first-letter {
    font-size: 3.2em;
    float: left;
    line-height: 0.8;
    margin-right: 0.08em;
    margin-top: 0.05em;
    color: #4a2c20;
    font-weight: bold;
    font-family: 'Georgia', serif;
}

.autobiography-chapter-body p {
    margin-bottom: 1rem;
    text-align: justify;
}

/* === MATCH CONTEXT CARD === */
.autobiography-match-context {
    background: rgba(60,36,21,0.06);
    border-left: 3px solid #c8a96e;
    padding: 0.75rem 1rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    color: #4a3520;
    border-radius: 0 4px 4px 0;
}

.autobiography-match-icon {
    font-size: 1.3rem;
}

/* === PAGE NAVIGATION === */
.autobiography-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(200,169,110,0.3);
}

.autobiography-nav-btn {
    font-family: 'Georgia', serif;
    font-size: 0.85rem;
}

.autobiography-page-indicator {
    font-family: 'Georgia', serif;
    color: #8b7346;
    font-style: italic;
    font-size: 0.9rem;
}

/* === MEMORABLE MOMENTS === */
.autobiography-moment-card {
    background: linear-gradient(145deg, #faf4e8, #f0e6cc);
    border: 1px solid #d4c4a0;
    border-radius: 6px;
    padding: 1.25rem;
    transition: all 0.2s;
    height: 100%;
}

.autobiography-moment-card:hover {
    box-shadow: 0 4px 12px rgba(139,115,74,0.15);
    transform: translateY(-2px);
}

.autobiography-moment-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

.autobiography-moment-card .autobiography-moment-icon {
    display: inline;
    font-size: 1.4rem;
}

.autobiography-moment-category {
    font-family: 'Georgia', serif;
    color: #4a2c20;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.autobiography-moment-desc {
    color: #3c2415;
    font-family: 'Georgia', serif;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.autobiography-moment-detail {
    color: #6b5540;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.autobiography-moment-meta {
    color: #8b7346;
    font-size: 0.78rem;
    margin-top: 0.5rem;
}

/* === MOBILE ADAPTATIONS === */
.autobiography-cover-mobile .autobiography-cover-inner {
    min-height: 300px;
    padding: 2rem 1.5rem;
}

.autobiography-cover-mobile .autobiography-cover-title {
    font-size: 1.5rem;
}

.autobiography-cover-mobile .autobiography-cover-author {
    font-size: 1.1rem;
}

.autobiography-moment-card-mobile {
    padding: 1rem;
}

.autobiography-moment-card-mobile .autobiography-moment-icon {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .autobiography-page {
        padding: 1.25rem;
    }
    
    .autobiography-cover-inner {
        min-height: 300px;
        padding: 2rem 1.5rem;
    }
    
    .autobiography-cover-title {
        font-size: 1.6rem;
    }
    
    .autobiography-cover-author {
        font-size: 1.1rem;
    }
    
    .autobiography-chapter-title {
        font-size: 1.3rem;
    }
    
    .autobiography-chapter-body p:first-of-type::first-letter {
        font-size: 2.5em;
    }
    
    .autobiography-tab {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
}
