/* History page specific styles extending the main styles.css */

.history-container {
    max-width: 800px;
}

.history-content {
    background: #1c1c1e;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-height: 600px;
    line-height: 1.7;
}

/* Article Header */
.article-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #2c2c2e;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #8e8e93;
    font-weight: 400;
    font-style: italic;
}

/* Article Body */
.article-body {
    color: #fff;
}

.history-section {
    margin-bottom: 35px;
}

.history-section:last-child {
    margin-bottom: 0;
}

.history-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #007aff;
    margin-bottom: 20px;
    margin-top: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2c2c2e;
}

.history-section h2:first-child {
    margin-top: 0;
}

.history-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #30d158;
    margin-bottom: 15px;
    margin-top: 25px;
}

.history-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
    color: #f2f2f7;
}

.history-section p:last-child {
    margin-bottom: 0;
}

/* Typography enhancements */
.history-content strong {
    color: #007aff;
    font-weight: 600;
}

.history-content em {
    color: #30d158;
    font-style: italic;
}

/* Responsive design */
@media (max-width: 768px) {
    .history-container {
        max-width: 100%;
    }
    
    .history-content {
        padding: 30px 25px;
        margin: 0 10px;
        line-height: 1.6;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .history-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        margin-top: 25px;
    }
    
    .history-section h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
        margin-top: 20px;
    }
    
    .history-section p {
        font-size: 0.95rem;
        margin-bottom: 12px;
        text-align: left;
    }
    
    .article-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .history-section {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .history-content {
        padding: 20px 15px;
        min-height: 540px;
    }
    
    .article-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .article-subtitle {
        font-size: 1rem;
    }
    
    .history-section h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
        margin-top: 20px;
    }
    
    .history-section h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        margin-top: 15px;
    }
    
    .history-section p {
        font-size: 0.9rem;
        margin-bottom: 10px;
        line-height: 1.6;
    }
    
    .article-header {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .history-section {
        margin-bottom: 20px;
    }
}

/* Reading experience enhancements */
.history-content::selection {
    background: rgba(0, 122, 255, 0.3);
}

.history-content p::first-letter {
    font-size: 1.1em;
    font-weight: 500;
}

/* Smooth scrolling for in-page navigation */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    .history-content {
        background: white;
        color: black;
        box-shadow: none;
        border-radius: 0;
    }
    
    .article-title,
    .history-section h2 {
        color: black;
    }
    
    .history-section h3 {
        color: #333;
    }
    
    .article-subtitle {
        color: #666;
    }
}
