/* Lazy Tester's Space - Main Stylesheet */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Typography */
h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #3498db;
    padding-bottom: 0.5rem;
}

h2 {
    color: #34495e;
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
}

h3 {
    color: #7f8c8d;
    font-size: 1.4rem;
    margin: 1.5rem 0 0.5rem 0;
}

p {
    margin-bottom: 1rem;
    text-align: justify;
}

/* Links */
a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Code and Technical Content */
code {
    background-color: #ecf0f1;
    padding: 2px 4px;
    border-radius: 3px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9em;
}

pre {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    margin: 1rem 0;
}

pre code {
    background: none;
    padding: 0;
}

/* Lists */
ul, ol {
    margin: 1rem 0 1rem 2rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Blockquotes */
blockquote {
    border-left: 4px solid #3498db;
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0 5px 5px 0;
}

/* Header */
.site-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e1e8ed;
}

.site-title {
    color: #2c3e50;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.site-tagline {
    color: #7f8c8d;
    font-size: 1.2rem;
    font-style: italic;
}

/* Blog Post Styles */
.post-header {
    margin-bottom: 2rem;
    text-align: center;
}

.post-title {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.post-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-tags {
    margin-top: 2rem;
    text-align: center;
}

.tag {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 0.25rem 0.5rem;
    margin: 0.25rem;
    border-radius: 15px;
    font-size: 0.8rem;
    text-decoration: none;
}

.tag:hover {
    background-color: #2980b9;
    color: white;
    text-decoration: none;
}

/* Navigation */
.nav {
    text-align: center;
    margin: 2rem 0;
}

.nav a {
    margin: 0 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.site-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e1e8ed;
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    .post-title {
        font-size: 1.8rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
}

/* Special Elements for Testing Content */
.testing-tip {
    background-color: #d5f4e6;
    border-left: 4px solid #27ae60;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 5px 5px 0;
}

.ai-highlight {
    background-color: #ebf3fd;
    border-left: 4px solid #3498db;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 5px 5px 0;
}

.warning {
    background-color: #fdf2e9;
    border-left: 4px solid #e67e22;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 5px 5px 0;
}