/* ============================================================
   SMART EDUCATION - Custom Brand Styling
   https://smarteducation.sbs/
   ============================================================ */

/* ============================================================
   COLOR SCHEME - Smart Education Professional Theme
   ============================================================ */

:root {
	/* Primary Colors */
	--se-primary: #0073aa;
	--se-primary-dark: #005a8a;
	--se-primary-light: #0099dd;
	
	/* Secondary Colors */
	--se-secondary: #1a1a2e;
	--se-secondary-light: #2d3561;
	
	/* Accent Colors */
	--se-accent-success: #28a745;
	--se-accent-warning: #ffc107;
	--se-accent-danger: #dc3545;
	--se-accent-info: #17a2b8;
	
	/* Neutral Colors */
	--se-neutral-light: #f8f9fa;
	--se-neutral-gray: #6c757d;
	--se-neutral-dark: #1a1a1a;
	
	/* Gradients */
	--se-gradient-primary: linear-gradient(135deg, #0073aa 0%, #0099dd 100%);
	--se-gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #2d3561 100%);
	--se-gradient-accent: linear-gradient(135deg, #0099dd 0%, #00c9ff 100%);
	
	/* Typography */
	--se-font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	--se-font-secondary: 'Georgia', serif;
	--se-font-mono: 'Courier New', monospace;
}

/* ============================================================
   HEADER & BRANDING
   ============================================================ */

.site-branding {
	background: linear-gradient(135deg, rgba(0, 115, 170, 0.95) 0%, rgba(0, 153, 221, 0.95) 100%);
	padding: 20px 0;
	border-bottom: 3px solid var(--se-primary);
	box-shadow: 0 4px 15px rgba(0, 115, 170, 0.1);
}

.site-title {
	font-family: var(--se-font-primary);
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	background: var(--se-gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin: 0;
	padding: 0;
	transition: all 0.3s ease;
}

.site-title:hover {
	text-shadow: 0 4px 20px rgba(0, 115, 170, 0.3);
	transform: scale(1.02);
}

.site-title a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

.site-title a:hover {
	color: var(--se-primary-light);
}

.site-description {
	font-family: var(--se-font-secondary);
	font-size: 1.1rem;
	font-style: italic;
	color: rgba(255, 255, 255, 0.9);
	margin-top: 8px;
	letter-spacing: 0.5px;
	font-weight: 300;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.main-navigation {
	background: var(--se-gradient-dark);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.main-navigation a {
	color: white;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
}

.main-navigation a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--se-accent-info);
	transition: width 0.3s ease;
}

.main-navigation a:hover::after {
	width: 100%;
}

.main-navigation a:hover {
	color: var(--se-accent-info);
	transform: translateY(-2px);
}

.menu-toggle {
	background: var(--se-primary);
	border: none;
	color: white;
	cursor: pointer;
	padding: 10px 15px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.menu-toggle:hover {
	background: var(--se-primary-dark);
	box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
}

/* ============================================================
   CONTENT AREAS
   ============================================================ */

.blog-corner-main-wrapper {
	background: var(--se-neutral-light);
	padding: 40px 0;
	min-height: calc(100vh - 400px);
}

.entry-header {
	background: white;
	padding: 30px;
	border-radius: 8px;
	margin-bottom: 30px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	border-left: 4px solid var(--se-primary);
}

.entry-title,
.page-title {
	color: var(--se-secondary);
	font-family: var(--se-font-primary);
	font-size: 2.2rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.2;
}

.entry-meta {
	color: var(--se-neutral-gray);
	font-size: 0.95rem;
	margin-top: 12px;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.entry-meta a {
	color: var(--se-primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.entry-meta a:hover {
	color: var(--se-primary-dark);
	text-decoration: underline;
}

/* ============================================================
   POST STYLING
   ============================================================ */

.post {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 30px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	border: 1px solid rgba(0, 115, 170, 0.1);
}

.post:hover {
	box-shadow: 0 8px 25px rgba(0, 115, 170, 0.15);
	transform: translateY(-4px);
	border-color: var(--se-primary);
}

.post-thumbnail {
	position: relative;
	overflow: hidden;
	height: 250px;
	background: linear-gradient(135deg, #e8f4f8 0%, #f0f8fc 100%);
}

.post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.post:hover .post-thumbnail img {
	transform: scale(1.08) rotate(-1deg);
}

.post-thumbnail::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 115, 170, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.post:hover .post-thumbnail::after {
	opacity: 1;
}

.post-inner {
	padding: 25px;
}

.entry-content {
	color: var(--se-neutral-gray);
	font-size: 1rem;
	line-height: 1.8;
	font-family: var(--se-font-primary);
}

.entry-content p {
	margin: 0 0 15px 0;
}

.entry-content a {
	color: var(--se-primary);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding-bottom: 2px;
}

.entry-content a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--se-primary);
	transition: width 0.3s ease;
}

.entry-content a:hover::after {
	width: 100%;
}

.entry-content a:hover {
	color: var(--se-primary-dark);
}

/* ============================================================
   BUTTONS & CTA
   ============================================================ */

button,
.button,
a.button,
input[type="button"],
input[type="submit"],
.wp-block-button__link {
	background: var(--se-gradient-primary);
	color: white;
	padding: 12px 28px;
	border: none;
	border-radius: 4px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 4px 15px rgba(0, 115, 170, 0.2);
	display: inline-block;
	text-decoration: none;
	font-size: 0.95rem;
}

button:hover,
.button:hover,
a.button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover {
	background: var(--se-gradient-accent);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 115, 170, 0.3);
}

button:active,
.button:active,
a.button:active {
	transform: translateY(-1px);
}

/* Secondary Button */
.button.secondary,
.button-secondary {
	background: var(--se-neutral-gray);
}

.button.secondary:hover {
	background: var(--se-secondary);
}

/* ============================================================
   SIDEBAR & WIDGETS
   ============================================================ */

.sidebar,
.primary-sidebar {
	background: white;
	padding: 0;
}

.widget {
	background: white;
	padding: 25px;
	margin-bottom: 25px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	border-left: 4px solid var(--se-primary);
	transition: all 0.3s ease;
}

.widget:hover {
	box-shadow: 0 6px 15px rgba(0, 115, 170, 0.1);
	transform: translateY(-2px);
}

.widget-title {
	color: var(--se-secondary);
	font-size: 1.3rem;
	font-weight: 700;
	margin: 0 0 20px 0;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--se-primary);
	font-family: var(--se-font-primary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.widget ul li {
	padding: 10px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.widget ul li:last-child {
	border-bottom: none;
}

.widget ul li:hover {
	padding-left: 8px;
	color: var(--se-primary);
}

.widget a {
	color: var(--se-neutral-gray);
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 500;
}

.widget a:hover {
	color: var(--se-primary);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
	background: var(--se-gradient-dark);
	color: rgba(255, 255, 255, 0.9);
	padding: 50px 0 20px;
	margin-top: 60px;
}

.footer-widget {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 30px;
}

.footer-widget-title,
.footer-widget h3 {
	color: white;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-bottom: 2px solid var(--se-accent-info);
	padding-bottom: 10px;
}

.footer-widget a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-widget a:hover {
	color: var(--se-accent-info);
	padding-left: 5px;
}

.blog-corner-bottom-footer {
	background: rgba(0, 0, 0, 0.3);
	padding: 25px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
}

.footer-links a {
	color: var(--se-accent-info);
	text-decoration: none;
	margin: 0 15px;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: white;
	text-decoration: underline;
}

/* ============================================================
   CATEGORIES & TAGS
   ============================================================ */

.cat-links,
.tags-links,
.categories,
.category-badge,
.post-category,
.tag {
	display: inline-block;
	background: rgba(0, 115, 170, 0.1);
	color: var(--se-primary);
	padding: 6px 14px;
	border-radius: 20px;
	margin: 5px 5px 5px 0;
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid var(--se-primary);
}

.cat-links:hover,
.tags-links:hover,
.category-badge:hover,
.post-category:hover,
.tag:hover {
	background: var(--se-primary);
	color: white;
	transform: scale(1.08);
	box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
}

/* ============================================================
   COMMENTS
   ============================================================ */

.comment-form {
	background: white;
	padding: 30px;
	border-radius: 8px;
	margin-top: 30px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 115, 170, 0.1);
}

.comment {
	background: white;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 6px;
	border-left: 3px solid var(--se-primary);
	transition: all 0.3s ease;
}

.comment:hover {
	box-shadow: 0 4px 12px rgba(0, 115, 170, 0.1);
	transform: translateX(4px);
}

.comment-author,
.comment-meta {
	color: var(--se-secondary);
	font-weight: 600;
	margin-bottom: 8px;
}

.comment-text {
	color: var(--se-neutral-gray);
	line-height: 1.8;
}

.comment-reply-link {
	background: var(--se-primary);
	color: white;
	padding: 8px 16px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
	margin-top: 10px;
	font-size: 0.9rem;
}

.comment-reply-link:hover {
	background: var(--se-primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
}

/* ============================================================
   FORMS
   ============================================================ */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="url"],
textarea,
select {
	background: white;
	border: 2px solid rgba(0, 115, 170, 0.2);
	padding: 12px 15px;
	border-radius: 4px;
	font-family: var(--se-font-primary);
	font-size: 1rem;
	color: var(--se-neutral-dark);
	transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
	border-color: var(--se-primary);
	box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
	outline: none;
	transform: translateY(-2px);
}

.form-group {
	margin-bottom: 20px;
}

label {
	display: block;
	color: var(--se-secondary);
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 0.95rem;
}

/* ============================================================
   PAGINATION
   ============================================================ */

.pagination,
.page-numbers {
	display: flex;
	gap: 8px;
	margin: 30px 0;
	justify-content: center;
	flex-wrap: wrap;
}

.pagination a,
.page-numbers,
.pagination span {
	background: white;
	color: var(--se-primary);
	padding: 10px 14px;
	border: 2px solid var(--se-primary);
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
}

.pagination a:hover,
.page-numbers:hover {
	background: var(--se-primary);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
}

.pagination .current,
.page-numbers.current {
	background: var(--se-primary);
	color: white;
	border-color: var(--se-primary);
}

/* ============================================================
   BLOCKQUOTES & HIGHLIGHTS
   ============================================================ */

blockquote {
	border-left: 4px solid var(--se-primary);
	padding: 20px;
	margin: 20px 0;
	background: rgba(0, 115, 170, 0.05);
	border-radius: 0 4px 4px 0;
	font-style: italic;
	color: var(--se-secondary);
}

blockquote p {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.8;
}

blockquote cite {
	display: block;
	margin-top: 15px;
	font-style: normal;
	color: var(--se-neutral-gray);
	font-size: 0.95rem;
}

.highlight,
code {
	background: rgba(0, 115, 170, 0.1);
	color: var(--se-secondary);
	padding: 2px 6px;
	border-radius: 3px;
	font-family: var(--se-font-mono);
	font-size: 0.9rem;
}

pre {
	background: var(--se-secondary);
	color: white;
	padding: 20px;
	border-radius: 6px;
	overflow-x: auto;
	margin: 20px 0;
}

pre code {
	background: transparent;
	color: white;
	padding: 0;
	border-radius: 0;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 768px) {
	:root {
		--logo-size-custom: 150px;
	}

	.site-title {
		font-size: 1.8rem;
	}

	.entry-title,
	.page-title {
		font-size: 1.6rem;
	}

	.site-description {
		font-size: 0.95rem;
	}

	.entry-header {
		padding: 20px;
	}

	.post-inner {
		padding: 20px;
	}

	.main-navigation a {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.site-title {
		font-size: 1.4rem;
		letter-spacing: 0;
	}

	.entry-title,
	.page-title {
		font-size: 1.2rem;
	}

	button,
	.button,
	a.button {
		width: 100%;
		text-align: center;
	}

	.footer-links a {
		display: block;
		margin: 8px 0;
	}
}

/* ============================================================
   UTILITIES
   ============================================================ */

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.p-1 { padding: 10px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }

.rounded {
	border-radius: 8px;
}

.shadow {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
	box-shadow: 0 8px 25px rgba(0, 115, 170, 0.15);
}

/* ============================================================
   PRINT STYLES
   ============================================================ */

@media print {
	.site-header,
	.site-footer,
	.navigation,
	.pagination {
		display: none;
	}

	body {
		background: white;
		color: black;
	}

	a {
		color: #0073aa;
	}
}
