/*
Theme Name: Blank Secure Theme
Theme URI: https://example.com/blank-secure-theme
Author: Rahat
Author URI: https://example.com
Description: A professional, blank, no-sidebar starter WordPress theme built with a security-hardened structure. Use this as a clean base for custom builds — no bloat, no sidebar, no page-builder assumptions.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
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: blank-secure-theme
Tags: blog, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* -----------------------------------------
   Minimal base styles. No sidebar layout.
   Add your own design system on top of this.
------------------------------------------ */

* {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

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

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

a {
	color: #1a56db;
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: underline;
}

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

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

.site-branding .site-title {
	margin: 0;
	font-size: 1.5rem;
}

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

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

.main-navigation a {
	color: #1a1a1a;
	font-weight: 500;
}

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

.entry-title {
	margin-top: 0;
}

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

.site-footer {
	padding: 24px 0;
	border-top: 1px solid #e5e5e5;
	color: #666;
	font-size: 0.9rem;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

.pagination {
	margin: 30px 0;
	display: flex;
	gap: 12px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	max-width: 500px;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
}
