/*
Theme Name: Canvas
Description: A minimal WordPress theme that displays only pages and posts with no header or footer - just a clean canvas template.
Version: 1.0
Author: Custom Theme
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-size: 16px;
}

/* Container for content */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Post/Page content styles */
.entry-content {
    margin-bottom: 30px;
}

/* Entry title and meta styles removed for minimal design */

.entry-content p {
    margin-bottom: 15px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin: 25px 0 15px 0;
    font-weight: 600;
    line-height: 1.3;
}

.entry-content h1 { font-size: 2rem; }
.entry-content h2 { font-size: 1.75rem; }
.entry-content h3 { font-size: 1.5rem; }
.entry-content h4 { font-size: 1.25rem; }
.entry-content h5 { font-size: 1.1rem; }
.entry-content h6 { font-size: 1rem; }

.entry-content ul,
.entry-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 5px;
}

.entry-content blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    border-left: 4px solid #007cba;
    background-color: #f8f9fa;
    font-style: italic;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.entry-content a {
    color: #007cba;
    text-decoration: none;
}

.entry-content a:hover {
    text-decoration: underline;
}

/* Post list styles */
.post-list {
    list-style: none;
}

.post-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.post-item:last-child {
    border-bottom: none;
}

.post-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.post-title a {
    color: #222;
    text-decoration: none;
}

.post-title a:hover {
    color: #007cba;
}

.post-excerpt {
    color: #666;
    margin-bottom: 10px;
}

.post-meta {
    font-size: 0.85rem;
    color: #888;
}

/* Navigation */
.navigation {
    margin: 40px 0;
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-links a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #007cba;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
}

.nav-links a:hover {
    background-color: #005a87;
}

.nav-links .current {
    background-color: #666;
    cursor: default;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    /* Entry title styles removed for minimal design */
    
    .post-title {
        font-size: 1.5rem;
    }
    
    .entry-content h1 { font-size: 1.75rem; }
    .entry-content h2 { font-size: 1.5rem; }
    .entry-content h3 { font-size: 1.25rem; }
}
