/*
Theme Name: DIGIZURE EDUCATION
Theme URI: https://digizure.com/
Author: DIGIZURE
Author URI: https://digizure.com/
Description: A lightweight, minimal WordPress theme optimized for Elementor page builder. Perfect for educational websites and online learning platforms.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: digizure-education
Tags: blog, education, elementor, flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, threaded-comments, translation-ready

DIGIZURE EDUCATION WordPress Theme, Copyright 2025 DIGIZURE
DIGIZURE EDUCATION is distributed under the terms of the GNU GPL
*/

/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
	margin-bottom: 1rem;
}

a {
	color: #0073aa;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #005177;
}

/* Layout */
.site-content {
	padding: 2rem 0;
}

.content-area {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Elementor Compatibility */
.elementor-page .site-content {
	padding: 0;
}

.elementor-page .content-area {
	max-width: 100%;
	padding: 0;
}

/* Header */
.site-header {
	background: #fff;
	border-bottom: 1px solid #e5e5e5;
	padding: 1rem 0;
}

.site-branding {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.site-title {
	font-size: 1.5rem;
	margin: 0;
}

.site-title a {
	color: #333;
	text-decoration: none;
}

.site-description {
	font-size: 0.875rem;
	color: #666;
	margin: 0.25rem 0 0;
}

/* Navigation */
.main-navigation {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

.main-navigation li {
	margin-right: 1.5rem;
}

.main-navigation a {
	color: #333;
	padding: 0.5rem 0;
	display: block;
}

.main-navigation a:hover {
	color: #0073aa;
}

/* Footer */
.site-footer {
	background: #f8f8f8;
	border-top: 1px solid #e5e5e5;
	padding: 2rem 0;
	margin-top: 3rem;
	text-align: center;
}

.site-info {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	font-size: 0.875rem;
	color: #666;
}

/* Posts & Pages */
.entry-header {
	margin-bottom: 2rem;
}

.entry-title {
	margin-bottom: 0.5rem;
}

.entry-meta {
	font-size: 0.875rem;
	color: #666;
	margin-bottom: 1rem;
}

.entry-content {
	margin-bottom: 2rem;
}

.entry-content img {
	max-width: 100%;
	height: auto;
}

/* Comments */
.comments-area {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #e5e5e5;
}

.comment-list {
	list-style: none;
}

.comment {
	margin-bottom: 1.5rem;
}

.comment-author {
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.comment-metadata {
	font-size: 0.875rem;
	color: #666;
	margin-bottom: 0.5rem;
}

/* Widgets */
.widget {
	margin-bottom: 2rem;
}

.widget-title {
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.widget ul {
	list-style: none;
}

.widget li {
	padding: 0.25rem 0;
}

/* Accessibility */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Responsive */
@media (max-width: 768px) {
	h1 { font-size: 2rem; }
	h2 { font-size: 1.75rem; }
	h3 { font-size: 1.5rem; }
	
	.main-navigation ul {
		flex-direction: column;
	}
	
	.main-navigation li {
		margin-right: 0;
		margin-bottom: 0.5rem;
	}
}

/* WordPress Core Alignment */
.alignleft {
	float: left;
	margin-right: 1.5rem;
	margin-bottom: 1rem;
}

.alignright {
	float: right;
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1rem;
}

/* Clearfix */
.clearfix::after {
	content: "";
	display: table;
	clear: both;
}
