/*
Theme Name: Devnoman WP Theme
Theme URI: https://www.nomanakhter.com
Author: Noman Akhter
Author URI: https://www.nomanakhter.com
Description: A minimal, lightweight base WordPress theme built by Al Nomani LLC. Clean starting point with no bloat — ideal as a foundation for custom builds.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: devnoman-wp-theme
*/

/* Basic reset */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

a {
    color: #0b5fff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

.site-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    border-bottom: 1px solid #e5e5e5;
    padding: 24px 0;
}

.site-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: #1a1a1a;
}

.site-description {
    margin: 4px 0 0;
    color: #666;
    font-size: 0.95rem;
}

.main-nav ul {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #333;
    font-weight: 500;
}

/* Content */
.site-content {
    padding: 40px 0;
    min-height: 50vh;
}

article.post {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #eee;
}

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

.entry-title {
    font-size: 1.5rem;
    margin: 0 0 8px;
}

.entry-meta {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.entry-content {
    font-size: 1rem;
}

/* Footer */
.site-footer {
    border-top: 1px solid #e5e5e5;
    padding: 24px 0;
    text-align: center;
    color: #888;
    font-size: 0.85rem;
}

.site-footer a {
    color: #666;
}

/* Pagination */
.pagination {
    margin-top: 24px;
    display: flex;
    gap: 16px;
}
